/* ============================================
   ROBY CASINO - DESIGN SYSTEM
   Cyberpunk VIP aesthetic: dark, neon, glassmorphic
   Fonts: Orbitron (headings) + Rajdhani (body)
   Mobile-first. No theme switcher - dark only.
   ============================================ */

/* ============================================
   DESIGN TOKENS
   Single dark theme - no .dark class needed
   ============================================ */
:root {
    /* Backgrounds */
    --background: #020617;
    --background-alt: #0a0f1f;
    --card: #0f172a;
    --card-alt: #16213e;

    /* Foreground */
    --foreground: #f8fafc;
    --foreground-muted: #94a3b8;
    --foreground-dim: #7b8ba0;

    /* Neon accents */
    --neon-cyan: #22d3ee;
    --neon-cyan-glow: rgba(34, 211, 238, 0.4);
    --neon-blue: #3b82f6;
    --neon-purple: #a855f7;
    --neon-purple-glow: rgba(168, 85, 247, 0.35);
    --neon-green: #4ade80;
    --neon-green-glow: rgba(74, 222, 128, 0.35);

    /* Semantic */
    --primary: #22d3ee;
    --primary-foreground: #020617;
    --secondary: #a855f7;
    --accent: #4ade80;
    --accent-foreground: #020617;
    --muted: #1e293b;
    --muted-foreground: #94a3b8;
    --border: #1e293b;
    --border-light: #334155;
    --destructive: #f43f5e;

    /* Typography */
    --font-heading: "Orbitron", sans-serif;
    --font-body: "Rajdhani", sans-serif;

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

    /* Section gaps */
    --section-gap: 60px;
    --card-padding: 24px;

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

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

    /* Max width */
    --max-width: 1200px;

    /* Header height */
    --header-height: 64px;
}

@media (min-width: 768px) {
    :root {
        --section-gap: 80px;
        --card-padding: 32px;
    }
}

@media (min-width: 1024px) {
    :root {
        --section-gap: 100px;
    }
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
    -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(--neon-cyan);
    text-decoration: none;
    transition: color var(--transition), text-shadow var(--transition);
}

a:hover {
    text-shadow: 0 0 8px var(--neon-cyan-glow);
}

ul, ol {
    list-style: none;
}

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

/* ============================================
   TYPOGRAPHY
   Orbitron for headings, Rajdhani for body
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 32px;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(34, 211, 238, 0.3);
}

h2 {
    font-size: 24px;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(34, 211, 238, 0.2);
}

h3 {
    font-size: 20px;
    font-weight: 600;
}

h4 {
    font-size: 18px;
    font-weight: 600;
}

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

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

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

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

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

.section--tight {
    padding: calc(var(--section-gap) * 0.6) 0;
}

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

/* ============================================
   SKIP LINK
   ============================================ */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--neon-cyan);
    color: var(--background);
    padding: var(--space-sm) var(--space-md);
    font-family: var(--font-heading);
    font-weight: 600;
    z-index: 2000;
    transition: top var(--transition);
}

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

/* ============================================
   HEADER & NAVIGATION
   Sticky bar with neon logo
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(2, 6, 23, 0.92);
    border-bottom: 1px solid var(--border-light);
}

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

/* Brand */
.site-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--foreground);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 20px;
    flex-shrink: 0;
}

.site-brand:hover {
    text-shadow: none;
}

.site-brand__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    color: var(--background);
    font-size: 22px;
    font-weight: 900;
    border-radius: var(--radius-sm);
    box-shadow: 0 0 12px var(--neon-cyan-glow);
    flex-shrink: 0;
}

.site-brand__text {
    letter-spacing: 0.05em;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 10px;
    flex-shrink: 0;
    transition: border-color var(--transition);
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--neon-cyan);
    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 nav - mobile (drawer) */
.primary-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--background);
    border-top: 1px solid var(--border-light);
    display: none;
    flex-direction: column;
    padding: var(--space-lg);
    overflow-y: auto;
    z-index: 999;
}

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

.nav-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: var(--space-xl);
}

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

.nav-link {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: var(--space-sm) 0;
    color: var(--foreground);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0.02em;
}

.nav-link:hover {
    color: var(--neon-cyan);
}

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

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

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

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

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

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

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

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

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

