/* Navigation */
.nav-content {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 22px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 21px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.download-btn {
    background: var(--accent);
    color: white;
    padding: 8px 20px;
    border-radius: 980px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.download-btn:hover {
    background: var(--accent-hover);
    transform: scale(1.02);
}

/* Container */
.container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 22px;
}

/* Footer */
footer {
    padding: 60px 0 40px;
    background: var(--bg-primary);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 12px;
    color: var(--text-secondary);
    margin: 0;
}

.footer-legal a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--text-link);
}

.separator {
    margin: 0 10px;
    color: var(--text-secondary);
}

/* Dark mode adjustments for layout */
@media (prefers-color-scheme: dark) {
    nav {
        background: rgba(24, 24, 26, 0.85);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .logo {
        color: var(--text-primary);
    }

    .download-btn:hover {
        background: #4ea1ff;
    }

    footer {
        background: var(--bg-primary);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-bottom p,
    .footer-legal a,
    .separator {
        color: var(--text-secondary);
    }

    .footer-legal a:hover {
        color: var(--text-link);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
}
