/* ============================================
   CASOOLA CASINO - DESIGN SYSTEM
   Sci-fi arcade aesthetic: dark canvas, neon
   blue-violet + lime-cyan accents, Orbitron +
   Rajdhani typography, robotic bot-town theme.
   Dark theme only (no light/dark switcher).
   ============================================ */

/* ============================================
   DESIGN TOKENS - Dark theme (permanent)
   ============================================ */

:root {
    --background: #050714;
    --foreground: #f1f5f9;
    --card: #0d111c;
    --card-foreground: #f1f5f9;
    --popover: #0d111c;
    --popover-foreground: #f1f5f9;
    --primary: #8554f6;
    --primary-foreground: #ffffff;
    --secondary: #1e293b;
    --secondary-foreground: #f1f5f9;
    --muted: #334155;
    --muted-foreground: #a0aec0;
    --accent: #00ffd1;
    --accent-foreground: #050714;
    --destructive: #ea1414;
    --destructive-foreground: #ffffff;
    --border: #334155;
    --input: #1e293b;
    --ring: #8554f6;

    /* Extended palette */
    --neon-blue: #4f7cff;
    --neon-violet: #8554f6;
    --neon-cyan: #00ffd1;
    --neon-lime: #aaff00;
    --deep-charcoal: #0d111c;
    --slate-charcoal: #111827;
    --soft-cream: #f1f5f9;
    --blue-gray: #a0aec0;

    /* Typography */
    --font-display: "Orbitron", "Segoe UI", sans-serif;
    --font-body: "Rajdhani", "Segoe UI", sans-serif;

    /* Spacing */
    --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-pad-y: 56px;
    --hero-pad-top: 72px;

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

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

    /* Content width */
    --content-max: 1200px;

    /* Glow */
    --glow-cyan: 0 0 24px rgba(0, 255, 209, 0.25);
    --glow-violet: 0 0 24px rgba(139, 92, 246, 0.25);
}

/* Dark class is permanent on <html> */
.dark {
    --background: #050714;
    --foreground: #f1f5f9;
    --card: #0d111c;
    --card-foreground: #f1f5f9;
    --popover: #0d111c;
    --popover-foreground: #f1f5f9;
    --primary: #8554f6;
    --primary-foreground: #ffffff;
    --secondary: #1e293b;
    --secondary-foreground: #f1f5f9;
    --muted: #334155;
    --muted-foreground: #a0aec0;
    --accent: #00ffd1;
    --accent-foreground: #050714;
    --destructive: #ea1414;
    --destructive-foreground: #ffffff;
    --border: #334155;
    --input: #1e293b;
    --ring: #8554f6;
}

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

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

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

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

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

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

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

ul, ol {
    list-style: none;
}

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

section {
    position: relative;
}

/* ============================================
   TYPOGRAPHY SYSTEM
   Orbitron for display, Rajdhani for body
   ============================================ */

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

h1 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 24px;
    font-weight: 600;
}

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

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

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

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

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

.container-wide {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ============================================
   SECTION SPACING
   ============================================ */

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

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    min-height: 48px;
    line-height: 1.4;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    background: var(--accent);
    color: var(--accent-foreground);
    border-color: var(--accent);
    box-shadow: var(--glow-cyan);
    transform: translateY(-4px);
}

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

.btn-outline:hover {
    background: rgba(0, 255, 209, 0.1);
    box-shadow: var(--glow-cyan);
    transform: translateY(-2px);
}

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

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(5, 7, 20, 0.98);
    border-bottom: 1px solid rgba(79, 124, 255, 0.15);
}

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

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

.site-brand .logo {
    border-radius: var(--radius-sm);
}

.brand-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--foreground);
    letter-spacing: -0.02em;
}

.primary-nav {
    display: none;
    align-items: center;
    gap: var(--space-xl);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-link {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--blue-gray);
    text-decoration: none;
    transition: color var(--transition-fast);
    min-height: 48px;
    display: flex;
    align-items: center;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

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

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-cta-group {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

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

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

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

.burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    transition: all var(--transition-base);
}

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

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

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

.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
}

.mobile-nav-overlay.is-open {
    display: block;
}

/* ============================================
   MOBILE NAV DRAWER
   ============================================ */

.primary-nav.is-open {
    display: flex;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--background);
    z-index: 999;
    overflow-y: auto;
    padding: var(--space-lg);
    gap: var(--space-md);
}

.primary-nav.is-open .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
}

.primary-nav.is-open .nav-link {
    min-height: 48px;
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--muted);
    justify-content: flex-start;
}

.primary-nav.is-open .nav-link::after {
    display: none;
}

.primary-nav.is-open .nav-cta-group {
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-lg);
    width: 100%;
}