/* ============================================
   BUTTONS
   Neon cyan primary, ghost secondary
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 24px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    text-decoration: none;
}

.btn:hover {
    text-shadow: none;
}

.btn-primary {
    background: var(--neon-cyan);
    color: var(--background);
    box-shadow: 0 0 16px var(--neon-cyan-glow);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 28px var(--neon-cyan-glow), 0 0 48px var(--neon-cyan-glow);
}

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

.btn-ghost:hover {
    background: rgba(34, 211, 238, 0.1);
    box-shadow: 0 0 16px var(--neon-cyan-glow);
}

.btn-large {
    min-height: 56px;
    padding: 14px 40px;
    font-size: 17px;
}

/* ============================================
   HERO SECTION
   Full-bleed with neon grid overlay
   ============================================ */
.hero {
    position: relative;
    overflow: clip;
    padding: calc(var(--section-gap) * 0.8) 0;
    background: linear-gradient(180deg, var(--background) 0%, var(--background-alt) 100%);
}

.hero__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    position: relative;
    z-index: 2;
}

.hero__content {
    max-width: 600px;
}

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

.hero__text {
    font-size: 18px;
    color: var(--foreground-muted);
    margin-bottom: var(--space-xl);
    max-width: 540px;
}

.hero__image {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: 0 0 40px rgba(34, 211, 238, 0.15);
}

.hero__image img {
    width: 100%;
    height: auto;
}

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

@media (min-width: 768px) {
    .hero__inner {
        flex-direction: row;
        align-items: center;
    }
    .hero__content {
        flex: 1 1 55%;
    }
    .hero__image {
        flex: 1 1 40%;
    }
}

/* ============================================
   NEON GRID OVERLAY
   Decorative background pattern
   ============================================ */
.neon-grid {
    position: relative;
    overflow: clip;
}

.neon-grid::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(34, 211, 238, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 211, 238, 0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}

.neon-grid > * {
    position: relative;
    z-index: 1;
}

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

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

.section-heading p {
    color: var(--foreground-muted);
    font-size: 18px;
    max-width: 700px;
}

/* ============================================
   STAT BLOCK
   Large neon green numbers with labels
   ============================================ */
.stat-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    padding: var(--card-padding);
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-md);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--neon-green);
    text-shadow: 0 0 20px var(--neon-green-glow);
    line-height: 1.1;
    margin-bottom: var(--space-xs);
}

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

.stat-source {
    font-size: 12px;
    color: var(--foreground-dim);
    margin-top: var(--space-xs);
}

.stat-block-source {
    font-size: 12px;
    color: var(--foreground-dim);
    margin-top: var(--space-sm);
    text-align: center;
}

@media (min-width: 768px) {
    .stat-block {
        grid-template-columns: repeat(3, 1fr);
    }
    .stat-number {
        font-size: 42px;
    }
}

@media (min-width: 1024px) {
    .stat-block {
        grid-template-columns: repeat(4, 1fr);
    }
    .stat-number {
        font-size: 48px;
    }
}

/* Stat block with 3 items - keep 3 cols on desktop */
.stat-block.three-items {
    grid-template-columns: 1fr;
}

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

/* ============================================
   INFO CARD GRID
   Glassmorphic cards with neon purple borders
   ============================================ */
.info-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.info-card {
    min-width: 0;
    padding: var(--card-padding);
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--neon-purple);
    border-opacity: 0.3;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 0 1px rgba(168, 85, 247, 0.2);
}

.info-card:hover {
    transform: scale(1.03);
    box-shadow: 0 0 24px var(--neon-purple-glow), 0 0 48px rgba(168, 85, 247, 0.15);
}

.info-card__image {
    margin-bottom: var(--space-md);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.info-card__image img {
    width: 100%;
    height: auto;
}

.info-card__icon {
    font-size: 32px;
    margin-bottom: var(--space-md);
    color: var(--neon-cyan);
    line-height: 1;
}

.info-card__title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    letter-spacing: -0.01em;
}

