/* ============================================
   ROBY CASINO - CYBERPUNK DESIGN SYSTEM
   Dark-first, neon blue / purple / green accents
   Fonts: Orbitron (display) + Rajdhani (body)
   ============================================ */

/* ============================================
   DESIGN TOKENS
   Dark theme is the only theme (no toggle).
   .dark variables kept identical to :root
   for compatibility with scaffold.
   ============================================ */
:root {
    --background: #020617;
    --foreground: #f8fafc;
    --card: #0f172a;
    --card-foreground: #f8fafc;
    --popover: #0f172a;
    --popover-foreground: #f8fafc;
    --primary: #00a2ff;
    --primary-foreground: #020617;
    --secondary: #1e293b;
    --secondary-foreground: #f8fafc;
    --muted: #1e293b;
    --muted-foreground: #a8b8cc;
    --accent: #39ff14;
    --accent-foreground: #020617;
    --destructive: #e30d32;
    --destructive-foreground: #f8fafc;
    --border: #334155;
    --input: #1e293b;
    --ring: #00a2ff;

    /* Extended neon palette */
    --neon-blue: #00a2ff;
    --neon-purple: #a855f7;
    --neon-green: #39ff14;
    --neon-blue-glow: rgba(0, 162, 255, 0.35);
    --neon-purple-glow: rgba(168, 85, 247, 0.35);
    --neon-green-glow: rgba(57, 255, 20, 0.35);
    --obsidian: #0f172a;
    --deep-space: #020617;

    /* Typography */
    --font-display: "Orbitron", sans-serif;
    --font-body: "Rajdhani", 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: 64px;
    --space-4xl: 96px;

    /* Section spacing */
    --section-gap: 56px;
    --section-gap-desktop: 72px;
    --component-pad: 24px;
    --component-pad-desktop: 32px;

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

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

    /* Radii */
    --radius: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

.dark {
    --background: #020617;
    --foreground: #f8fafc;
    --card: #0f172a;
    --card-foreground: #f8fafc;
    --popover: #0f172a;
    --popover-foreground: #f8fafc;
    --primary: #00a2ff;
    --primary-foreground: #020617;
    --secondary: #1e293b;
    --secondary-foreground: #f8fafc;
    --muted: #1e293b;
    --muted-foreground: #a8b8cc;
    --accent: #39ff14;
    --accent-foreground: #020617;
    --destructive: #e30d32;
    --destructive-foreground: #f8fafc;
    --border: #334155;
    --input: #1e293b;
    --ring: #00a2ff;
}

/* ============================================
   OVERFLOW PREVENTION - Safety Net
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

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

[class*="grid"] > *,
[class*="flex"] > * {
    min-width: 0;
}

pre, code, .code-block, [class*="code"] {
    max-width: 100%;
    overflow-x: auto;
}

pre code,
.code-block code {
    display: block;
    min-width: 0;
}

.table-wrapper,
[class*="table-"] {
    max-width: 100%;
    overflow-x: auto;
}

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

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

section {
    overflow: clip;
}

/* ============================================
   RESET & BASE
   ============================================ */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background: var(--background);
    color: var(--foreground);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    margin: 0;
    line-height: 1.2;
    color: var(--foreground);
}

h1 {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 700;
    letter-spacing: 0.02em;
}

h2 {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 600;
    letter-spacing: 0.02em;
}

h3 {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 500;
    letter-spacing: 0.01em;
}

p {
    margin: 0 0 28px 0;
}

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

a:hover {
    color: var(--neon-green);
}

ul, ol {
    margin: 0 0 28px 0;
    padding-left: 24px;
}

li {
    margin-bottom: var(--space-sm);
}

img {
    display: block;
}

/* ============================================
   UTILITY: Skip link
   ============================================ */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--neon-blue);
    color: var(--deep-space);
    padding: var(--space-sm) var(--space-lg);
    font-family: var(--font-body);
    font-weight: 600;
    z-index: 10000;
    transition: top var(--transition);
}

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

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

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

/* ============================================
   SECTION SPACING
   ============================================ */
.section {
    padding-top: var(--section-gap);
    padding-bottom: var(--section-gap);
}

@media (min-width: 1024px) {
    .section {
        padding-top: var(--section-gap-desktop);
        padding-bottom: var(--section-gap-desktop);
    }
}

.section--tight {
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-2xl);
}

/* ============================================
   NEON GRID BACKGROUND
   ============================================ */
