/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #B8860B;
    --gold-light: rgba(238, 189, 43, 0.65);
    --gold-dark: rgba(238, 189, 43, 0.55);
    --black: #0A0A0A;
    --black-light: #151718;
    --white: #FFFFFF;
    --gray: #9CA3AF;
    --gray-light: #E5E7EB;
    --gray-dark: #666;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(184, 134, 11, 0.2);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
    transition: opacity 0.3s ease;
}

.logo-img:hover {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.gradient-overlay {
    position: absolute;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    opacity: 0.9;
    transform: scale(1.3);
    pointer-events: none;
}

.gradient-top-left {
    top: -260px;
    left: -220px;
    background: radial-gradient(circle, var(--gold-light) 0%, rgba(10, 10, 10, 0) 70%);
}

.gradient-bottom-right {
    bottom: -260px;
    right: -220px;
    background: radial-gradient(circle, rgba(10, 10, 10, 0) 0%, var(--gold-dark) 70%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
}

.hero-logo {
    height: 120px;
    width: auto;
    margin-bottom: 24px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.hero-title {
    font-size: 72px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 24px;
    font-weight: 600;
}

.hero-description {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 48px;
    line-height: 1.8;
}

.download-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.download-btn {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
    text-decoration: none;
}

.download-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.download-btn svg {
    display: block;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--black);
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 64px;
    color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    text-align: center;
    background: var(--black-light);
}

.cta h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

.cta p {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 48px;
}

/* Footer */
.footer {
    background: var(--black);
    border-top: 1px solid rgba(184, 134, 11, 0.2);
    padding: 64px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 16px;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 16px;
    display: block;
}

.footer-section p {
    color: var(--gray);
    font-size: 14px;
}

.white-text {
    color: var(--white);
}

.footer-section a {
    display: block;
    color: var(--gray);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--gray);
    font-size: 14px;
}

/* Legal Pages Styles */
.legal-page {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 64px;
}

.legal-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.legal-header .last-updated {
    color: var(--gray);
    font-size: 14px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 16px;
    padding: 48px;
}

.legal-content h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--gold);
    margin-top: 48px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(184, 134, 11, 0.3);
}

.legal-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-content p {
    font-size: 16px;
    color: var(--gray-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-content ul, .legal-content ol {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-content li {
    font-size: 16px;
    color: var(--gray-light);
    margin-bottom: 12px;
    line-height: 1.8;
}

.legal-content strong {
    color: var(--white);
    font-weight: 600;
}

.legal-content a {
    color: var(--gold);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.legal-content a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.back-link {
    display: inline-block;
    margin-bottom: 32px;
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.back-link:hover {
    opacity: 0.8;
}

/* Support Page */
.support-content {
    max-width: 900px;
    margin: 0 auto;
}

.support-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
}

.support-section h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 24px;
}

.support-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-top: 24px;
    margin-bottom: 12px;
}

.support-section p {
    font-size: 16px;
    color: var(--gray-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.contact-box {
    background: rgba(184, 134, 11, 0.1);
    border: 1px solid var(--gold);
    border-radius: 12px;
    padding: 24px;
    margin-top: 32px;
}

.contact-box h3 {
    color: var(--gold);
    margin-bottom: 16px;
}

.contact-box a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
}

.contact-box a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .hero-description {
        font-size: 18px;
    }

    .section-title {
        font-size: 36px;
    }

    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .legal-content {
        padding: 24px;
    }

    .legal-content h2 {
        font-size: 24px;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .nav-content {
        flex-direction: column;
        gap: 16px;
    }

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

    .hero-logo {
        height: 80px;
    }

    .logo-img {
        height: 48px;
    }

    .footer-logo {
        height: 40px;
    }
}

