/*
 * GOLISIMO CASINO - Design System
 * Dark stadium-night aesthetic with vibrant green and lime-yellow accents.
 * Fonts: Anton (display/headlines), Barlow (body/UI).
 * Mobile-first responsive design.
 */

/* ============================================
   DESIGN TOKENS
   Dark theme only - no light/dark switcher.
   ============================================ */
:root {
    /* Backgrounds */
    --bg-obsidian: #0c0a09;
    --bg-charcoal: #1c1917;
    --bg-charcoal-light: #292524;
    --bg-deep: #141210;

    /* Foreground */
    --fg-cream: #fafaf9;
    --fg-light-gray: #d6d3d1;
    --fg-medium-gray: #a8a29e;
    --fg-muted: #847c77;

    /* Brand Colors */
    --pitch-green: #22c55e;
    --pitch-green-bright: #4ade80;
    --electric-green: #00ff88;
    --lime-yellow: #bef264;
    --lime-yellow-bright: #d9f99d;
    --golden: #facc15;
    --golden-bright: #fde047;

    /* Borders */
    --border-gray: #44403c;
    --border-muted: #3a3835;

    /* Typography */
    --font-display: "Anton", "Impact", sans-serif;
    --font-body: "Barlow", system-ui, -apple-system, sans-serif;

    /* Spacing */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 64px;
    --space-3xl: 96px;

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;

    /* Transitions */
    --transition-fast: 200ms ease-out;
    --transition-base: 300ms ease-out;

    /* Layout */
    --max-width: 1200px;
    --header-height: 64px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--fg-cream);
    background-color: var(--bg-obsidian);
    overflow-x: hidden;
}

img, video, iframe, embed, object, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--pitch-green-bright);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--lime-yellow);
}

ul, ol {
    list-style: none;
}

p, li, td, th {
    overflow-wrap: break-word;
}

section {
    overflow: clip;
}

/* ============================================
   SKIP LINK
   ============================================ */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    padding: 12px 24px;
    background: var(--pitch-green);
    color: var(--bg-obsidian);
    font-weight: 700;
    z-index: 9999;
    border-radius: 0 0 var(--radius-md) 0;
}

.skip-link:focus {
    top: 0;
}

/* ============================================
   TYPOGRAPHY SYSTEM
   Anton for display, Barlow for body.
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--fg-cream);
}

h1 {
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

h2 {
    font-size: 24px;
    text-transform: uppercase;
}

h3 {
    font-size: 20px;
    text-transform: uppercase;
}

h4 {
    font-size: 18px;
    text-transform: uppercase;
}

p {
    line-height: 1.6;
    color: var(--fg-light-gray);
}

@media (min-width: 768px) {
    h1 { font-size: 36px; }
    h2 { font-size: 30px; }
    h3 { font-size: 22px; }
}

@media (min-width: 1024px) {
    h1 { font-size: 48px; }
    h2 { font-size: 36px; }
    h3 { font-size: 24px; }
    h4 { font-size: 20px; }
}

.text-accent {
    color: var(--lime-yellow);
}

.text-green {
    color: var(--pitch-green-bright);
}

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

.text-muted {
    color: var(--fg-muted);
}

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

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-lg);
    }
}

.section {
    padding: var(--space-xl) 0;
}

@media (min-width: 1024px) {
    .section {
        padding: var(--space-2xl) 0;
    }
}

.section-tight {
    padding: var(--space-lg) 0;
}

.full-bleed {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    min-height: 44px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--pitch-green);
    color: var(--bg-obsidian);
    border-color: var(--pitch-green);
}

.btn-primary:hover {
    background: var(--pitch-green-bright);
    color: var(--bg-obsidian);
    box-shadow: 0 0 24px rgba(34, 197, 94, 0.5);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--pitch-green-bright);
    border-color: var(--pitch-green);
}

.btn-outline:hover {
    background: var(--bg-charcoal-light);
    color: var(--lime-yellow);
    border-color: var(--lime-yellow);
}

.btn-large {
    padding: 16px 40px;
    min-height: 52px;
    font-size: 16px;
}

.btn-small {
    padding: 8px 20px;
    min-height: 36px;
    font-size: 13px;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(12, 10, 9, 0.98);
    border-bottom: 1px solid var(--border-gray);
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-sm);
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
}

.brand-name {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--fg-cream);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.brand-name .accent {
    color: var(--lime-yellow);
}

/* Mobile menu toggle */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle-line {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--fg-cream);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Primary nav - mobile drawer */
.primary-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-obsidian);
    z-index: 999;
    display: none;
    flex-direction: column;
    overflow-y: auto;
    padding: var(--space-lg);
    gap: var(--space-sm);
}

