/*
 * GIZBO CASINO - CYBERPUNK DESIGN SYSTEM
 * Mobile-first, dark theme only
 * Fonts: Orbitron (display), Rubik (body)
 */

:root {
    /* Background - near-black obsidian with deep purple overlays */
    --background: #0b0a14;
    --background-elevated: #131120;
    --background-card: #16131f;

    /* Foreground - bright off-white like glowing LED text */
    --foreground: #f1f5f9;
    --foreground-muted: #a5b4cd;
    --foreground-dim: #8b9bb8;

    /* Primary - vivid cyan like a holographic projection */
    --primary: #22d3ee;
    --primary-glow: rgba(34, 211, 238, 0.4);
    --primary-foreground: #0b0a14;

    /* Secondary - muted violet like a dark cyber alley */
    --secondary: #6d28d9;
    --secondary-glow: rgba(109, 40, 217, 0.3);
    --secondary-foreground: #f8fafc;

    /* Accent - magenta like a laser beam (Eva's bonus magic) */
    --accent: #d946ef;
    --accent-glow: rgba(217, 70, 239, 0.4);
    --accent-foreground: #000000;

    /* Cyberpunk green - for game categories and exclusive content */
    --neon-green: #00ff9d;
    --neon-green-glow: rgba(0, 255, 157, 0.3);

    /* Muted - slate gray like shadowy concrete */
    --muted: #1e293b;
    --muted-foreground: #94a3b8;
    --border: #2a2540;
    --border-glow: #3d3458;
    --input: #1e293b;
    --ring: #22d3ee;

    /* Destructive */
    --destructive: #f43f5e;
    --destructive-foreground: #000000;

    /* Gradients */
    --gradient-pink-blue: linear-gradient(135deg, #d946ef 0%, #22d3ee 100%);
    --gradient-blue-green: linear-gradient(135deg, #22d3ee 0%, #00ff9d 100%);
    --gradient-hero-overlay: linear-gradient(180deg, rgba(11, 10, 20, 0.6) 0%, rgba(11, 10, 20, 0.95) 100%);

    /* Glassmorphism */
    --glass-bg: rgba(22, 19, 31, 0.7);
    --glass-border: rgba(61, 52, 88, 0.6);
    --glass-blur: 12px;

    /* Typography */
    --font-display: "Orbitron", sans-serif;
    --font-body: "Rubik", sans-serif;

    /* Spacing - 8px base grid */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 80px;

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

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

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

    /* Shadows */
    --shadow-neon-primary: 0 0 20px var(--primary-glow), 0 0 40px rgba(34, 211, 238, 0.15);
    --shadow-neon-accent: 0 0 20px var(--accent-glow), 0 0 40px rgba(217, 70, 239, 0.15);
    --shadow-neon-green: 0 0 20px var(--neon-green-glow), 0 0 40px rgba(0, 255, 157, 0.15);
}

/* ============================================
   RESET & BASE
   ============================================ */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

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

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

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

ul, ol {
    list-style: none;
}

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

section {
    overflow: visible;
}

pre, code, .code-block {
    max-width: 100%;
    overflow-x: auto;
}

.table-wrapper {
    max-width: 100%;
    overflow-x: auto;
}

.table-wrapper:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ============================================
   TYPOGRAPHY
   Orbitron for display, Rubik for body
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: var(--foreground);
}

h1 {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 0.03em;
}

h2 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.25;
}

h3 {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.3;
}

h4 {
    font-size: 1.125rem;
    font-weight: 500;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: var(--space-md);
    color: var(--foreground-muted);
}

strong, b {
    color: var(--foreground);
    font-weight: 600;
}

@media (min-width: 768px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
}

@media (min-width: 1024px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.25rem; }
    h3 { font-size: 1.5rem; }
}

/* Gradient text utility */
.gradient-text {
    background: var(--gradient-pink-blue);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.gradient-text-green {
    background: var(--gradient-blue-green);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* ============================================
   LAYOUT - Container
   ============================================ */

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.section {
    padding: var(--space-xl) 0;
    position: relative;
    scroll-margin-top: 80px;
}

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

/* ============================================
   HEADER
   Sticky semi-transparent with neon glow
   ============================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #0b0a14;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 20px rgba(109, 40, 217, 0.15);
    backdrop-filter: blur(0px);
}

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

.site-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-shrink: 0;
}

.site-brand .logo {
    height: 40px;
    width: 40px;
    border-radius: var(--radius-sm);
    filter: drop-shadow(0 0 8px rgba(34, 211, 238, 0.3));
    flex-shrink: 0;
}

.brand-text {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    background: var(--gradient-pink-blue);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Mobile menu toggle (hamburger) */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    z-index: 1001;
    gap: 5px;
    transition: border-color var(--transition);
}

.mobile-menu-toggle:hover {
    border-color: var(--primary);
}

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

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) 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(-7px) rotate(-45deg);
}

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