.primary-nav.is-open .nav-cta-group .btn {
    width: 100%;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background: var(--deep-charcoal);
    border-top: 1px solid rgba(79, 124, 255, 0.15);
    padding: var(--space-3xl) var(--space-lg) var(--space-xl);
}

.footer-inner {
    max-width: var(--content-max);
    margin: 0 auto;
}

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

.footer-heading {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: var(--space-md);
    letter-spacing: 0.02em;
}

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

.footer-links a {
    font-size: 15px;
    color: var(--blue-gray);
    transition: color var(--transition-fast);
}

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

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

.payment-badge {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 500;
    color: var(--blue-gray);
    background: var(--secondary);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--muted);
    letter-spacing: 0.03em;
}

.license-info, .responsible-gaming {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.license-text {
    font-size: 14px;
    color: var(--blue-gray);
    line-height: 1.5;
    margin: 0;
}

.age-badge {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
    border: 2px solid var(--accent);
    border-radius: var(--radius-sm);
    padding: 2px 10px;
    margin-bottom: var(--space-xs);
}

.footer-disclaimer {
    font-size: 13px;
    color: var(--blue-gray);
    line-height: 1.5;
    margin: 0;
}

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

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

/* ============================================
   HERO SECTIONS
   ============================================ */

.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    padding-top: var(--hero-pad-top);
    padding-bottom: var(--space-3xl);
    overflow: hidden;
}

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

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

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 7, 20, 0.85) 0%, rgba(13, 17, 28, 0.7) 50%, rgba(5, 7, 20, 0.9) 100%);
}

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

.hero h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--soft-cream);
    margin-bottom: var(--space-md);
    max-width: 700px;
}

.hero-highlight {
    color: var(--accent);
    text-shadow: var(--glow-cyan);
}

.hero-subtext {
    font-size: 17px;
    color: var(--blue-gray);
    margin-bottom: var(--space-xl);
    max-width: 600px;
    line-height: 1.6;
}

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

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

/* Neon trail decoration */
.neon-trail {
    position: absolute;
    width: 200%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--primary), transparent);
    opacity: 0.3;
    transform: rotate(-15deg);
    z-index: 0;
    animation: trail-slide 20s linear infinite;
}

@keyframes trail-slide {
    0% { transform: rotate(-15deg) translateX(-50%); }
    100% { transform: rotate(-15deg) translateX(0%); }
}

/* ============================================
   HERO HOME - Racing visual
   ============================================ */

.hero-home {
    min-height: 600px;
}

.hero-home .hero-bg img {
    opacity: 0.45;
}

.hero-home .hero-content {
    padding-top: var(--space-xl);
}

.card-image {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: var(--radius-md);
}

/* ============================================
   CTA BANNER COMPONENT
   ============================================ */

.cta-banner-section {
    position: relative;
    padding: 72px var(--space-lg) 56px;
    background: linear-gradient(135deg, #0d111c 0%, #1a1037 50%, #0d111c 100%);
    overflow: hidden;
    text-align: center;
}

.cta-banner-trail {
    position: absolute;
    top: 50%;
    left: -50%;
    width: 200%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--primary), var(--accent), transparent);
    transform: translateY(-50%) rotate(-8deg);
    animation: trail-slide 20s linear infinite;
    opacity: 0.4;
}

.cta-banner-heading {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--soft-cream);
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
}

.cta-banner-subtext {
    font-size: 17px;
    color: var(--blue-gray);
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

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

.cta-banner-microcopy {
    font-size: 14px;
    color: var(--blue-gray);
    margin-top: var(--space-md);
    position: relative;
    z-index: 1;
}

/* ============================================
   STAT BLOCK COMPONENT
   ============================================ */

.stat-block-section {
    padding: var(--section-pad-y) 0;
}

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

.stat-unit {
    background: var(--card);
    padding: var(--space-xl);
    border-left: 2px solid var(--accent);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(20px);
}

.stat-unit.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.stat-unit:hover {
    transform: scale(1.04);
    box-shadow: var(--glow-cyan);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1.1;
    margin-bottom: var(--space-xs);
}

.stat-label {
    display: block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--blue-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   CALLOUT BOX COMPONENT
   ============================================ */

.callout-box {
    background: var(--card);
    border-left: 2px solid var(--accent);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    box-shadow: inset 4px 0 12px rgba(0, 255, 209, 0.08);
    margin: var(--space-2xl) 0;
}

.callout-icon {
    font-size: 24px;
    color: var(--accent);
    margin-bottom: var(--space-sm);
}

.callout-heading {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--soft-cream);
    margin-bottom: var(--space-sm);
}

.callout-body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--soft-cream);
}

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

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

.callout-body ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: var(--space-sm);
}

.callout-body ul li {
    padding-left: var(--space-lg);
    position: relative;
    margin-bottom: var(--space-xs);
}

.callout-body ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* ============================================
   FAQ ACCORDION COMPONENT
   ============================================ */

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