.neon-grid-bg {
    position: relative;
    background:
        linear-gradient(rgba(0, 162, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 162, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.neon-grid-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(168, 85, 247, 0.08), transparent 60%);
    pointer-events: none;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(2, 6, 23, 0.95);
    border-bottom: 1px solid var(--border);
}

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

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

.site-brand {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 0.05em;
    text-decoration: none;
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-shrink: 0;
}

.site-brand__text {
    color: var(--foreground);
}

.site-brand__accent {
    color: var(--neon-blue);
    text-shadow: 0 0 12px var(--neon-blue-glow);
}

/* ============================================
   PRIMARY NAVIGATION
   ============================================ */
.primary-nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    height: calc(100vh - var(--header-height));
    background: var(--background);
    z-index: 999;
    overflow-y: auto;
    padding: var(--space-lg);
    flex-direction: column;
}

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

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.nav-list a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: var(--space-sm) var(--space-lg);
    color: var(--foreground);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 18px;
    border-radius: var(--radius);
    border: 1px solid transparent;
    transition: all var(--transition);
}

.nav-list a:hover {
    color: var(--neon-blue);
    border-color: var(--border);
    background: var(--muted);
}

.nav-cta {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border);
}

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

/* Desktop nav */
@media (min-width: 1024px) {
    .primary-nav {
        display: flex;
        position: static;
        flex-direction: row;
        align-items: center;
        gap: var(--space-lg);
        background: transparent;
        padding: 0;
        overflow: visible;
        flex: 1;
        justify-content: center;
        height: auto;
    }

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

    .nav-list a {
        min-height: auto;
        padding: var(--space-xs) var(--space-md);
        font-size: 16px;
    }

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

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

/* ============================================
   MOBILE MENU TOGGLE (Hamburger)
   ============================================ */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
    transition: border-color var(--transition);
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--neon-blue);
    border-radius: 2px;
    transition: all var(--transition);
}

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

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

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 17px;
    padding: 12px 28px;
    min-height: 44px;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition);
    line-height: 1.2;
}

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

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

.btn-accent {
    background: var(--neon-green);
    color: var(--deep-space);
    border-color: var(--neon-green);
    box-shadow: 0 0 20px var(--neon-green-glow);
}

.btn-accent:hover {
    color: var(--deep-space);
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--neon-green-glow);
}

.btn-primary {
    background: var(--neon-blue);
    color: var(--deep-space);
    border-color: var(--neon-blue);
    box-shadow: 0 0 20px var(--neon-blue-glow);
}

.btn-primary:hover {
    color: var(--deep-space);
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--neon-blue-glow);
}

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

.btn-ghost:hover {
    color: var(--neon-blue);
    border-color: var(--neon-blue);
    background: var(--muted);
}

.btn-outline {
    background: transparent;
    color: var(--neon-blue);
    border-color: var(--neon-blue);
}

.btn-outline:hover {
    color: var(--deep-space);
    background: var(--neon-blue);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: clip;
    padding: var(--space-3xl) 0;
}

.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(180deg, rgba(2, 6, 23, 0.7) 0%, rgba(2, 6, 23, 0.85) 50%, var(--background) 100%);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
    width: 100%;
}

@media (min-width: 768px) {
    .hero__content {
        padding: 0 var(--space-xl);
    max-width: 800px;
    text-align: left;
    }
}

.hero__title {
    font-size: clamp(28px, 6vw, 48px);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    text-shadow: 0 0 30px rgba(0, 162, 255, 0.3);
}

.hero__subtitle {
    font-size: clamp(17px, 2.5vw, 21px);
    color: var(--muted-foreground);
    margin-bottom: var(--space-xl);
    max-width: 600px;
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

/* ============================================
   FEATURE CARD GRID
   ============================================ */
.feature-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

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

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

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

.feature-card:hover {
    transform: scale(1.05);
    border-color: var(--neon-blue);
    box-shadow: 0 0 24px var(--neon-blue-glow);
}

.feature-card__image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--muted);
}

.feature-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-card__body {
    padding: var(--component-pad);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.feature-card__title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 20px;
    margin-bottom: var(--space-sm);
    color: var(--foreground);
}

.feature-card__desc {
    color: var(--muted-foreground);
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: var(--space-md);
    flex: 1;
}

.feature-card__link {
    color: var(--neon-blue);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
    align-self: flex-start;
}

.feature-card__link:hover {
    color: var(--neon-green);
    border-bottom-color: var(--neon-green);
}

/* ============================================
   BONUS CHOICE CARDS
   ============================================ */
.bonus-choice {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

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

.bonus-card {
    background: var(--obsidian);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--component-pad);
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    opacity: 0.6;
}