.primary-nav.is-open {
    display: flex;
    height: calc(100vh - var(--header-height));
    min-height: calc(100vh - var(--header-height));
    max-height: calc(100vh - var(--header-height));
}

.nav-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.nav-link {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: var(--space-sm) var(--space-md);
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1rem;
    color: var(--foreground);
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast), color var(--transition-fast);
}

.nav-link:hover {
    background: var(--muted);
    color: var(--primary);
}

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

.nav-cta-group .btn {
    width: 100%;
    text-align: center;
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }

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

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

    .nav-link {
        min-height: auto;
        padding: var(--space-xs) var(--space-sm);
        font-size: 0.9rem;
    }

    .nav-cta-group {
        flex-direction: row;
        gap: var(--space-sm);
        margin-top: 0;
    }

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

/* ============================================
   BUTTONS
   Neon-bordered CTA buttons
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 24px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition-fast);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-pink-blue);
    color: #ffffff;
    box-shadow: 0 0 15px var(--accent-glow);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px var(--accent-glow), 0 0 40px var(--primary-glow);
    color: #ffffff;
}

.btn-ghost {
    background: transparent;
    color: var(--foreground);
    border: 1px solid var(--border-glow);
}

.btn-ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
}

.btn-neon {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    box-shadow: 0 0 15px var(--accent-glow), inset 0 0 10px rgba(217, 70, 239, 0.1);
}

.btn-neon:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px var(--accent-glow), inset 0 0 15px rgba(217, 70, 239, 0.2);
    color: #ffffff;
}

.btn-neon-large {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    font-size: 1rem;
    padding: 16px 40px;
    min-height: 56px;
    box-shadow: 0 0 20px var(--accent-glow), inset 0 0 10px rgba(217, 70, 239, 0.1);
}

.btn-neon-large:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--accent-glow), 0 0 50px rgba(217, 70, 239, 0.2), inset 0 0 15px rgba(217, 70, 239, 0.2);
    color: #ffffff;
    background: rgba(217, 70, 239, 0.1);
}

/* ============================================
   HERO SECTION
   Full-bleed cyberpunk hero with characters
   ============================================ */

.hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: visible;
    padding: var(--space-xl) var(--space-lg);
    background: radial-gradient(ellipse at 30% 40%, rgba(109, 40, 217, 0.25) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 60%, rgba(217, 70, 239, 0.2) 0%, transparent 50%),
                var(--background);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        linear-gradient(135deg, transparent 48%, rgba(34, 211, 238, 0.03) 49%, rgba(34, 211, 238, 0.05) 50%, transparent 51%),
        linear-gradient(135deg, transparent 68%, rgba(217, 70, 239, 0.03) 69%, rgba(217, 70, 239, 0.05) 70%, transparent 71%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    margin-bottom: var(--space-lg);
}

.hero h1 .gradient-text {
    display: inline;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--foreground-muted);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
}

@media (min-width: 768px) {
    .hero {
        min-height: auto;
        padding: var(--space-2xl) var(--space-lg);
    }
    .hero-cta-group {
        flex-direction: row;
        justify-content: center;
    }
}

/* Hero character images */
.hero-characters {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    overflow: hidden;
}

.hero-char {
    width: 28%;
    max-width: 280px;
    opacity: 0.85;
    animation: float 6s ease-in-out infinite;
}

.hero-char-eva {
    align-self: flex-start;
    margin-top: var(--space-lg);
}

.hero-char-max {
    align-self: flex-end;
    margin-bottom: var(--space-lg);
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ============================================
   WINNERS TICKER
   ============================================ */

.winners-ticker {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: var(--background-elevated);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.winners-ticker-label {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--neon-green);
    white-space: nowrap;
    flex-shrink: 0;
    z-index: 2;
}

.winners-ticker-track {
    display: flex;
    gap: var(--space-xl);
    flex: 1;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, #000 40px, #000 calc(100% - 40px), transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 40px, #000 calc(100% - 40px), transparent);
}

.winners-ticker-track-inner {
    display: flex;
    gap: var(--space-xl);
    animation: ticker-scroll 30s linear infinite;
    flex-shrink: 0;
}

.winner-item {
    font-size: 0.875rem;
    color: #a5b4cd;
    white-space: nowrap;
    flex-shrink: 0;
}

.winner-item strong {
    color: var(--neon-green);
}

@keyframes ticker-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ============================================
   GLASSMORPHIC CARDS
   Semi-transparent dark cards with neon borders
   ============================================ */

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.glass-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-neon-primary);
    transform: translateY(-4px);
}

/* ============================================
   INFO CARD GRID
   Responsive grid of glassmorphic cards
   ============================================ */

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

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

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

