:root {
    /* Color Palette - EVA Inspired */
    --bg-dark: #0f1113;
    --bg-card: #15181b;
    --bg-card-hover: #1c2024;
    --bg-header: rgba(15, 17, 19, 0.9);

    --primary-gold: #c18f42;
    --primary-gold-light: #e1b164;
    --gold-gradient: linear-gradient(91deg, #e1b164 0%, #c18f42 100%);
    
    --accent-glow: rgba(193, 143, 66, 0.2);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-gold: rgba(193, 143, 66, 0.3);

    --text-main: #ffffff;
    --text-muted: #9ba3af;
    --text-dim: #6b7280;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-pill: 50px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px),
        radial-gradient(circle at 0% 0%, rgba(193, 143, 66, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 100% 100%, rgba(193, 143, 66, 0.03) 0%, transparent 40%);
    background-size: 30px 30px, 100% 100%, 100% 100%;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.15;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold-gradient);
    color: #111;
    box-shadow: 0 4px 20px rgba(193, 143, 66, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(193, 143, 66, 0.4);
    filter: brightness(1.1);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-main);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-gold);
    color: var(--primary-gold-light);
}

.btn-secondary {
    background: rgba(193, 143, 66, 0.1);
    color: var(--primary-gold-light);
    border: 1px dashed var(--primary-gold);
}

.btn-secondary:hover {
    background: rgba(193, 143, 66, 0.18);
}

/* ─── Header ─── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 12px 0;
    background: var(--bg-header);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.header.scrolled {
    padding: 8px 0;
    background: rgba(15, 17, 19, 0.98);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    height: 36px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: nowrap;
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary-gold-light);
}

.header-actions {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header-actions .btn {
    padding: 10px 24px;
    font-size: 0.85rem;
}

/* ─── Hero Section ─── */
.hero {
    padding-top: 60px; /* header height */
}

.hero-banner {
    position: relative;
    width: 100%;
    margin: 0 auto;
    min-height: 500px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a2e2a 0%, #0f1f1c 50%, #0c1614 100%);
    display: flex;
    align-items: stretch;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    z-index: 1;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 25, 22, 0.95) 0%, rgba(15, 25, 22, 0.85) 30%, rgba(15, 25, 22, 0.4) 50%, transparent 65%);
    z-index: 2;
}

.hero-inner {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    min-height: 500px;
    padding-top: 60px;
    padding-bottom: 60px;
}

.hero-content {
    max-width: 480px;
}

.hero-title {
    font-size: 4.5rem;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 0.95;
    margin-bottom: 35px;
    font-weight: 800;
}

.hero-title span {
    color: var(--primary-gold-light);
}

.promo-box {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 40px;
    border: 1px dashed var(--primary-gold);
    border-radius: var(--radius-md);
    margin-bottom: 30px;
    background: rgba(0, 0, 0, 0.3);
}

.promo-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.promo-code {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-gold-light);
    letter-spacing: 3px;
}

.hero-cta {
    padding: 16px 48px;
    font-size: 1rem;
}

/* ─── Feature Card ─── */
.feature-card {
    background: linear-gradient(145deg, var(--bg-card) 0%, #0c0e10 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(193, 143, 66, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.feature-title {
    font-size: 1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-gold-light);
    position: relative;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 24px;
    position: relative;
}

.feature-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-value {
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
}

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

.status-box {
    background: rgba(255, 255, 255, 0.02);
    padding: 14px 8px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--border-color);
}

.status-label {
    font-size: 0.6rem;
    color: var(--text-dim);
    text-transform: uppercase;
    margin-bottom: 6px;
    display: block;
    letter-spacing: 1px;
}

.status-text {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-gold-light);
}

/* ─── Promo Transition ─── */
.promo-transition {
    padding: 60px 0;
    background: #0c0e10;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.promo-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.promo-text {
    max-width: 700px;
}

.promo-text h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.promo-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ─── Benefits Section ─── */
.benefits {
    padding: 80px 0;
}

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

.benefit-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-gold);
    box-shadow: 0 12px 35px rgba(193, 143, 66, 0.1);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(193, 143, 66, 0.15) 0%, transparent 100%);
    color: var(--primary-gold-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid var(--border-gold);
}

.benefit-card h3 {
    font-size: 1.15rem;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ─── Popular Games ─── */
.popular-games {
    padding: 70px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: rgba(0, 0, 0, 0.15);
}

.popular-games h2 {
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.5rem;
}

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

.game-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    cursor: pointer;
}

.game-item img {
    width: 100%;
    height: auto;
    display: block;
}

.game-item:hover {
    transform: scale(1.05);
    border-color: var(--border-gold);
    box-shadow: 0 8px 25px rgba(193, 143, 66, 0.2);
    z-index: 2;
}

/* ─── FAQ Section ─── */
.faq {
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.faq-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 35px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.faq-card:hover {
    border-color: var(--border-gold);
}

.faq-card h4 {
    font-size: 1.05rem;
    margin-bottom: 14px;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.faq-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
    flex-grow: 1;
}

/* ─── Footer ─── */
.footer {
    background: #080a0c;
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-color);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-info .logo {
    margin-bottom: 4px;
}

.footer-info .logo img {
    height: 32px;
}

.warning-box {
    background: rgba(255, 68, 68, 0.04);
    border: 1px solid rgba(255, 68, 68, 0.15);
    padding: 16px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 14px;
}

.warning-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: #e74c3c;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.85rem;
}

.warning-text {
    font-size: 0.8rem;
    color: #ff8888;
    line-height: 1.4;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h5 {
    color: var(--primary-gold-light);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-list a {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-list a:hover {
    color: var(--primary-gold-light);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dim);
    font-size: 0.8rem;
}

/* ─── Animations ─── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 0.7s ease-out forwards;
}

.hero-sidebar {
    animation: fadeInUp 0.7s 0.15s ease-out forwards;
    opacity: 0;
}

.benefit-card {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}
.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3) { animation-delay: 0.3s; }

.faq-card {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}
.faq-card:nth-child(1) { animation-delay: 0.1s; }
.faq-card:nth-child(2) { animation-delay: 0.2s; }
.faq-card:nth-child(3) { animation-delay: 0.3s; }

/* ─── Responsive: Tablet ─── */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }
}

@media (max-width: 992px) {
    .hero-banner {
        min-height: 400px;
    }

    .hero-inner {
        min-height: 400px;
        padding-top: 40px;
        padding-bottom: 40px;
    }

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

    .promo-grid {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .benefits-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .benefit-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .benefit-card,
    .faq-card {
        text-align: center;
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-nav {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ─── Responsive: Mobile ─── */
@media (max-width: 768px) {
    .hero-banner {
        min-height: 350px;
    }

    .hero-inner {
        min-height: 350px;
    }

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

    .promo-box {
        padding: 12px 28px;
    }

    .promo-code {
        font-size: 1.3rem;
    }

    .hero-bg-img {
        opacity: 0.4;
    }

    .games-grid, .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-nav {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

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

    .header-actions {
        display: none;
    }

    .footer-nav {
        grid-template-columns: 1fr;
    }
}