.primary-nav.is-open {
    display: flex;
}

.nav-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nav-list li {
    border-bottom: 1px solid var(--border-muted);
}

.nav-link {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 0;
    font-family: var(--font-display);
    font-size: 18px;
    text-transform: uppercase;
    color: var(--fg-cream);
    letter-spacing: 0.02em;
}

.nav-link:hover {
    color: var(--lime-yellow);
}

.header-cta {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.header-cta .btn {
    width: 100%;
}

/* Desktop nav */
@media (min-width: 1024px) {
    .menu-toggle {
        display: none;
    }

    .primary-nav {
        position: static;
        display: flex;
        flex-direction: row;
        align-items: center;
        background: transparent;
        padding: 0;
        gap: var(--space-lg);
        overflow: visible;
    }

    .nav-list {
        flex-direction: row;
        gap: var(--space-md);
    }

    .nav-list li {
        border-bottom: none;
    }

    .nav-link {
        min-height: auto;
        padding: 8px 0;
        font-size: 15px;
    }

    .header-cta {
        flex-direction: row;
        margin-top: 0;
        gap: 12px;
    }

    .header-cta .btn {
        width: auto;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(12, 10, 9, 0.92) 0%,
        rgba(12, 10, 9, 0.7) 50%,
        rgba(12, 10, 9, 0.4) 100%);
    z-index: 1;
}

.hero-beam {
    position: absolute;
    top: 0;
    left: -10%;
    width: 120%;
    height: 100%;
    background: linear-gradient(105deg,
        transparent 30%,
        rgba(34, 197, 94, 0.12) 45%,
        rgba(34, 197, 94, 0.06) 55%,
        transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-model {
    position: absolute;
    right: 0;
    bottom: 0;
    max-height: 90%;
    max-width: 45%;
    z-index: 2;
    display: none;
}

.hero-model img {
    max-height: 100%;
    object-fit: contain;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-sm);
    width: 100%;
}

@media (min-width: 768px) {
    .hero-content {
        padding: var(--space-3xl) var(--space-lg);
    }
}

.hero-title {
    font-size: 28px;
    line-height: 1.1;
    max-width: 600px;
    margin-bottom: var(--space-md);
}

.hero-title .accent {
    color: var(--lime-yellow);
}

.hero-subtitle {
    font-size: 16px;
    color: var(--fg-light-gray);
    max-width: 500px;
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    max-width: 320px;
}

.hero-microcopy {
    margin-top: var(--space-md);
    font-size: 14px;
    color: var(--fg-medium-gray);
}

@media (min-width: 768px) {
    .hero {
        min-height: 600px;
    }
    .hero-title {
        font-size: 42px;
    }
    .hero-subtitle {
        font-size: 18px;
    }
    .hero-cta-group {
        flex-direction: row;
        gap: var(--space-md);
        max-width: none;
    }
    .hero-model {
        display: block;
    }
}

@media (min-width: 1024px) {
    .hero {
        min-height: 680px;
    }
    .hero-title {
        font-size: 48px;
    }
}

/* ============================================
   GAME CARD GRID
   ============================================ */
.game-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-sm);
}

@media (min-width: 768px) {
    .game-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: var(--space-md);
    }
}

@media (min-width: 1024px) {
    .game-card-grid {
        grid-template-columns: repeat(var(--grid-columns, 3), minmax(0, 1fr));
        gap: var(--space-lg);
    }
}

.game-card {
    background: var(--bg-charcoal);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.game-card:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 40px rgba(34, 197, 94, 0.2);
    border-color: var(--pitch-green);
}

.game-card-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-md);
    background: var(--bg-deep);
}

.game-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.game-card:hover .game-card-image img {
    transform: scale(1.05);
}

