:root {
    --bg-color: #1a1b1e;
    --panel-color: #2d2f34;
    --text-color: #e6e6e6;
    --text-muted: #a0a0a0;
    --gold: #f0b90b;
    --gold-dim: rgba(240, 185, 11, 0.1);
    --gold-glow: rgba(240, 185, 11, 0.4);
    --green: #27d980;
    --border-color: #4a4c52;
    --font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-family);
    margin: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Effect */
.background-glow {
    position: fixed;
    top: -20%;
    right: -20%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(240, 185, 11, 0.08), transparent 60%);
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- HEADER --- */
header {
    position: sticky;
    top: 0;
    padding: 20px 0;
    z-index: 100;
    background: rgba(26, 27, 30, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

nav.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-cta {
    background: var(--gold);
    color: #000 !important;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 700 !important;
}

.nav-cta:hover {
    filter: brightness(1.1);
}

/* --- HERO SECTION --- */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
}

.badge-new {
    background: rgba(39, 217, 128, 0.15);
    color: var(--green);
    border: 1px solid var(--green);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 25px;
    display: inline-block;
}

.headline {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 25px 0;
}

.gradient-text {
    color: var(--gold);
    text-shadow: 0 0 30px rgba(240, 185, 11, 0.3);
}

.subheadline {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 40px auto;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.cta-button {
    padding: 15px 35px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.cta-button.primary {
    background: var(--gold);
    color: #1a1b1e;
}

.cta-button.primary:hover {
    box-shadow: 0 0 25px var(--gold-glow);
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-color);
}

.cta-button.secondary:hover {
    border-color: var(--text-color);
    background: rgba(255, 255, 255, 0.05);
}

/* --- STATS BAR --- */
.stats-bar {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.02);
    padding: 30px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 20px;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- FEATURES --- */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 80px;
    font-weight: 800;
}

.text-gold {
    color: var(--gold);
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 120px;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
}

.feature-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.feature-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: var(--text-color);
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.feature-image {
    flex: 1;
    position: relative;
}

.glow-img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
}

.glow-img:hover {
    transform: scale(1.02);
    border-color: var(--gold);
}

/* --- SEASON SECTION --- */
.season-section {
    background: linear-gradient(180deg, var(--bg-color) 0%, rgba(240, 185, 11, 0.05) 50%, var(--bg-color) 100%);
    text-align: center;
}

.season-content {
    max-width: 800px;
    margin: 0 auto;
}

.badge-gold {
    background: var(--gold);
    color: #000;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-bottom: 20px;
    display: inline-block;
}

.prizes-grid {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
    margin: 50px 0;
}

.prize-card {
    background: var(--panel-color);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 12px;
    width: 140px;
}

.prize-card.main-prize {
    background: linear-gradient(135deg, var(--panel-color) 0%, rgba(240, 185, 11, 0.1) 100%);
    border-color: var(--gold);
    transform: scale(1.1);
    z-index: 2;
}

.prize-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.prize-card h4 {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.prize-card p {
    margin: 5px 0 0 0;
    font-weight: 700;
    color: var(--gold);
}

.season-image-wrapper img {
    max-width: 100%;
    border-radius: 10px;
    border: 2px solid var(--gold);
    box-shadow: 0 0 30px rgba(240, 185, 11, 0.2);
}

/* --- HOW TO GRID --- */
.howto-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step-card {
    background: var(--panel-color);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: -10px;
    right: 10px;
}

.step-card h4 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 0;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* --- CTA FOOTER --- */
.cta-box {
    background: var(--panel-color);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.link-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.link-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 15px 25px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.link-item:hover {
    border-color: var(--gold);
    background: rgba(240, 185, 11, 0.1);
}

.link-image-wrapper {
    margin-top: 50px;
    opacity: 0.6;
    transform: scale(0.9);
}

.link-image-wrapper img {
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* --- FOOTER --- */
footer {
    border-top: 1px solid var(--border-color);
    padding: 30px 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .headline {
        font-size: 2.5rem;
    }

    .feature-row {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        margin-bottom: 80px;
    }

    .feature-row.reverse {
        flex-direction: column;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .nav-links {
        display: none;
    }

    /* Simplification for mobile */
    .prizes-grid {
        gap: 10px;
    }

    .prize-card {
        width: 100px;
        padding: 10px;
    }
}