.info-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    min-width: 0;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.info-card:hover {
    transform: scale(1.05);
    border-color: var(--accent);
    box-shadow: var(--shadow-neon-accent);
}

.info-card-icon {
    font-size: 2rem;
    line-height: 1;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid var(--primary);
}

.info-card-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--foreground);
}

@media (min-width: 1024px) {
    .info-card-title {
        font-size: 1.5rem;
    }
}

.info-card-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--foreground-muted);
    flex: 1;
}

.info-card-link {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

/* ============================================
   STAT BLOCK
   Large neon gradient numbers
   ============================================ */

.stat-block {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    text-align: center;
    min-width: 0;
}

.stat-block-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.1;
    background: var(--gradient-pink-blue);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-bottom: var(--space-sm);
}

.stat-block-label {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--foreground-muted);
    margin-bottom: var(--space-xs);
}

.stat-block-source {
    font-size: 0.75rem;
    color: #8b9bb8;
    font-style: italic;
}

@media (min-width: 768px) {
    .stat-block-number {
        font-size: 2.5rem;
    }
}

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

/* Stat block grid layout */
.stat-block-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin: var(--space-md) 0;
}

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

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

/* ============================================
   CTA BANNER
   Full-width glassmorphic conversion section
   ============================================ */

.cta-banner-section {
    position: relative;
    padding: var(--space-xl) var(--space-lg);
    overflow: visible;
    text-align: center;
}

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

.cta-banner-glow {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, transparent 45%, rgba(217, 70, 239, 0.08) 50%, transparent 55%),
        linear-gradient(135deg, transparent 55%, rgba(34, 211, 238, 0.08) 60%, transparent 65%);
    pointer-events: none;
}

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

.cta-banner-heading {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    background: var(--gradient-pink-blue);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

@media (min-width: 768px) {
    .cta-banner-heading {
        font-size: 2.25rem;
    }
}

.cta-banner-subtext {
    font-size: 1rem;
    color: var(--foreground-muted);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

/* ============================================
   FAQ ACCORDION
   Glassmorphic panels with neon blue left border
   ============================================ */

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-left: 3px solid var(--primary);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: box-shadow var(--transition), border-color var(--transition);
}

.faq-item[open] {
    box-shadow: var(--shadow-neon-primary);
    border-left-color: var(--accent);
}

.faq-item + .faq-item {
    margin-top: 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg);
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--foreground);
    list-style: none;
    user-select: none;
}

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

.faq-question:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

@media (min-width: 768px) {
    .faq-question {
        font-size: 1.25rem;
    }
}

.faq-toggle {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    margin-left: var(--space-md);
}

.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--accent);
    border-radius: 2px;
    transition: transform var(--transition);
}

.faq-toggle::before {
    width: 16px;
    height: 2px;
    transform: translate(-50%, -50%);
}

.faq-toggle::after {
    width: 2px;
    height: 16px;
    transform: translate(-50%, -50%);
}

.faq-item[open] .faq-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-item[open] .faq-toggle::before {
    transform: translate(-50%, -50%) rotate(180deg);
}

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

.faq-answer p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--foreground-muted);
}

/* ============================================
   CALLOUT BOX
   Attention-grabbing inline block
   ============================================ */

.callout {
    border-radius: var(--radius-sm);
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
    border-left: 3px solid var(--primary);
    background: rgba(34, 211, 238, 0.05);
}

.callout p {
    margin-bottom: 0;
    color: var(--foreground);
}

.callout-info {
    border-left-color: var(--primary);
    background: rgba(34, 211, 238, 0.05);
}

.callout-warning {
    border-left-color: var(--accent);
    background: rgba(217, 70, 239, 0.05);
}

.callout-success {
    border-left-color: var(--neon-green);
    background: rgba(0, 255, 157, 0.05);
}

/* ============================================
   TL;DR SUMMARY BOX
   ============================================ */

.tldr-box {
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
    background: var(--background-elevated);
}

.tldr-label {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--neon-green);
    margin-bottom: var(--space-sm);
}

.tldr-box p {
    margin-bottom: 0;
    color: var(--foreground);
}

.tldr-box a {
    color: #f0abfc;
    text-decoration: underline;
    text-decoration-color: #f0abfc;
    text-underline-offset: 2px;
}

.tldr-box a:hover {
    color: var(--primary);
    text-decoration-color: var(--primary);
}

/* ============================================
   PULL QUOTE
   ============================================ */

.pull-quote {
    border-left: 3px solid var(--accent);
    padding: var(--space-lg) var(--space-xl);
    margin: var(--space-xl) 0;
    font-family: var(--font-display);
    font-size: 1.25rem;
    line-height: 1.4;
    color: var(--foreground);
    background: rgba(217, 70, 239, 0.03);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.pull-quote cite {
    display: block;
    margin-top: var(--space-md);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-style: normal;
    color: var(--foreground-muted);
}

/* ============================================
   TRUST BADGES
   ============================================ */

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
    margin: var(--space-lg) 0;
}