.bonus-card:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 0 24px var(--neon-blue-glow);
    transform: translateY(-4px);
}

.bonus-card__image {
    width: 100%;
    max-width: 200px;
    margin: 0 auto var(--space-lg);
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: var(--radius);
}

.bonus-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bonus-card__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 22px;
    margin-bottom: var(--space-sm);
    color: var(--foreground);
}

.bonus-card__desc {
    color: var(--muted-foreground);
    margin-bottom: var(--space-lg);
    font-size: 17px;
}

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

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-xl);
    }
}

.feature-item {
    background: var(--obsidian);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--component-pad);
    text-align: center;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-item:hover {
    border-color: var(--neon-green);
    box-shadow: 0 0 20px var(--neon-green-glow);
}

.feature-item__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item__icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.feature-item__title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 18px;
    margin-bottom: var(--space-sm);
    color: var(--neon-green);
}

.feature-item__desc {
    color: var(--muted-foreground);
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

/* ============================================
   TOURNAMENTS / VIP SPLIT SECTION
   ============================================ */
.split-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

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

.split-card {
    background: var(--obsidian);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--component-pad);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.split-card--purple {
    border-color: var(--neon-purple);
    box-shadow: 0 0 16px var(--neon-purple-glow);
}

.split-card--blue {
    border-color: var(--neon-blue);
    box-shadow: 0 0 16px var(--neon-blue-glow);
}

.split-card__icon {
    width: 64px;
    height: 64px;
    margin-bottom: var(--space-md);
}

.split-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.split-card__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 22px;
    margin-bottom: var(--space-sm);
}

.split-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.split-card__list li {
    padding-left: 24px;
    position: relative;
    color: var(--muted-foreground);
    margin-bottom: var(--space-sm);
}

.split-card__list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--neon-green);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    position: relative;
    background: linear-gradient(135deg, #0047ff 0%, #5b21b6 50%, #1e293b 100%);
    padding: 56px var(--space-md);
    text-align: center;
    overflow: clip;
}

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

.cta-banner__grid {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

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

.cta-banner__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(24px, 4vw, 36px);
    color: #ffffff;
    margin-bottom: var(--space-md);
    text-shadow: 0 0 20px rgba(0, 162, 255, 0.5);
}

.cta-banner__subtitle {
    color: #cbd5e1;
    font-size: 18px;
    margin-bottom: var(--space-xl);
}

.cta-banner__btn {
    margin-bottom: var(--space-md);
}

.cta-banner__micro {
    color: #94a3b8;
    font-size: 14px;
    margin: 0;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 0 12px var(--neon-blue-glow);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--component-pad);
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 18px;
    color: var(--foreground);
    text-align: left;
    min-height: 44px;
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--neon-blue);
}

.faq-question__text {
    flex: 1;
}

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

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--neon-green);
    transition: transform var(--transition);
}

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

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

.faq-question[aria-expanded="true"] .faq-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
}

.faq-item.is-expanded .faq-answer {
    max-height: 500px;
}

.faq-answer__inner {
    padding: 0 var(--component-pad) var(--component-pad);
}

.faq-answer__inner p {
    margin: 0;
    color: var(--muted-foreground);
    font-size: 17px;
    line-height: 1.6;
}

/* ============================================
   CONTENT TEXT BLOCKS
   ============================================ */
.content-section {
    padding: var(--section-gap) 0;
}

@media (min-width: 1024px) {
    .content-section {
        padding: var(--section-gap-desktop) 0;
    }
}

.content-section__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

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

.content-section h2 {
    margin-bottom: var(--space-lg);
}

.content-section p {
    max-width: 800px;
}

/* ============================================
   CALLOUT / HIGHLIGHT BOX
   ============================================ */
.callout {
    background: var(--obsidian);
    border: 1px solid var(--neon-green);
    border-left: 4px solid var(--neon-green);
    border-radius: var(--radius);
    padding: var(--component-pad);
    margin: var(--space-xl) 0;
    box-shadow: 0 0 16px var(--neon-green-glow);
}

.callout--blue {
    border-color: var(--neon-blue);
    border-left-color: var(--neon-blue);
    box-shadow: 0 0 16px var(--neon-blue-glow);
}

.callout--purple {
    border-color: var(--neon-purple);
    border-left-color: var(--neon-purple);
    box-shadow: 0 0 16px var(--neon-purple-glow);
}

.callout__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 18px;
    margin-bottom: var(--space-sm);
    color: var(--neon-green);
}

.callout--blue .callout__title {
    color: var(--neon-blue);
}