.faq-item {
    background: var(--card);
    border-left: 2px solid var(--accent);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: box-shadow var(--transition-base);
}

.faq-item[open] {
    box-shadow: var(--glow-cyan);
}

.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-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--soft-cream);
    list-style: none;
    min-height: 44px;
    transition: color var(--transition-fast);
}

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

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

.faq-chevron {
    color: var(--accent);
    flex-shrink: 0;
    transition: transform var(--transition-slow);
    display: flex;
    align-items: center;
}

.faq-item[open] .faq-chevron {
    transform: rotate(180deg);
}

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

.faq-answer p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--soft-cream);
    margin: 0;
}

/* ============================================
   CARD GRID - Generic
   ============================================ */

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

.card {
    background: var(--card);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    border-left: 2px solid var(--accent);
    transition: all var(--transition-base);
    min-width: 0;
}

.card:hover {
    transform: scale(1.04);
    box-shadow: var(--glow-cyan);
}

.card-icon {
    font-size: 28px;
    color: var(--accent);
    margin-bottom: var(--space-md);
}

.card-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--soft-cream);
    margin-bottom: var(--space-sm);
}

.card-text {
    font-size: 16px;
    color: var(--blue-gray);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   TABLE STYLES
   ============================================ */

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

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

thead {
    background: var(--secondary);
}

th {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: var(--space-md) var(--space-lg);
    text-align: left;
    border-bottom: 2px solid var(--accent);
}

td {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--soft-cream);
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid var(--muted);
}

tbody tr:hover {
    background: rgba(0, 255, 209, 0.05);
}

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

/* ============================================
   SPLIT LAYOUT
   ============================================ */

.split-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

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

.split-text p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--blue-gray);
}

.split-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

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

/* ============================================
   SECTION HEADINGS
   ============================================ */

.section-heading {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--soft-cream);
    margin-bottom: var(--space-lg);
    text-align: center;
}

.section-intro {
    font-size: 17px;
    color: var(--blue-gray);
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-xl);
    line-height: 1.6;
}

/* ============================================
   LOGO STRIP
   ============================================ */

.logo-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    padding: var(--space-lg) 0;
}

.logo-strip-item {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--blue-gray);
    opacity: 0.85;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.logo-strip-item:hover {
    color: var(--accent);
    opacity: 1;
    text-shadow: var(--glow-cyan);
}

/* ============================================
   PROSE CONTENT (SEO text sections)
   ============================================ */

.prose-section {
    padding: var(--section-pad-y) 0;
}

.prose-section .container {
    max-width: 800px;
}

.prose-section h2 {
    font-size: 24px;
    margin-bottom: var(--space-lg);
    text-align: center;
}

.prose-section p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--soft-cream);
    margin-bottom: var(--space-md);
}

.prose-section a {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-color: rgba(0, 255, 209, 0.4);
    transition: text-decoration-color var(--transition-fast);
}

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

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

.pull-quote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 22px;
    line-height: 1.5;
    color: var(--soft-cream);
    border-left: 3px solid var(--accent);
    padding: var(--space-lg) var(--space-xl);
    margin: var(--space-xl) 0;
    background: var(--card);
    border-radius: var(--radius-md);
}

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

/* ============================================
   VIP TIER PROGRESSION
   ============================================ */

.vip-progression {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.vip-node {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: var(--card);
    border-left: 2px solid var(--accent);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
}

.vip-badge {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--secondary);
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    flex-shrink: 0;
}

.vip-info h3 {
    color: var(--soft-cream);
    margin-bottom: var(--space-xs);
}

.vip-info p {
    font-size: 14px;
    color: var(--blue-gray);
    margin: 0;
}

/* ============================================
   GAME CARD
   ============================================ */

.game-card {
    background: var(--card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border-left: 2px solid var(--accent);
    transition: all var(--transition-base);
    min-width: 0;
}

.game-card:hover {
    transform: scale(1.04);
    box-shadow: var(--glow-cyan);
}

.game-card-image {
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

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

.game-card-body {
    padding: var(--space-lg);
}

.game-card-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--soft-cream);
    margin-bottom: var(--space-xs);
}

.game-card-meta {
    font-size: 14px;
    color: var(--blue-gray);
    margin-bottom: var(--space-sm);
}

.rtp-badge {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    background: rgba(0, 255, 209, 0.1);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
}

/* ============================================
   DEPOSIT STAGE CARD
   ============================================ */

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

.deposit-stage-card {
    background: var(--card);
    border-left: 2px solid var(--accent);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-base);
    min-width: 0;
}

.deposit-stage-card:hover {
    transform: scale(1.04);
    box-shadow: var(--glow-cyan);
}

.stage-number {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: var(--space-sm);
}

