/* ============================================
   VOX CASINO - DESIGN SYSTEM
   Retro Vegas 70s aesthetic · Dark theme only
   Fonts: Monoton (display), Barlow (body),
          Barlow Condensed (condensed)
   ============================================ */

/* ============================================
   CSS VARIABLES - Design Tokens
   Single dark theme - no light mode toggle
   ============================================ */
:root {
    /* Backgrounds */
    --bg-base: #0a0a0a;
    --bg-card: #1a1a1a;
    --bg-elevated: #222222;
    --bg-overlay: rgba(10, 10, 10, 0.92);

    /* Text */
    --text-primary: #f5f0e8;
    --text-secondary: #c4b8a8;
    --text-muted: #928881;

    /* Brand Accents */
    --orange: #c05000;
    --orange-text: #dd6800;
    --orange-hover: #ff8c33;
    --orange-burnt: #cc5500;
    --orange-glow: rgba(255, 107, 0, 0.35);
    --orange-soft: rgba(255, 107, 0, 0.12);

    /* Borders */
    --border: #2a2a2a;
    --border-light: #3a3a3a;

    /* Fonts */
    --font-display: 'Monoton', cursive;
    --font-body: 'Barlow', sans-serif;
    --font-condensed: 'Barlow Condensed', sans-serif;

    /* Spacing */
    --section-gap: 60px;
    --component-padding: 20px;
    --grid-gap: 16px;
    --header-height: 64px;
    --container-pad: 20px;

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

    /* Radius */
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;

    /* Shadows */
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.5);
    --shadow-hover: 0 8px 30px rgba(255, 107, 0, 0.25);

    /* Container */
    --container-max: 1200px;
}

@media (min-width: 768px) {
    :root {
        --section-gap: 80px;
        --component-padding: 28px;
        --grid-gap: 24px;
        --container-pad: 32px;
    }
}

@media (min-width: 1024px) {
    :root {
        --section-gap: 100px;
        --component-padding: 32px;
        --header-height: 72px;
    }
}

/* ============================================
   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: 17px;
    line-height: 1.6;
    color: var(--text-secondary);
    background: var(--bg-base);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--orange-hover);
}

ul, ol {
    list-style: none;
}

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

section {
    overflow-x: clip;
}

input, textarea, select {
    max-width: 100%;
    font-family: inherit;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--orange);
    color: #fff;
    padding: 12px 24px;
    font-weight: 600;
    z-index: 9999;
    border-radius: 0 0 var(--radius-sm) 0;
    transition: top var(--transition);
}

.skip-link:focus {
    top: 0;
    color: #fff;
}

.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;
}

:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 2px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
    color: var(--text-primary);
}

h1 {
    font-family: var(--font-display);
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: 0.04em;
}

h2 {
    font-family: var(--font-display);
    font-size: 26px;
    line-height: 1.3;
    letter-spacing: 0.03em;
}

h3 {
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 22px;
    line-height: 1.3;
}

h4 {
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
}

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

/* ============================================
   LAYOUT CONTAINERS
   ============================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--container-pad);
    padding-right: var(--container-pad);
    width: 100%;
}

.section {
    padding-top: var(--section-gap);
    padding-bottom: var(--section-gap);
}

.section-heading {
    font-family: var(--font-display);
    font-size: 26px;
    line-height: 1.3;
    color: var(--text-primary);
    letter-spacing: 0.03em;
    margin-bottom: 24px;
    text-align: center;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 17px;
    color: var(--text-muted);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

@media (min-width: 1024px) {
    .section-heading {
        font-size: 36px;
        margin-bottom: 40px;
    }
}

/* ============================================
   PROSE - SEO content blocks
   ============================================ */
.prose {
    max-width: 800px;
    margin: 0 auto;
}

.prose p {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.prose a {
    color: var(--orange-text);
    text-decoration: underline;
    text-decoration-color: var(--orange-burnt);
    text-underline-offset: 2px;
}

.prose a:hover {
    color: var(--orange-hover);
    text-decoration-color: var(--orange);
}

.prose strong {
    color: var(--text-primary);
    font-weight: 600;
}

.prose h2 {
    margin-top: 56px;
    margin-bottom: 20px;
}

.prose h3 {
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.prose ul, .prose ol {
    margin-bottom: 28px;
    padding-left: 24px;
}

.prose li {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 12px;
    list-style: disc;
}

.prose ol li {
    list-style: decimal;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-base);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    gap: 20px;
}

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

.logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--text-primary);
    letter-spacing: 0.05em;
}