.callout--purple .callout__title {
    color: var(--neon-purple);
}

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

/* ============================================
   SUMMARY / TL;DR BOX
   ============================================ */
.summary-box {
    background: var(--obsidian);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--component-pad);
    margin: var(--space-xl) 0;
}

.summary-box__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
    color: var(--neon-blue);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
}

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

/* ============================================
   STAT HIGHLIGHT
   ============================================ */
.stat-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--component-pad);
}

.stat-highlight__number {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(36px, 6vw, 56px);
    color: var(--neon-blue);
    text-shadow: 0 0 20px var(--neon-blue-glow);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.stat-highlight__label {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 16px;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ============================================
   PULL QUOTE
   ============================================ */
.pull-quote {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(20px, 3vw, 26px);
    line-height: 1.4;
    color: var(--foreground);
    border-left: 4px solid var(--neon-purple);
    padding: var(--space-lg) var(--space-xl);
    margin: var(--space-xl) 0;
    background: var(--obsidian);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.pull-quote__cite {
    display: block;
    margin-top: var(--space-md);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 15px;
    color: var(--muted-foreground);
    font-style: normal;
}

/* ============================================
   STEP-BY-STEP GUIDE
   ============================================ */
.step-guide {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.step-guide__item {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
}

.step-guide__number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--obsidian);
    border: 2px solid var(--neon-green);
    color: var(--neon-green);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 12px var(--neon-green-glow);
}

.step-guide__content h3 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 20px;
    margin-bottom: var(--space-sm);
    color: var(--foreground);
}

.step-guide__content p {
    margin: 0;
    color: var(--muted-foreground);
    font-size: 17px;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-xl) 0;
    background: var(--obsidian);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

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

.comparison-table th {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
    color: var(--foreground);
    background: var(--muted);
}

.comparison-table td {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--muted-foreground);
}

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

.comparison-table .col-highlight {
    background: rgba(0, 162, 255, 0.05);
    border-left: 2px solid var(--neon-blue);
    border-right: 2px solid var(--neon-blue);
}

.comparison-table .col-highlight th {
    color: var(--neon-blue);
    background: rgba(0, 162, 255, 0.1);
}

/* ============================================
   TRUST BADGES ROW
   ============================================ */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    align-items: center;
    justify-content: center;
    padding: var(--space-xl) 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--muted-foreground);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 15px;
}

.trust-badge__icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    opacity: 0.7;
    filter: grayscale(0.3);
}

.trust-badge__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ============================================
   PAYMENT ICONS ROW
   ============================================ */
.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    align-items: center;
    justify-content: center;
    padding: var(--space-xl) 0;
}

.payment-icon {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm) var(--space-md);
    background: var(--obsidian);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    color: var(--muted-foreground);
    transition: all var(--transition);
}

.payment-icon:hover {
    border-color: var(--neon-blue);
    color: var(--foreground);
    box-shadow: 0 0 12px var(--neon-blue-glow);
}

.payment-icon img {
    height: 24px;
    width: auto;
    margin-right: var(--space-sm);
}

/* ============================================
   INLINE SEO LINKS
   ============================================ */
.seo-link {
    color: var(--neon-blue);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 162, 255, 0.4);
    transition: all var(--transition);
}

.seo-link:hover {
    color: var(--neon-green);
    border-bottom-color: var(--neon-green);
}

/* ============================================
   NEON LIST (bullet points with neon styling)
   ============================================ */
.neon-list {
    list-style: none;
    padding: 0;
    margin: var(--space-xl) 0;
}

.neon-list li {
    padding-left: 28px;
    position: relative;
    color: var(--muted-foreground);
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.neon-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--neon-green);
    box-shadow: 0 0 8px var(--neon-green-glow);
}

.neon-list--blue li::before {
    background: var(--neon-blue);
    box-shadow: 0 0 8px var(--neon-blue-glow);
}

.neon-list--purple li::before {
    background: var(--neon-purple);
    box-shadow: 0 0 8px var(--neon-purple-glow);
}

/* ============================================
   TWO-COLUMN CONTENT
   ============================================ */
.two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

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

/* ============================================
   IMAGE BLOCK (inline images within content)
   ============================================ */
