* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #FFD700;
    --gold-dark: #FFA500;
    --bg-dark: #000000;
    --bg-secondary: #0a0a0a;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-tertiary: rgba(255, 255, 255, 0.4);
    --border: rgba(255, 255, 255, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.glow {
    position: fixed;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.genie-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 200;
    letter-spacing: 1px;
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

/* Language Menu */
.language-menu {
    position: relative;
    display: inline-block;
}

.language-menu > .nav-link {
    cursor: pointer;
}

/* Bridge between button and dropdown */
.language-menu::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    height: 0.5rem;
    background: transparent;
}

.language-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    border: 1px solid var(--border);
    border-radius: 4px;
    min-width: 160px;
    z-index: 1000;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.language-menu:hover .language-dropdown,
.language-dropdown:hover {
    display: block;
}

.language-dropdown a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    border-bottom: 1px solid var(--border);
}

.language-dropdown a:last-child {
    border-bottom: none;
}

.language-dropdown a:hover {
    color: var(--gold);
    background: rgba(255, 215, 0, 0.05);
    padding-left: 1.25rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    z-index: 1;
}

/* Hero */
.hero {
    text-align: center;
    padding: 4rem 0;
    position: relative;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.hero-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 1rem;
    border-radius: 24px;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.3));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-title {
    font-size: 3rem;
    font-weight: 100;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
}

.divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, var(--gold), var(--gold-dark));
    margin: 0 auto 1.5rem;
}

.hero-subtitle {
    font-size: 0.875rem;
    font-weight: 300;
    letter-spacing: 4px;
    color: var(--text-tertiary);
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.125rem;
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* App Badge */
.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--gold);
    color: #000;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.app-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.app-badge.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.apple-logo {
    width: 24px;
    height: 24px;
}

/* Stats */
.stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 4rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
}

.stat-card {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 100;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: var(--text-tertiary);
    margin-top: 0.5rem;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: var(--border);
}

/* Features */
.features {
    margin: 6rem 0;
}

.section-title {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: var(--text-tertiary);
    margin-bottom: 3rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    transition: transform 0.3s, border-color 0.3s;
}

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

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.feature-description {
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA */
.cta {
    text-align: center;
    padding: 6rem 2rem;
    margin: 6rem 0;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
}

.cta-title {
    font-size: 2rem;
    font-weight: 100;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.125rem;
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border);
    padding: 3rem 2rem;
    margin-top: 6rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 300;
    letter-spacing: 1px;
    transition: color 0.3s;
}

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

.footer-copyright {
    font-size: 0.8125rem;
    font-weight: 300;
    color: var(--text-tertiary);
}

/* Content Pages */
.content-header {
    text-align: center;
    padding: 4rem 0 3rem;
}

.content-title {
    font-size: 2.5rem;
    font-weight: 100;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.content-subtitle {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-secondary);
}

.content-section {
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
}

.content-section h2 {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.content-section h3 {
    font-size: 1.125rem;
    font-weight: 400;
    margin: 1.5rem 0 1rem;
}

.content-section p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.content-section ul, .content-section ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.content-section li {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

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

.content-section a:hover {
    opacity: 0.8;
}

.last-updated {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-tertiary);
    margin-top: 3rem;
}

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

    .nav-links {
        gap: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .stats {
        flex-direction: column;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

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

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}