/* ============================================
   MOBILE MENU - Slide-in drawer
   Hidden below 1024px, shown as fixed drawer
   ============================================ */
.primary-nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-base);
    z-index: 999;
    overflow-y: auto;
}

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

.nav-list {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 4px;
}

.nav-list > li {
    min-height: 48px;
    display: flex;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    min-height: 48px;
    width: 100%;
    padding: 0 16px;
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 500;
    color: var(--text-primary);
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
}

.nav-link:hover, .nav-link:focus {
    color: var(--orange);
    background: var(--orange-soft);
}

.nav-cta-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px 0 0;
    margin-top: 8px;
    border-top: 1px solid var(--border);
}

.nav-cta-group .btn {
    width: 100%;
    justify-content: center;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    flex-shrink: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Desktop nav - inline, hamburger hidden */
@media (min-width: 1024px) {
    .primary-nav {
        display: block;
        position: static;
        background: transparent;
        overflow: visible;
    }

    .nav-list {
        flex-direction: row;
        align-items: center;
        padding: 0;
        gap: 4px;
    }

    .nav-list > li {
        min-height: auto;
    }

    .nav-link {
        width: auto;
        min-height: auto;
        padding: 8px 16px;
    }

    .nav-cta-group {
        flex-direction: row;
        padding: 0;
        margin-top: 0;
        border-top: none;
        margin-left: 16px;
        gap: 12px;
    }

    .nav-cta-group .btn {
        width: auto;
    }

    .mobile-menu-toggle {
        display: none;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--bg-base);
    border-top: 1px solid var(--border);
    padding-top: 60px;
    padding-bottom: 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }
}

.footer-heading {
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 18px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

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

.footer-links a {
    color: var(--text-secondary);
    font-size: 15px;
    transition: color var(--transition);
}

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

.footer-links li:not(:has(a)) {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.5;
}

.footer-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.payment-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: border-color var(--transition), color var(--transition);
}

.payment-badge:hover {
    border-color: var(--orange);
    color: var(--text-primary);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    text-align: center;
}

.footer-copy {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.footer-disclaimer {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ============================================
   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: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition),
                background var(--transition), color var(--transition),
                border-color var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
}

.btn-primary:hover, .btn-primary:focus {
    background: var(--orange-hover);
    border-color: var(--orange-hover);
    color: #fff;
    transform: scale(1.03);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--border-light);
}

.btn-outline:hover, .btn-outline:focus {
    border-color: var(--orange);
    color: var(--orange);
}

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

.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
    min-height: 40px;
}

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

@media (min-width: 1024px) {
    .hero {
        min-height: 100vh;
    }
}

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

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

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

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--orange-glow) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    padding: 60px 0;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: 32px;
    line-height: 1.2;
    color: var(--text-primary);
    letter-spacing: 0.04em;
    margin-bottom: 20px;
    text-shadow:
        0 0 4px rgba(255, 107, 0, 0.8),
        0 0 11px rgba(255, 107, 0, 0.5),
        0 0 19px rgba(255, 107, 0, 0.3);
    animation: neon-flicker 2.5s ease-in-out;
}

.hero-subtext {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 480px) {
    .hero-cta-group {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .hero-headline { font-size: 52px; }
    .hero-subtext { font-size: 20px; }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 46px;
    border: 2px solid var(--text-muted);
    border-radius: 14px;
    z-index: 2;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--orange);
    border-radius: 2px;
    animation: scroll-bounce 2s infinite;
}

/* ============================================
   CARD GRID - Reusable grid of content cards
   .card-grid - responsive grid container
   .card - individual card with image, title, desc
   .card-badge - large number for bonus tiers
   ============================================ */
.card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--grid-gap);
}

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

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

.card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition),
                border-color var(--transition);
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-hover);
    border-color: var(--orange-burnt);
}

.card-image {
    width: 100%;
    aspect-ratio: 400 / 260;
    overflow: hidden;
}

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

.card-badge {
    font-family: var(--font-display);
    font-size: 42px;
    color: var(--orange);
    text-align: center;
    padding: 24px 16px 8px;
    line-height: 1;
    text-shadow: 0 0 12px var(--orange-glow);
}

.card-body {
    padding: var(--component-padding);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 22px;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.card-subtitle {
    font-family: var(--font-condensed);
    font-weight: 600;
    font-size: 16px;
    color: var(--orange-text);
    margin-bottom: 8px;
}

.card-description {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-muted);
    margin-bottom: 16px;
    flex: 1;
}

.card-link {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--orange-text);
    align-self: flex-start;
    transition: color var(--transition), gap var(--transition);
}