.info-card__text {
    color: var(--foreground-muted);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.info-card__link {
    color: var(--neon-cyan);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

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

/* 2-column variant */
.info-card-grid.cols-2 {
    grid-template-columns: 1fr;
}

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

/* Horizontal scroll variant (for VIP tiers etc.)
   Mobile: single-column stack to avoid viewport overflow.
   Tablet: contained horizontal scroller with snap.
   Desktop: 5-column grid. */
.info-card-grid--scroll {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.info-card-grid--scroll .info-card {
    flex: none;
}

@media (min-width: 768px) {
    .info-card-grid--scroll {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: var(--space-md);
        padding-bottom: var(--space-sm);
        -webkit-overflow-scrolling: touch;
    }

    .info-card-grid--scroll .info-card {
        flex: 0 0 280px;
        scroll-snap-align: start;
    }
}

@media (min-width: 1024px) {
    .info-card-grid--scroll {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        overflow: visible;
    }
    .info-card-grid--scroll .info-card {
        flex: none;
    }
}

/* ============================================
   CALLOUT BOX
   Accent-bordered notice for tips/warnings
   ============================================ */
.callout-box {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    padding: var(--space-lg);
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--neon-green);
    border-radius: var(--radius-md);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.callout-tip {
    border-left-color: var(--neon-green);
    box-shadow: -4px 0 12px var(--neon-green-glow);
}

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

.callout-box__label {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--neon-green);
}

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

.callout-box__content {
    color: var(--foreground-muted);
    font-size: 17px;
    line-height: 1.6;
}

.callout-box__content p {
    margin-bottom: var(--space-sm);
}

.callout-box__content p:last-child {
    margin-bottom: 0;
}

.callout-box__content strong {
    color: var(--foreground);
}

/* ============================================
   FAQ ACCORDION
   Native <details>/<summary> with neon styling
   ============================================ */
.faq-accordion {
    border: 1px solid var(--neon-cyan);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 0 1px rgba(34, 211, 238, 0.3);
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

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

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-lg);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: var(--foreground);
    list-style: none;
    transition: background var(--transition);
}

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

.faq-question:hover {
    background: rgba(34, 211, 238, 0.05);
}

.faq-question__text {
    flex: 1;
    min-width: 0;
}

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

.faq-toggle::before,
.faq-toggle::after {
    content: "";
    position: absolute;
    background: var(--neon-green);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
    box-shadow: 0 0 6px var(--neon-green-glow);
}

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

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

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

.faq-answer {
    padding: 0 var(--space-lg) var(--space-lg);
    color: var(--foreground-muted);
    font-size: 17px;
    line-height: 1.6;
    animation: faqFadeIn var(--transition);
}

.faq-answer p {
    margin-bottom: var(--space-sm);
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

@keyframes faqFadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   CTA BANNER
   Full-bleed conversion section
   ============================================ */
.cta-banner {
    padding: var(--section-gap) var(--space-md);
    text-align: center;
    background: linear-gradient(180deg, var(--background) 0%, #0a0a2e 50%, var(--background) 100%);
}

.cta-banner__inner {
    max-width: 700px;
    margin: 0 auto;
}

.cta-banner__headline {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: var(--space-md);
    text-shadow: 0 0 20px var(--neon-cyan-glow);
    letter-spacing: -0.01em;
}

.cta-banner__subtext {
    color: var(--foreground-muted);
    font-size: 18px;
    margin-bottom: var(--space-xl);
}

.cta-banner__micro {
    font-size: 14px;
    color: var(--foreground-dim);
    margin-top: var(--space-md);
}

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

/* ============================================
   FOOTER
   Multi-column with links, payments, license
   ============================================ */
.site-footer {
    background: var(--background-alt);
    border-top: 1px solid var(--border-light);
    padding: var(--space-2xl) var(--space-md) var(--space-xl);
}

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

.footer-col {
    min-width: 0;
}

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

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

.footer-links a {
    color: var(--foreground-muted);
    font-size: 16px;
    transition: color var(--transition);
}

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

.footer-text {
    color: var(--foreground-muted);
    font-size: 15px;
    margin-bottom: var(--space-sm);
    line-height: 1.5;
}

.footer-18 {
    color: var(--neon-green);
    font-weight: 600;
    font-size: 14px;
    margin-top: var(--space-md);
}

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

.payment-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    background: var(--card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--foreground-muted);
    letter-spacing: 0.03em;
}

.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(--foreground-dim);
    font-size: 14px;
    margin: 0;
}

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

/* ============================================
   ANIMATIONS
   Scroll reveal with staggered delays
   ============================================ */
.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);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.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;
}

.prose {
    max-width: 700px;
}

.prose p {
    margin-bottom: var(--space-md);
    color: var(--foreground-muted);
    font-size: 18px;
    line-height: 1.6;
}

.prose a {
    color: var(--neon-cyan);
    text-decoration: underline;
    text-decoration-color: rgba(34, 211, 238, 0.4);
    text-underline-offset: 3px;
}

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

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

/* ============================================
   PROSE / ARTICLE BODY
   For SEO content paragraphs
   ============================================ */
.article-body {
    max-width: 800px;
    margin: 0 auto;
}

