:root {
    --neon-green: #00ff88;
    --neon-purple: #9d4edd;
    --neon-blue: #00cfff;
    --neon-pink: #ff007f;
    --neon-yellow: #ffd700;
    --bg-dark: #050508;
    --surface: #10101a;
    --text-primary: #ffffff;
    --text-sec: #b0b0c0;
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .logo {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
}

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

.text-center { text-align: center; }

.gradient-text {
    background: linear-gradient(to bottom, #fff, var(--neon-green));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

/* Navigation */
nav {
    height: 80px;
    display: flex;
    align-items: center;
    border-bottom: 1.5px solid var(--glass-border);
    position: sticky;
    top: 0;
    background: rgba(5, 5, 8, 0.85);
    backdrop-filter: blur(12px);
    z-index: 1000;
}

.nav-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--neon-green);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.nav-links a {
    color: var(--text-sec);
    text-decoration: none;
    margin-left: 32px;
    font-size: 0.9rem;
    font-weight: 700;
    transition: color 0.3s;
    text-transform: uppercase;
}

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

/* Hero Section */
.hero {
    padding: 100px 0;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-sec);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.btn-primary {
    background: var(--neon-green);
    color: black;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-secondary {
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.6);
}

.stats {
    display: flex;
    gap: 40px;
}

.stat-val {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--neon-yellow);
    font-family: 'Orbitron', sans-serif;
}

.stat-label {
    color: var(--text-sec);
    font-size: 0.8rem;
    text-transform: uppercase;
}

.image-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.image-card img {
    width: 100%;
    display: block;
}

.image-glow {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    box-shadow: inset 0 0 100px rgba(0, 207, 255, 0.1);
    pointer-events: none;
}

/* Features */
.features {
    padding: 100px 0;
    background: rgba(255,255,255,0.02);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--neon-purple);
}

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

.feature-card {
    background: var(--surface);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-purple);
}

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 24px;
}

.feature-card h3 {
    margin-bottom: 16px;
}

/* OG Section */
.og-section {
    padding: 120px 0;
}

.og-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.og-image img {
    width: 100%;
    filter: drop-shadow(0 0 30px rgba(0, 255, 136, 0.3));
}

.badge {
    background: var(--neon-pink);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 900;
    margin-bottom: 16px;
    display: inline-block;
}

.benefits {
    list-style: none;
    margin: 32px 0;
}

.benefits li {
    margin-bottom: 12px;
    color: var(--text-sec);
}

/* Season Section */
.season-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, transparent, rgba(157, 78, 221, 0.05));
}

.season-card {
    background: linear-gradient(135deg, var(--surface), #1a1a2e);
    padding: 60px;
    border-radius: 32px;
    border: 2px solid var(--neon-purple);
    margin-top: 40px;
    display: inline-block;
}

.pot-value {
    font-size: 5rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-green);
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.timer {
    margin-top: 32px;
    font-weight: 900;
    color: var(--neon-purple);
}

/* Footer */
footer {
    padding: 60px 0;
    border-top: 1px solid var(--glass-border);
    margin-top: 100px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    color: var(--text-sec);
    font-size: 0.9rem;
}

.socials a {
    color: var(--text-sec);
    margin-left: 24px;
    text-decoration: none;
}

.socials a:hover {
    color: var(--neon-blue);
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: var(--text-sec);
    text-decoration: none;
    font-size: 0.85rem;
}

.legal-links a:hover {
    color: var(--neon-green);
}

/* Legal Pages Styling */
.legal-page nav {
    background: var(--bg-dark);
}

.legal-content {
    padding: 120px 0;
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--neon-green);
}

.last-updated {
    color: var(--text-sec);
    font-size: 0.9rem;
    margin-bottom: 50px;
}

.legal-content h2 {
    font-size: 1.5rem;
    color: var(--neon-purple);
    margin: 40px 0 20px 0;
}

.legal-content p, .legal-content li {
    color: var(--text-sec);
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.legal-content ul {
    margin-left: 20px;
    margin-bottom: 30px;
}

@media (max-width: 968px) {
    .hero-grid, .og-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-text h1 { font-size: 3.5rem; }
    .hero-cta, .stats { justify-content: center; }
    .features-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .legal-links {
        justify-content: center;
    }
}