.game-card-label {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 12px;
    text-transform: uppercase;
    color: var(--lime-yellow);
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.game-card-title {
    font-size: 20px;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.game-card-description {
    font-size: 15px;
    color: var(--fg-medium-gray);
    line-height: 1.6;
    margin-bottom: var(--space-sm);
}

.game-card-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--pitch-green-bright);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-top: auto;
}

.game-card-link:hover {
    color: var(--lime-yellow);
}

/* ============================================
   STAT BLOCK
   ============================================ */
.stat-block {
    background: var(--bg-charcoal);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .stat-block {
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
        padding: var(--space-xl);
    }
}

.stat-item {
    text-align: center;
    flex: 1;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    display: none;
}

@media (min-width: 768px) {
    .stat-item:not(:last-child)::after {
        content: '';
        display: block;
        position: absolute;
        right: calc(-1 * var(--space-lg) / 2);
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 60%;
        background: var(--border-gray);
    }
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--lime-yellow);
    text-shadow: 0 0 20px rgba(190, 242, 100, 0.3);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--fg-medium-gray);
}

@media (min-width: 1024px) {
    .stat-number {
        font-size: 48px;
    }
    .stat-label {
        font-size: 14px;
    }
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    position: relative;
    background: var(--bg-obsidian);
    padding: var(--space-xl) var(--space-sm);
    text-align: center;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    width: 120%;
    height: 100%;
    background: linear-gradient(105deg,
        transparent 30%,
        rgba(34, 197, 94, 0.15) 45%,
        rgba(34, 197, 94, 0.08) 55%,
        transparent 70%);
    pointer-events: none;
}

@media (min-width: 1024px) {
    .cta-banner {
        padding: var(--space-2xl) var(--space-lg);
    }
}

.cta-banner-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-banner-headline {
    font-size: 24px;
    color: var(--fg-cream);
    margin-bottom: var(--space-md);
}

.cta-banner-subtext {
    font-size: 16px;
    color: var(--fg-medium-gray);
    margin-bottom: var(--space-lg);
}

.cta-banner-microcopy {
    font-size: 14px;
    color: var(--fg-medium-gray);
    margin-top: var(--space-sm);
}

@media (min-width: 768px) {
    .cta-banner-headline {
        font-size: 36px;
    }
}

/* Confetti animation */
.cta-banner-confetti {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.cta-banner-confetti span {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--lime-yellow);
    opacity: 0.3;
    border-radius: 1px;
    animation: confetti-fall 4s linear infinite;
}

.cta-banner-confetti span:nth-child(1) { left: 5%; animation-delay: 0s; background: var(--pitch-green); }
.cta-banner-confetti span:nth-child(2) { left: 15%; animation-delay: 0.5s; background: var(--lime-yellow); }
.cta-banner-confetti span:nth-child(3) { left: 25%; animation-delay: 1s; background: var(--golden); }
.cta-banner-confetti span:nth-child(4) { left: 35%; animation-delay: 1.5s; background: var(--pitch-green); }
.cta-banner-confetti span:nth-child(5) { left: 45%; animation-delay: 2s; background: var(--lime-yellow); }
.cta-banner-confetti span:nth-child(6) { left: 55%; animation-delay: 0.3s; background: var(--golden); }
.cta-banner-confetti span:nth-child(7) { left: 65%; animation-delay: 0.8s; background: var(--pitch-green); }
.cta-banner-confetti span:nth-child(8) { left: 75%; animation-delay: 1.3s; background: var(--lime-yellow); }
.cta-banner-confetti span:nth-child(9) { left: 85%; animation-delay: 1.8s; background: var(--golden); }
.cta-banner-confetti span:nth-child(10) { left: 95%; animation-delay: 2.3s; background: var(--pitch-green); }

@keyframes confetti-fall {
    0% { top: -10px; transform: rotate(0deg); opacity: 0; }
    10% { opacity: 0.4; }
    90% { opacity: 0.3; }
    100% { top: 100%; transform: rotate(360deg); opacity: 0; }
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-charcoal);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
    overflow: hidden;
    transition: border-color var(--transition-base);
}