.inline-image {
    width: 100%;
    max-width: 400px;
    margin: var(--space-xl) auto;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

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

.inline-image--transparent {
    max-width: 200px;
    aspect-ratio: 1 / 1;
    border: none;
    background: transparent;
}

.inline-image--transparent img {
    object-fit: contain;
}

/* ============================================
   HIGHLIGHT BLOCK (Book of Ra / exclusive title)
   ============================================ */
.highlight-block {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    margin: var(--space-xl) 0;
}

.highlight-block__image {
    width: 100%;
    aspect-ratio: 21 / 9;
    overflow: hidden;
}

.highlight-block__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.highlight-block__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.9) 0%, rgba(2, 6, 23, 0.5) 50%, transparent 100%);
    display: flex;
    align-items: center;
    padding: var(--space-xl);
}

.highlight-block__content {
    max-width: 500px;
}

.highlight-block__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(22px, 3vw, 32px);
    color: var(--neon-green);
    margin-bottom: var(--space-md);
    text-shadow: 0 0 20px var(--neon-green-glow);
}

.highlight-block__text {
    color: #cbd5e1;
    font-size: 17px;
    margin: 0;
}

/* ============================================
   LOGO STRIP (game providers)
   ============================================ */
.logo-strip {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    align-items: center;
    justify-content: center;
    padding: var(--space-xl) 0;
}

.logo-strip__item {
    width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    filter: grayscale(1);
    transition: all var(--transition);
}

.logo-strip__item:hover {
    opacity: 1;
    filter: grayscale(0);
}

.logo-strip__item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* ============================================
   TIMELINE (jackpot types)
   ============================================ */
.timeline {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.timeline__item {
    display: flex;
    gap: var(--space-lg);
    align-items: center;
    background: var(--obsidian);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--component-pad);
    transition: all var(--transition);
}

.timeline__item:hover {
    border-color: var(--neon-green);
    box-shadow: 0 0 16px var(--neon-green-glow);
}

.timeline__icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
}

.timeline__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.timeline__content h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 18px;
    margin-bottom: var(--space-xs);
    color: var(--foreground);
}

.timeline__content p {
    margin: 0;
    color: var(--muted-foreground);
    font-size: 15px;
}

/* ============================================
   SITEMAP PAGE LIST
   ============================================ */
.sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.sitemap-list li {
    margin: 0;
}

.sitemap-list a {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 18px;
    color: var(--neon-blue);
    text-decoration: none;
    display: block;
    margin-bottom: var(--space-sm);
    transition: color var(--transition);
}

.sitemap-list a:hover {
    color: var(--neon-green);
}

.sitemap-list p {
    margin: 0;
    color: var(--muted-foreground);
    font-size: 16px;
    line-height: 1.5;
    max-width: 600px;
}

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

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

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

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

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: var(--space-sm);
    color: var(--muted-foreground);
    font-size: 15px;
}

.footer-links a {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color var(--transition);
}

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

.footer-license {
    color: var(--muted-foreground);
    font-size: 14px;
    margin-bottom: var(--space-sm);
}

.footer-age {
    color: var(--muted-foreground);
    font-size: 14px;
    margin-bottom: var(--space-md);
}

.footer-link {
    color: var(--neon-blue);
    font-size: 15px;
    text-decoration: none;
    transition: color var(--transition);
}

.footer-link:hover {
    color: var(--neon-green);
}

.footer-bottom {
    max-width: var(--max-width);
    margin: var(--space-xl) auto 0;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    color: var(--muted-foreground);
    font-size: 14px;
    margin: 0;
}

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

/* ============================================
   DETAILS / SUMMARY (native accordion styling)
   ============================================ */
details {
    background: var(--obsidian);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: var(--space-sm);
    transition: border-color var(--transition);
}

details:hover {
    border-color: var(--neon-blue);
}

details summary {
    padding: var(--component-pad);
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 18px;
    color: var(--foreground);
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 44px;
}

details summary::-webkit-details-marker {
    display: none;
}

details summary::after {
    content: '+';
    color: var(--neon-green);
    font-size: 24px;
    font-weight: 300;
    transition: transform var(--transition);
}

details[open] summary::after {
    transform: rotate(45deg);
}

details > *:not(summary) {
    padding: 0 var(--component-pad) var(--component-pad);
}

/* ============================================
   RESPONSIVE TYPOGRAPHY ADJUSTMENTS
   ============================================ */
@media (max-width: 767px) {
    body {
        font-size: 16px;
    }

    .hero {
        min-height: 500px;
    }
}

/* ============================================
   ACCESSIBILITY: Focus states
   ============================================ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--neon-blue);
    outline-offset: 2px;
}

/* ============================================
   PRINT
   ============================================ */
@media print {
    .site-header,
    .mobile-menu-toggle,
    .cta-banner,
    .site-footer {
        display: none;
    }

    body {
        background: white;
        color: black;
    }
}