.stage-amount {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--soft-cream);
    margin-bottom: var(--space-sm);
}

.stage-code {
    font-family: monospace;
    font-size: 14px;
    color: var(--accent);
    background: var(--secondary);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    display: inline-block;
}

/* ============================================
   PROMOTION CARD
   ============================================ */

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

.promo-card {
    background: var(--card);
    border-left: 2px solid var(--accent);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    transition: all var(--transition-base);
    min-width: 0;
}

.promo-card:hover {
    transform: scale(1.04);
    box-shadow: var(--glow-cyan);
}

.promo-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--soft-cream);
    margin-bottom: var(--space-xs);
}

.promo-value {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: var(--space-sm);
}

.promo-desc {
    font-size: 16px;
    color: var(--blue-gray);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   TIMELINE (Free Spins)
   ============================================ */

.timeline {
    position: relative;
    padding-left: var(--space-xl);
}

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent);
    opacity: 0.4;
}

.timeline-node {
    position: relative;
    padding-bottom: var(--space-lg);
}

.timeline-node::before {
    content: '';
    position: absolute;
    left: -28px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: var(--glow-cyan);
}

.timeline-day {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: var(--space-xs);
}

.timeline-text {
    font-size: 15px;
    color: var(--blue-gray);
}

/* ============================================
   PAYMENT METHOD CARD
   ============================================ */

.payment-card {
    background: var(--card);
    border-left: 2px solid var(--accent);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    transition: all var(--transition-base);
    min-width: 0;
    text-align: center;
}

.payment-card:hover {
    box-shadow: var(--glow-cyan);
}

.payment-card-name {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--soft-cream);
    margin-bottom: var(--space-xs);
}

.payment-card-meta {
    font-size: 14px;
    color: var(--blue-gray);
    margin: 0;
}

/* ============================================
   SECURITY FEATURE CARD
   ============================================ */

.security-card {
    background: var(--card);
    border-left: 2px solid var(--accent);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    transition: all var(--transition-base);
    min-width: 0;
}

.security-card:hover {
    box-shadow: var(--glow-cyan);
}

.security-icon {
    font-size: 28px;
    color: var(--accent);
    margin-bottom: var(--space-md);
}

.security-name {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--soft-cream);
    margin-bottom: var(--space-sm);
}

.security-desc {
    font-size: 16px;
    color: var(--blue-gray);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   SITEMAP PAGE
   ============================================ */

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

.sitemap-card {
    background: var(--card);
    border-left: 2px solid var(--accent);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    transition: all var(--transition-base);
}

.sitemap-card:hover {
    box-shadow: var(--glow-cyan);
}

.sitemap-card a {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--soft-cream);
    display: block;
    margin-bottom: var(--space-sm);
}

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

.sitemap-card p {
    font-size: 16px;
    color: var(--blue-gray);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   ANIMATIONS - Scroll Reveal
   ============================================ */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

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

/* ============================================
   RESPONSIVE - Tablet (≥768px)
   ============================================ */

@media (min-width: 768px) {
    :root {
        --section-gap: 72px;
        --section-pad-y: 72px;
        --hero-pad-top: 96px;
    }

    h1 { font-size: 36px; }
    h2 { font-size: 28px; }
    h3 { font-size: 22px; }
    h4 { font-size: 20px; }

    .hero h1 { font-size: 36px; }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }

    .stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-banner-section {
        padding: 96px var(--space-lg) 72px;
    }

    .cta-banner-heading {
        font-size: 32px;
    }

    .split-layout {
        grid-template-columns: 1fr 1fr;
    }

    .sitemap-list {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   RESPONSIVE - Desktop (≥1024px)
   ============================================ */

@media (min-width: 1024px) {
    :root {
        --section-gap: 96px;
        --section-pad-y: 96px;
        --hero-pad-top: 120px;
    }

    h1 { font-size: 48px; }
    h2 { font-size: 36px; }
    h3 { font-size: 28px; }
    h4 { font-size: 22px; }

    .hero h1 { font-size: 48px; }
    .hero-subtext { font-size: 18px; }

    .primary-nav {
        display: flex;
    }

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

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .stat-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .card-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .card-grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .card-grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }

    .card-grid-6 {
        grid-template-columns: repeat(3, 1fr);
    }

    .cta-banner-heading {
        font-size: 36px;
    }

    .section-heading {
        font-size: 36px;
    }

    .prose-section h2 {
        font-size: 36px;
    }

    .deposit-stage-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .promo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vip-progression {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }

    .vip-node {
        flex-direction: column;
        text-align: center;
        flex: 1;
    }

    .payment-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .security-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   RESPONSIVE - Large Desktop (≥1280px)
   ============================================ */

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

/* ============================================
   ACCESSIBILITY
   ============================================ */

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

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

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

/* ============================================
   PRINT
   ============================================ */

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

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