.faq-item[open] {
    border-left: 3px solid var(--lime-yellow);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md);
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--fg-cream);
    text-transform: uppercase;
    letter-spacing: -0.01em;
    list-style: none;
    user-select: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question-text {
    flex: 1;
    padding-right: var(--space-sm);
}

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--lime-yellow);
    border-radius: 2px;
    transition: transform var(--transition-base);
}

.faq-icon::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    transform: translateY(-50%);
}

.faq-icon::after {
    left: 50%;
    top: 0;
    width: 3px;
    height: 100%;
    transform: translateX(-50%);
}

.faq-item[open] .faq-icon::after {
    transform: translateX(-50%) scaleY(0);
}

.faq-answer {
    padding: 0 var(--space-md) var(--space-md);
}

.faq-answer p {
    font-size: 16px;
    color: var(--fg-light-gray);
    line-height: 1.6;
}

/* ============================================
   SPLIT SECTION (teaser blocks)
   ============================================ */
.split-section {
    background: var(--bg-charcoal);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    align-items: center;
}

@media (min-width: 768px) {
    .split-section {
        flex-direction: row;
        padding: var(--space-xl);
    }
}

.split-section.reverse {
    flex-direction: column-reverse;
}

@media (min-width: 768px) {
    .split-section.reverse {
        flex-direction: row-reverse;
    }
}

.split-text {
    flex: 1;
    min-width: 0;
}

.split-text h2 {
    margin-bottom: var(--space-sm);
}

.split-text p {
    margin-bottom: var(--space-md);
}

.split-image {
    flex: 1;
    min-width: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   PAYMENT STRIP
   ============================================ */
.payment-strip {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    align-items: center;
}

.pay-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background: var(--bg-charcoal-light);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    color: var(--fg-light-gray);
    white-space: nowrap;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--bg-deep);
    border-top: 1px solid var(--border-gray);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 2fr;
        gap: var(--space-xl);
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: var(--space-sm);
}

.footer-logo {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
}

.footer-brand-name {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--fg-cream);
    text-transform: uppercase;
}

.footer-desc {
    font-size: 14px;
    color: var(--fg-medium-gray);
    line-height: 1.6;
    max-width: 350px;
}

.footer-heading {
    font-size: 16px;
    color: var(--lime-yellow);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.04em;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 14px;
    color: var(--fg-light-gray);
}

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

.footer-bottom {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border-gray);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
    }
}

.footer-legal {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
}

.license-badge {
    background: var(--bg-charcoal-light);
    border: 1px solid var(--border-gray);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    color: var(--fg-medium-gray);
    font-weight: 600;
}

.age-badge {
    background: var(--pitch-green);
    color: var(--bg-obsidian);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 700;
}

.footer-sitemap-link {
    font-size: 14px;
    color: var(--fg-medium-gray);
    text-decoration: underline;
}

.footer-sitemap-link:hover {
    color: var(--lime-yellow);
}

.footer-copyright {
    font-size: 13px;
    color: var(--fg-muted);
}

/* ============================================
   SECTION HEADINGS
   ============================================ */
.section-heading {
    margin-bottom: var(--space-lg);
}

.section-heading h2 {
    margin-bottom: var(--space-sm);
}

.section-heading p {
    font-size: 16px;
    color: var(--fg-medium-gray);
    max-width: 700px;
}

/* ============================================
   CONTENT BLOCKS
   ============================================ */
.content-block {
    max-width: 800px;
    margin: 0 auto;
}

.content-block p {
    margin-bottom: var(--space-md);
}

.content-block h2 {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-sm);
}

.content-block h3 {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.content-block ul {
    list-style: disc;
    padding-left: var(--space-md);
    margin-bottom: var(--space-md);
}

.content-block li {
    margin-bottom: 8px;
    color: var(--fg-light-gray);
}

.content-block a {
    color: var(--pitch-green-bright);
    text-decoration: underline;
}

.content-block a:hover {
    color: var(--lime-yellow);
}

/* ============================================
   ENGAGEMENT PATTERNS
   ============================================ */

/* Summary / TL;DR Box */
.summary-box {
    background: var(--bg-charcoal);
    border: 1px solid var(--border-gray);
    border-left: 4px solid var(--lime-yellow);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
}

.summary-box-title {
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--lime-yellow);
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
    letter-spacing: 0.04em;
}

.summary-box p {
    margin-bottom: 0;
}