.card-link:hover {
    color: var(--orange-hover);
}

/* ============================================
   CTA BANNER - Full-width conversion section
   Near-black bg, orange radial glow, centered
   ============================================ */
.cta-banner {
    position: relative;
    background: var(--bg-base);
    padding: 60px 0;
    text-align: center;
    overflow: hidden;
}

.cta-banner-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    max-width: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, var(--orange-glow) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.cta-banner-content {
    position: relative;
    z-index: 1;
}

.cta-banner-headline {
    font-family: var(--font-display);
    font-size: 28px;
    line-height: 1.2;
    color: var(--text-primary);
    letter-spacing: 0.04em;
    margin-bottom: 16px;
}

.cta-banner-subtext {
    font-family: var(--font-body);
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-microcopy {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 20px;
}

@media (min-width: 1024px) {
    .cta-banner {
        padding: 100px 0;
    }
    .cta-banner-headline {
        font-size: 42px;
    }
}

/* ============================================
   FAQ ACCORDION - Native details/summary
   Plus icon rotates to X, orange left border
   ============================================ */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    overflow: hidden;
    transition: border-color var(--transition);
}

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

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    list-style: none;
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 20px;
    color: var(--text-primary);
    user-select: none;
}

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

.faq-question-text {
    flex: 1;
}

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

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

.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%) rotate(90deg);
    opacity: 0;
}

.faq-item[open] .faq-icon::before {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 0 24px 20px;
}

.faq-answer p {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* ============================================
   BONUS TEASER - Split layout
   Text block + image, orange highlight
   ============================================ */
.split-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

@media (min-width: 768px) {
    .split-layout {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
}

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

.split-image {
    min-width: 0;
    border-radius: var(--radius);
    overflow: hidden;
}

.split-image img {
    width: 100%;
    border-radius: var(--radius);
}

.bonus-highlight {
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
    color: var(--text-primary);
    border-left: 4px solid var(--orange);
    padding: 16px 24px;
    margin: 24px 0;
    background: var(--orange-soft);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ============================================
   PAYMENT METHODS - Logo strip
   ============================================ */
.payment-section {
    padding-top: var(--section-gap);
    padding-bottom: var(--section-gap);
}

.payment-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.payment-logo {
    width: 80px;
    height: 50px;
    object-fit: contain;
    filter: grayscale(1) opacity(0.7);
    transition: filter var(--transition), transform var(--transition);
}

.payment-logo:hover {
    filter: grayscale(0) opacity(1);
    transform: scale(1.08);
}

/* ============================================
   TRUST SIGNALS - Badge row
   ============================================ */
.trust-badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
}

@media (min-width: 768px) {
    .trust-badges {
        grid-template-columns: repeat(3, 1fr);
    }
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.trust-icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.trust-label {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-muted);
    text-align: center;
}

/* ============================================
   PROVIDER WALL - Logo grid
   ============================================ */
.provider-wall {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .provider-wall {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .provider-wall {
        grid-template-columns: repeat(6, 1fr);
    }
}

.provider-logo {
    width: 100%;
    height: 48px;
    object-fit: contain;
    filter: grayscale(1) opacity(0.6);
    transition: filter var(--transition), transform var(--transition);
}

.provider-logo:hover {
    filter: grayscale(0) opacity(1);
    transform: scale(1.05);
}

/* ============================================
   GAME FILTERING - Mockup filter bar
   ============================================ */
.filter-bar {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.filter-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 8px 16px;
    background: transparent;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
}

.filter-tab.active {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
}

.filter-tab:hover:not(.active) {
    border-color: var(--orange);
    color: var(--orange);
}

.filter-dropdown,
.filter-search {
    padding: 8px 16px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 14px;
}

.filter-explanation {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .filter-explanation {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================
   POPULAR TITLES - Game tile grid
   ============================================ */
.game-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--grid-gap);
}

@media (min-width: 768px) {
    .game-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.game-tile {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition),
                border-color var(--transition);
    min-width: 0;
}

.game-tile:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-hover);
    border-color: var(--orange-burnt);
}

.game-thumb {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.game-tile-body {
    padding: 16px;
}

.game-tile-title {
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.game-tile-provider {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-muted);
}

/* ============================================
   SOCIAL PROOF - Stat row
   ============================================ */
.stat-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
}

@media (min-width: 768px) {
    .stat-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
    }
}

.stat-item {
    padding: 20px;
    position: relative;
}