.trust-badge {
    padding: var(--space-sm) var(--space-lg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    color: #a5b4cd;
    background: var(--background-elevated);
    text-align: center;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-lg) 0;
    font-size: 0.9375rem;
}

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

.comparison-table th {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--foreground);
    background: var(--background-elevated);
}

.comparison-table td {
    color: var(--foreground-muted);
}

.comparison-table .highlight-col {
    background: rgba(217, 70, 239, 0.05);
    border-left: 2px solid var(--accent);
    border-right: 2px solid var(--accent);
}

.comparison-table thead .highlight-col {
    color: var(--accent);
}

/* ============================================
   FOOTER
   Four columns, stacked on mobile
   ============================================ */

.site-footer {
    background: var(--background-elevated);
    border-top: 1px solid var(--border);
    padding: var(--space-2xl) 0 var(--space-xl);
    margin-top: var(--space-2xl);
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

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

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

.footer-heading {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--foreground-muted);
}

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

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.payment-icons li {
    padding: var(--space-xs) var(--space-sm);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    color: #a5b4cd;
    background: var(--muted);
}

.footer-text {
    font-size: 0.8125rem;
    color: #a5b4cd;
    line-height: 1.5;
    margin-bottom: var(--space-sm);
}

/* ============================================
   ANIMATIONS - Scroll-triggered reveal
   ============================================ */

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

/* ============================================
   UTILITIES
   ============================================ */

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-green { color: var(--neon-green); }
.text-muted { color: var(--foreground-muted); }
.font-display { font-family: var(--font-display); }
.mt-lg { margin-top: var(--space-xl); }
.mb-lg { margin-bottom: var(--space-xl); }

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

/* Section heading with neon underline */
.section-heading {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--space-xl);
    position: relative;
    padding-bottom: var(--space-md);
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--gradient-pink-blue);
    border-radius: 2px;
}

@media (min-width: 768px) {
    .section-heading {
        font-size: 2rem;
    }
}

/* Article body text */
.article-body p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--foreground-muted);
    margin-bottom: var(--space-md);
    max-width: 70ch;
}

.article-body a {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-color: rgba(34, 211, 238, 0.3);
}

.article-body a:hover {
    color: var(--accent);
    text-decoration-color: var(--accent);
}

.article-body h2 {
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-lg);
}

.article-body h3 {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    color: var(--primary);
}

.article-body ul {
    list-style: disc;
    padding-left: var(--space-lg);
    margin-bottom: var(--space-md);
}

.article-body ul li {
    color: var(--foreground-muted);
    margin-bottom: var(--space-sm);
}

.article-body strong {
    color: var(--foreground);
}

/* Provider logo strip */
.provider-strip {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
    margin: var(--space-lg) 0;
}

.provider-logo {
    padding: var(--space-sm) var(--space-lg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--background-elevated);
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--neon-green);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.provider-logo:hover {
    border-color: var(--neon-green);
    box-shadow: var(--shadow-neon-green);
}

/* Character illustration containers */
.character-illustration {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    max-width: 250px;
    opacity: 0.85;
}

.character-illustration.left {
    left: -20px;
    bottom: 0;
}

.character-illustration.right {
    right: -20px;
    bottom: 0;
}

@media (min-width: 768px) {
    .character-illustration {
        max-width: 350px;
        opacity: 1;
    }
    .character-illustration.left {
        left: 0;
    }
    .character-illustration.right {
        right: 0;
    }
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    padding: var(--space-md) 0;
    font-size: 0.875rem;
    color: var(--foreground-dim);
}

/* ============================================
   SPORTSBOOK TEASER - Max character section
   ============================================ */
.sportsbook-teaser {
    position: relative;
    background: radial-gradient(ellipse at 70% 50%, rgba(34, 211, 238, 0.08) 0%, transparent 60%);
}

.sportsbook-illustration-wrapper {
    display: flex;
    justify-content: center;
    margin: var(--space-lg) 0;
    position: relative;
}

.sportsbook-max-img {
    max-width: 280px;
    width: 100%;
    height: auto;
    opacity: 0.95;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(34, 211, 238, 0.3));
}

@media (min-width: 768px) {
    .sportsbook-max-img {
        max-width: 400px;
    }
}

@media (min-width: 1024px) {
    .sportsbook-max-img {
        max-width: 450px;
    }
}

.breadcrumb a {
    color: var(--foreground-muted);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb-sep {
    color: var(--foreground-dim);
}

/* Body scroll lock for mobile menu */
body.no-scroll {
    overflow: hidden;
}