/* Callout / Highlight Box */
.callout-box {
    background: var(--bg-charcoal);
    border: 1px solid var(--border-gray);
    border-left: 4px solid var(--pitch-green);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin: var(--space-lg) 0;
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
}

.callout-box.warning {
    border-left-color: var(--golden);
}

.callout-box.info {
    border-left-color: var(--pitch-green);
}

.callout-icon {
    flex-shrink: 0;
    font-size: 20px;
    line-height: 1.4;
}

.callout-content {
    flex: 1;
    min-width: 0;
}

.callout-content p {
    margin-bottom: 0;
    font-size: 15px;
}

/* Pull Quote */
.pull-quote {
    border-left: 4px solid var(--lime-yellow);
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-lg) 0;
    background: var(--bg-charcoal);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.pull-quote blockquote {
    font-family: var(--font-display);
    font-size: 22px;
    line-height: 1.3;
    color: var(--fg-cream);
    text-transform: none;
    letter-spacing: -0.01em;
}

.pull-quote cite {
    display: block;
    margin-top: var(--space-sm);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--fg-medium-gray);
    font-style: normal;
}

/* Trust Badges Row */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    align-items: center;
    justify-content: center;
    padding: var(--space-lg) 0;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    min-width: 80px;
}

.trust-badge-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-charcoal-light);
    border: 1px solid var(--border-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.trust-badge-label {
    font-size: 12px;
    color: var(--fg-medium-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-lg) 0;
    background: var(--bg-charcoal);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.comparison-table thead {
    background: var(--bg-charcoal-light);
}

.comparison-table th {
    padding: var(--space-md);
    text-align: left;
    font-family: var(--font-display);
    font-size: 16px;
    text-transform: uppercase;
    color: var(--fg-cream);
    border-bottom: 2px solid var(--border-gray);
}

.comparison-table td {
    padding: var(--space-md);
    color: var(--fg-light-gray);
    border-bottom: 1px solid var(--border-muted);
    font-size: 15px;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table .recommended {
    background: rgba(34, 197, 94, 0.08);
    position: relative;
}

.comparison-table .recommended th {
    color: var(--lime-yellow);
}

/* Terms Table */
.terms-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-charcoal);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.terms-table th,
.terms-table td {
    padding: var(--space-md);
    border-bottom: 1px solid var(--border-muted);
    text-align: left;
}

.terms-table th {
    font-family: var(--font-display);
    font-size: 16px;
    text-transform: uppercase;
    color: var(--fg-cream);
    background: var(--bg-charcoal-light);
}

.terms-table td {
    font-size: 15px;
    color: var(--fg-light-gray);
}

.terms-table tr:last-child th,
.terms-table tr:last-child td {
    border-bottom: none;
}

.terms-table .value-accent {
    color: var(--lime-yellow);
    font-weight: 700;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for grid children */
.game-card-grid .animate-on-scroll:nth-child(1) { transition-delay: 0ms; }
.game-card-grid .animate-on-scroll:nth-child(2) { transition-delay: 80ms; }
.game-card-grid .animate-on-scroll:nth-child(3) { transition-delay: 160ms; }
.game-card-grid .animate-on-scroll:nth-child(4) { transition-delay: 240ms; }
.game-card-grid .animate-on-scroll:nth-child(5) { transition-delay: 320ms; }
.game-card-grid .animate-on-scroll:nth-child(6) { transition-delay: 400ms; }

/* ============================================
   MISC UTILITIES
   ============================================ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.divider {
    width: 100%;
    height: 1px;
    background: var(--border-gray);
    margin: var(--space-lg) 0;
}

.badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--lime-yellow);
    color: var(--bg-obsidian);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: var(--radius-sm);
}

.badge-green {
    background: var(--pitch-green);
    color: var(--bg-obsidian);
}

.badge-golden {
    background: var(--golden);
    color: var(--bg-obsidian);
}

/* ============================================
   PROVIDER STRIP
   ============================================ */
.provider-strip {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    align-items: center;
    justify-content: center;
}

.provider-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 80px;
}

.provider-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--bg-obsidian);
    letter-spacing: 0.02em;
    border: 2px solid var(--border-gray);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.provider-logo:hover .provider-icon {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}

.provider-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--fg-medium-gray);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-align: center;
}