@media (min-width: 768px) {
    .stat-item:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 20%;
        height: 60%;
        width: 1px;
        background: var(--orange-burnt);
        opacity: 0.4;
    }
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 0 12px var(--orange-glow);
}

.stat-label {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

/* ============================================
   ENGAGEMENT PATTERNS
   Callout, TL;DR, Pull quote, Steps, Table
   ============================================ */

/* Callout / Highlight box */
.callout {
    background: var(--bg-card);
    border-left: 4px solid var(--orange);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 20px 24px;
    margin: 24px 0;
}

.callout-title {
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 20px;
    color: var(--orange);
    margin-bottom: 8px;
}

.callout p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* TL;DR / Summary box */
.tldr-box {
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 24px;
    margin: 28px 0;
}

.tldr-box-title {
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 18px;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.tldr-box ul {
    padding-left: 20px;
}

.tldr-box li {
    list-style: disc;
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Pull quote */
.pull-quote {
    border-left: 4px solid var(--orange);
    padding: 16px 24px;
    margin: 32px 0;
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
    color: var(--text-primary);
}

.pull-quote cite {
    display: block;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 12px;
    font-style: normal;
}

/* Numbered steps */
.steps {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.steps li {
    position: relative;
    padding-left: 56px;
    margin-bottom: 24px;
    counter-increment: step-counter;
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--orange);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

/* Inline highlight */
.highlight {
    font-family: var(--font-condensed);
    font-weight: 700;
    color: var(--orange);
}

/* Comparison table */
.table-wrapper {
    max-width: 100%;
    overflow-x: auto;
    margin: 28px 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 0;
}

.comparison-table th,
.comparison-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
}

.comparison-table th {
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 16px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.comparison-table td {
    color: var(--text-secondary);
}

.comparison-table tr.recommended {
    background: var(--orange-soft);
}

.comparison-table tr.recommended td:first-child {
    border-left: 3px solid var(--orange);
}

/* Blockquote */
blockquote {
    border-left: 4px solid var(--orange);
    padding: 16px 24px;
    margin: 32px 0;
    font-family: var(--font-condensed);
    font-weight: 600;
    font-size: 20px;
    line-height: 1.4;
    color: var(--text-primary);
    background: var(--orange-soft);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

blockquote cite {
    display: block;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 12px;
    font-style: normal;
}

/* ============================================
   SITEMAP PAGE - Utility page layout
   ============================================ */
.sitemap-page {
    max-width: 800px;
    margin: 0 auto;
}

.sitemap-list {
    counter-reset: sitemap-counter;
    list-style: none;
    padding: 0;
}

.sitemap-item {
    position: relative;
    padding-left: 56px;
    margin-bottom: 20px;
    counter-increment: sitemap-counter;
}

.sitemap-item::before {
    content: counter(sitemap-counter);
    position: absolute;
    left: 0;
    top: 2px;
    width: 36px;
    height: 36px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 16px;
    color: var(--orange);
    flex-shrink: 0;
}

.sitemap-link {
    display: inline-block;
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 20px;
    color: var(--text-primary);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color var(--transition), border-color var(--transition);
    margin-bottom: 6px;
}

.sitemap-link:hover {
    color: var(--orange);
    border-bottom-color: var(--orange);
}

.sitemap-desc {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
}

/* ============================================
   ANIMATIONS
   ============================================ */

/* Neon flicker on hero headline */
@keyframes neon-flicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        opacity: 1;
        text-shadow:
            0 0 4px rgba(255, 107, 0, 0.8),
            0 0 11px rgba(255, 107, 0, 0.5),
            0 0 19px rgba(255, 107, 0, 0.3);
    }
    20%, 24%, 55% {
        opacity: 0.4;
        text-shadow: none;
    }
}

/* Scroll indicator bounce */
@keyframes scroll-bounce {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 22px; opacity: 0.3; }
}

/* Scroll reveal - starts hidden, revealed by JS */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 600ms ease-out, transform 600ms ease-out;
}

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

/* Staggered delays for grid children */
.animate-on-scroll:nth-child(1) { transition-delay: 0ms; }
.animate-on-scroll:nth-child(2) { transition-delay: 100ms; }
.animate-on-scroll:nth-child(3) { transition-delay: 200ms; }
.animate-on-scroll:nth-child(4) { transition-delay: 300ms; }
.animate-on-scroll:nth-child(5) { transition-delay: 400ms; }
.animate-on-scroll:nth-child(6) { transition-delay: 500ms; }

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.hidden { display: none !important; }

.orange-underline {
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

.orange-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--orange);
    border-radius: 2px;
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .animate-on-scroll {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* 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;
}