.article-body p {
    color: var(--foreground-muted);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.article-body a {
    color: var(--neon-cyan);
    text-decoration: underline;
    text-decoration-color: rgba(34, 211, 238, 0.4);
    text-underline-offset: 3px;
}

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

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

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

/* ============================================
   PAYMENT STRIP
   Horizontal logo strip
   ============================================ */
.payment-strip {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    align-items: center;
    justify-content: center;
    padding: var(--card-padding);
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--neon-green);
    border-opacity: 0.3;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.payment-strip__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: var(--card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--foreground-muted);
    letter-spacing: 0.03em;
    transition: border-color var(--transition), box-shadow var(--transition);
}

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

/* ============================================
   TRUST / LICENSING BLOCK
   ============================================ */
.trust-block {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    align-items: center;
    padding: var(--space-lg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    background: rgba(15, 23, 42, 0.4);
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--neon-green);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   CRYPTO ICON GRID
   ============================================ */
.crypto-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

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

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

.crypto-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-lg);
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}

.crypto-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--neon-green-glow);
    border-color: var(--neon-green);
}

.crypto-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crypto-card__icon img {
    width: 48px;
    height: 48px;
}

.crypto-card__name {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--foreground);
}

/* ============================================
   TABLES
   ============================================ */
.table-wrapper {
    max-width: 100%;
    overflow-x: auto;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
}

thead {
    background: rgba(34, 211, 238, 0.05);
}

th {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--neon-cyan);
    padding: var(--space-md);
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

td {
    padding: var(--space-md);
    color: var(--foreground-muted);
    border-bottom: 1px solid var(--border);
}

tbody tr:last-child td {
    border-bottom: none;
}

tbody tr:hover {
    background: rgba(34, 211, 238, 0.03);
}

/* ============================================
   PULL QUOTE
   ============================================ */
.pull-quote {
    margin: var(--space-xl) 0;
    padding: var(--space-xl) var(--card-padding);
    border-left: 3px solid var(--neon-purple);
    background: rgba(168, 85, 247, 0.05);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.pull-quote__text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--foreground);
    margin-bottom: var(--space-md);
}

.pull-quote__author {
    font-size: 14px;
    color: var(--foreground-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   SUMMARY / TL;DR BOX
   ============================================ */
.summary-box {
    padding: var(--space-lg);
    background: rgba(34, 211, 238, 0.05);
    border: 1px solid var(--neon-cyan);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-xl);
}

.summary-box__label {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--neon-cyan);
    margin-bottom: var(--space-sm);
}

.summary-box__content {
    color: var(--foreground-muted);
    font-size: 17px;
    line-height: 1.6;
}

/* ============================================
   BADGE / TAG
   ============================================ */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
}

.badge--green {
    background: rgba(74, 222, 128, 0.15);
    color: var(--neon-green);
    border: 1px solid var(--neon-green);
}

.badge--cyan {
    background: rgba(34, 211, 238, 0.15);
    color: var(--neon-cyan);
    border: 1px solid var(--neon-cyan);
}

.badge--purple {
    background: rgba(168, 85, 247, 0.15);
    color: var(--neon-purple);
    border: 1px solid var(--neon-purple);
}

/* ============================================
   CURRENCY BADGES
   ============================================ */
.currency-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    padding: var(--card-padding);
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
}

.currency-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: var(--card);
    border: 1px solid var(--neon-green);
    border-opacity: 0.3;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--foreground);
    letter-spacing: 0.03em;
}

/* ============================================
   HERO BADGE
   Small neon pill above hero headline
   ============================================ */
.hero__badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid var(--neon-cyan);
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--neon-cyan);
    margin-bottom: var(--space-md);
}

/* ============================================
   SPLIT LAYOUT
   Two-column section for previews (live casino etc.)
   ============================================ */
.split-layout {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    align-items: stretch;
}

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

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

.split-layout__media img {
    width: 100%;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.15);
}

@media (min-width: 768px) {
    .split-layout {
        flex-direction: row;
        align-items: center;
    }
}

/* ============================================
   SITEMAP PAGE
   Simple vertical list with carbon-fiber dividers
   ============================================ */
.sitemap-list {
    max-width: 800px;
    margin: 0 auto;
}

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

.sitemap-entry:first-child {
    padding-top: 0;
}

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

.sitemap-entry__title {
    margin-bottom: var(--space-sm);
}

.sitemap-entry__title a {
    color: var(--neon-cyan);
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.01em;
    transition: text-shadow var(--transition);
}

.sitemap-entry__title a:hover {
    text-shadow: 0 0 12px var(--neon-cyan-glow);
}

.sitemap-entry__desc {
    color: var(--foreground-muted);
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .sitemap-entry__title a {
        font-size: 22px;
    }
    .sitemap-entry__desc {
        font-size: 18px;
    }
}

/* ============================================
   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;
        transform: none;
    }
}

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