/* ============================================
   SITEMAP PAGE
   ============================================ */
.sitemap-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sitemap-entry {
    padding: 24px 0;
    border-bottom: 1px solid var(--border-muted);
}

.sitemap-entry:last-child {
    border-bottom: none;
}

.sitemap-entry h3 a {
    text-decoration: none;
    transition: color var(--transition-fast);
}

.sitemap-entry h3 a:hover {
    color: var(--lime-yellow);
}

@media (min-width: 768px) {
    .sitemap-header h1 {
        font-size: 36px;
    }
}

/* ============================================
   BONUS STEPS (welcome package breakdown)
   ============================================ */
.bonus-steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.bonus-step {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    background: var(--bg-charcoal);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.bonus-step:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(34, 197, 94, 0.15);
    border-color: var(--pitch-green);
}

.bonus-step-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--pitch-green);
    color: var(--bg-obsidian);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 20px;
}

.bonus-step-body {
    flex: 1;
    min-width: 0;
}

.bonus-step-body h3 {
    margin-bottom: 6px;
}

.bonus-step-body p {
    font-size: 15px;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .bonus-steps {
        flex-direction: row;
        gap: var(--space-lg);
    }
    .bonus-step {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: var(--space-lg);
    }
    .bonus-step-num {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }
}

/* ============================================
   VIP TIERS
   ============================================ */
.vip-tiers {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
}

.vip-tier {
    flex: 1 1 140px;
    min-width: 140px;
    max-width: 200px;
    background: var(--bg-charcoal);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    text-align: center;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.vip-tier:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(34, 197, 94, 0.15);
    border-color: var(--pitch-green);
}

.vip-tier-icon {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-sm);
}

.vip-tier-icon img {
    width: 60px;
    height: 60px;
}

.vip-tier h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.vip-tier-detail {
    font-size: 13px;
    color: var(--fg-light-gray);
    margin-bottom: 4px;
    line-height: 1.4;
}

.vip-tier-detail:last-child {
    margin-bottom: 0;
}

@media (min-width: 1024px) {
    .vip-tiers {
        gap: var(--space-md);
    }
    .vip-tier {
        padding: var(--space-lg);
    }
    .vip-tier h3 {
        font-size: 18px;
    }
    .vip-tier-detail {
        font-size: 14px;
    }
}

/* ============================================
   BETTING FEATURES GRID
   ============================================ */
.betting-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .betting-features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: var(--space-lg);
    }
}

.betting-feature-card {
    background: var(--bg-charcoal);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.betting-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(34, 197, 94, 0.15);
    border-color: var(--pitch-green);
}

.betting-feature-icon {
    margin-bottom: var(--space-md);
}

.betting-feature-icon img {
    width: 64px;
    height: 64px;
}

.betting-feature-card h3 {
    margin-bottom: var(--space-sm);
    color: var(--lime-yellow);
}

.betting-feature-card p {
    font-size: 16px;
    color: var(--fg-light-gray);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ============================================
   STREAMING NOTE CARD
   ============================================ */
.streaming-note-card {
    background: var(--bg-charcoal);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    max-width: 900px;
    margin: 0 auto;
}

.streaming-note-card h2 {
    margin-bottom: var(--space-md);
}

.streaming-note-card h3 {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.streaming-note-card p {
    font-size: 16px;
    color: var(--fg-light-gray);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

/* ============================================
   RESPONSIVE HELPERS
   ============================================ */
.hide-mobile {
    display: none;
}

@media (min-width: 768px) {
    .hide-mobile {
        display: block;
    }
    .hide-desktop {
        display: none;
    }
}

/* ============================================
   PRINT
   ============================================ */
@media print {
    .site-header,
    .site-footer,
    .cta-banner,
    .menu-toggle {
        display: none;
    }
    body {
        background: white;
        color: black;
    }
}

/* a11y-autofix: link-in-text-block */
/* axe link-in-text-block: inline links inside body copy must be
   distinguishable without relying on color. Scope to text containers so
   nav/button/card links (already visually distinct) keep their styling. */
:where(p, li, blockquote, figcaption, dd, .prose, .seo-text, article)
  a:not([class]) {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
