/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: #f3f4f6;
    color: #111827;
    min-height: 100vh;
}

/* Paragraph styles */
.para-style-1 {
    font-size: 1.1rem;
    color: #5a2a82;
    font-weight: 500;
}

.para-style-2 {
    font-style: italic;
    background-color: #ffe0b2;
    padding: 10px;
    border-left: 4px solid #ff9800;
    margin-top: 1rem;
}

.para-style-3 {
    background-color: #e3f2fd;
    padding: 10px;
    margin-top: 1rem;
    border-left: 4px solid #2196f3;
}

.discord-link {
    font-weight: bold;
    color: #7289da;
    text-decoration: none;
}

.discord-link:hover {
    text-decoration: underline;
    color: #5865f2;
}

/* Navigation */
nav {
    background-color: #059669;
    color: white;
    padding: 1rem;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 1rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 0.5rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #d1fae5;
}

/* Main content */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #111827;
}

/* Cards */
.card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

/* Platform cards */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.platform-card {
    padding: 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    color: #111827;
    transition: transform 0.2s;
}

.platform-card:hover {
    transform: translateY(-2px);
}

.platform-card.windows {
    background-color: #dbeafe;
}

.platform-card.linux {
    background-color: #fef3c7;
}

.platform-card.mac {
    background-color: #f3f4f6;
}

/* Guide sections */
.guide-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.code-block {
    background-color: #f3f4f6;
    padding: 1rem;
    border-radius: 0.5rem;
    overflow-x: auto;
}

code {
    font-family: monospace;
    white-space: pre;
}

/* Lists */
ul, ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.5rem;
}

/* Pro tips */
.pro-tips li {
    display: flex;
    align-items: start;
    gap: 0.5rem;
}

.checkmark {
    color: #059669;
}

/* Issues section */
.issues-list {
    display: grid;
    gap: 1rem;
}

.issue h3 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

/* 404 page */
.error-container {
    text-align: center;
    padding: 4rem 1rem;
}

.error-container h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.button {
    display: inline-block;
    background-color: #059669;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: background-color 0.2s;
}

.button:hover {
    background-color: #047857;
}

/* Mac page specific */
.mac-joke {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.differences-box {
    background-color: #fef3c7;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    h1 {
        font-size: 2rem;
    }

    .platform-grid {
        grid-template-columns: 1fr;
    }
}
footer {
    background-color: #1e1e2f;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}

.footer-text a {
    color: #ff4081;
    text-decoration: none;
}

.footer-text a:hover {
    text-decoration: underline;
}