/* ============================================
   CASINOLAB CASINO - DESIGN SYSTEM
   Anime-Manga Laboratory Aesthetic
   Mobile-first, dark theme only
   ============================================ */

/* ============================================
   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 {
    max-width: 100%;
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--card);
}

p, li, td, th { overflow-wrap: break-word; }
input, textarea, select { max-width: 100%; }
section { overflow: clip; }

/* ============================================
   BASE & TYPOGRAPHY
   Bebas Neue for headings, Rajdhani for body
   ============================================ */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background: var(--background);
    color: var(--foreground);
    font-family: "Rajdhani", system-ui, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    font-weight: 400;
    min-height: 100vh;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 12% 8%, rgba(163, 255, 61, 0.08) 0%, transparent 38%),
        radial-gradient(circle at 88% 92%, rgba(94, 224, 255, 0.08) 0%, transparent 42%),
        linear-gradient(180deg, #08081a 0%, #0a0a24 100%);
    background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Bebas Neue", "Rajdhani", sans-serif;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.1;
    margin: 0 0 0.6em;
    color: var(--foreground);
    text-transform: uppercase;
}

h1 { font-size: clamp(2rem, 5vw + 0.5rem, 2.75rem); }
h2 { font-size: clamp(1.5rem, 3.5vw + 0.4rem, 2.125rem); letter-spacing: 0.03em; }
h3 { font-size: clamp(1.25rem, 2vw + 0.4rem, 1.5rem); }
h4 { font-size: 1.125rem; letter-spacing: 0.05em; }

p { margin: 0 0 1.25rem; }

a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 280ms cubic-bezier(0.4, 0, 0.2, 1);
}
a:hover, a:focus-visible { color: var(--primary); }

a:focus-visible, button:focus-visible, summary:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
    border-radius: 4px;
}

::selection { background: var(--primary); color: var(--primary-foreground); }

strong { color: var(--foreground); font-weight: 700; }

/* Skip link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 8px;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 12px 20px;
    z-index: 2000;
    font-weight: 700;
    border-radius: 8px;
}
.skip-link:focus { top: 8px; }

/* ============================================
   LAYOUT - Container & Sections
   Max content width 1240px, 96px desktop / 56px mobile section gaps
   ============================================ */
.container {
    width: 100%;
    max-width: 1240px;
    margin-inline: auto;
    padding-inline: clamp(1rem, 3vw, 1.5rem);
}

.section {
    padding-block: clamp(3.5rem, 7vw, 6rem);
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 0.5em;
    color: var(--foreground);
    text-shadow: 0 0 14px rgba(163, 255, 61, 0.35);
}

.section-lead {
    text-align: center;
    color: var(--muted-foreground);
    max-width: 720px;
    margin: 0 auto 2.5rem;
    font-size: 1.0625rem;
}

.eyebrow {
    display: inline-block;
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
    font-size: 0.8125rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.75rem;
    padding: 0.35rem 0.85rem;
    border: 1px solid rgba(163, 255, 61, 0.4);
    border-radius: 999px;
    background: rgba(163, 255, 61, 0.05);
}

/* ============================================
   FALLING CRYSTAL PARTICLES - site-wide background
   ============================================ */
.crystals-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.crystal {
    position: absolute;
    top: -20px;
    width: 10px;
    height: 18px;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    clip-path: polygon(50% 0, 100% 35%, 80% 100%, 20% 100%, 0 35%);
    opacity: 0.45;
    animation: crystalFall 14s linear infinite;
    filter: drop-shadow(0 0 6px rgba(163, 255, 61, 0.6));
}
.c1 { left: 8%; animation-delay: 0s; animation-duration: 16s; }
.c2 { left: 22%; animation-delay: 3s; animation-duration: 12s; background: linear-gradient(180deg, var(--secondary), var(--primary)); }
.c3 { left: 36%; animation-delay: 6s; animation-duration: 18s; }
.c4 { left: 50%; animation-delay: 1.5s; animation-duration: 14s; background: linear-gradient(180deg, var(--accent), var(--primary)); }
.c5 { left: 64%; animation-delay: 8s; animation-duration: 13s; }
.c6 { left: 78%; animation-delay: 4s; animation-duration: 17s; background: linear-gradient(180deg, var(--secondary), var(--accent)); }
.c7 { left: 88%; animation-delay: 10s; animation-duration: 15s; }
.c8 { left: 95%; animation-delay: 2s; animation-duration: 19s; }

@keyframes crystalFall {
    0% { transform: translateY(-20px) rotate(0deg); opacity: 0; }
    10% { opacity: 0.45; }
    90% { opacity: 0.45; }
    100% { transform: translateY(110vh) rotate(360deg); opacity: 0; }
}

main, .site-header, .site-footer { position: relative; z-index: 1; }

/* ============================================
   HEADER - Fixed, neon-accented
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(8, 8, 26, 0.92);
    border-bottom: 1px solid rgba(163, 255, 61, 0.25);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4), 0 1px 0 rgba(163, 255, 61, 0.18);
}
@media (min-width: 1024px) {
    .site-header {
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
}

.header-inner {
    max-width: 1240px;
    margin-inline: auto;
    padding: 12px clamp(1rem, 3vw, 1.5rem);
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--foreground);
    flex-shrink: 0;
}
.brand .logo {
    border-radius: 10px;
    box-shadow: 0 0 18px rgba(163, 255, 61, 0.4);
    background: var(--card);
    padding: 4px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    color: var(--foreground);
}
.brand-sub {
    font-size: 0.7rem;
    color: var(--primary);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Burger toggle */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    border: 1px solid var(--border);
    background: var(--card);
    border-radius: 10px;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}
.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1), opacity 280ms;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.main-nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--background);
    z-index: 999;
    padding: 1.5rem clamp(1rem, 3vw, 1.5rem) 2rem;
    overflow-y: auto;
    flex-direction: column;
    gap: 1.5rem;
}
.main-nav.is-open { display: flex; }

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
}
.nav-link {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 0 1rem;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.375rem;
    letter-spacing: 0.06em;
    color: var(--foreground);
    border-bottom: 1px solid var(--border);
    text-transform: uppercase;
}
.nav-link:hover, .nav-link:focus-visible {
    color: var(--primary);
    background: rgba(163, 255, 61, 0.05);
}

.nav-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

/* Desktop nav */
@media (min-width: 1024px) {
    .menu-toggle { display: none; }
    .main-nav {
        display: flex;
        position: static;
        background: transparent;
        flex-direction: row;
        align-items: center;
        gap: 1.5rem;
        padding: 0;
        overflow: visible;
        flex: 1;
        justify-content: flex-end;
    }
    .nav-list {
        flex-direction: row;
        gap: 1.25rem;
    }
    .nav-link {
        min-height: auto;
        padding: 0.5rem 0;
        font-size: 1rem;
        border: none;
        position: relative;
    }
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--primary);
        transform: scaleX(0);
        transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 0 10px var(--primary);
    }
    .nav-link:hover::after, .nav-link:focus-visible::after { transform: scaleX(1); }
    .nav-cta {
        flex-direction: row;
        margin: 0;
    }
}

/* ============================================
   BUTTONS - primary, ghost, sizes
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 48px;
    padding: 0 1.5rem;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.125rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 12px;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1),
                background 280ms;
    white-space: nowrap;
    min-width: 0;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #7bff10);
    color: var(--primary-foreground);
    box-shadow: 0 0 0 rgba(163, 255, 61, 0), 0 8px 24px rgba(163, 255, 61, 0.25);
    animation: pulseGlow 2.4s ease-in-out infinite;
}
.btn-primary:hover, .btn-primary:focus-visible {
    transform: translateY(-2px);
    box-shadow: var(--neon-glow), 0 12px 32px rgba(163, 255, 61, 0.4);
    color: var(--primary-foreground);
}

.btn-ghost {
    background: transparent;
    color: var(--foreground);
    border-color: var(--border);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: var(--neon-glow);
}

.btn-secondary {
    background: rgba(94, 224, 255, 0.1);
    color: var(--secondary);
    border-color: var(--secondary);
}
.btn-secondary:hover { box-shadow: var(--cyan-glow); }

.btn-xl {
    height: 56px;
    padding: 0 2rem;
    font-size: 1.25rem;
}

.btn-block { width: 100%; }

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 rgba(163, 255, 61, 0), 0 8px 24px rgba(163, 255, 61, 0.25); }
    50% { box-shadow: 0 0 22px rgba(163, 255, 61, 0.55), 0 8px 28px rgba(163, 255, 61, 0.45); }
}

/* ============================================
   HERO - Page heroes with Professor scenes
   ============================================ */
.hero {
    position: relative;
    padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5rem);
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(115deg,
            transparent 0,
            transparent 80px,
            rgba(163, 255, 61, 0.04) 80px,
            rgba(163, 255, 61, 0.04) 82px);
    pointer-events: none;
}
.hero-inner {
    position: relative;
    display: grid;
    gap: 2rem;
    align-items: center;
}
@media (min-width: 900px) {
    .hero-inner { grid-template-columns: 1.05fr 1fr; gap: 3rem; }
}
.hero-title {
    font-size: clamp(2.25rem, 6vw + 0.5rem, 3.75rem);
    line-height: 1.05;
    text-shadow: 0 0 20px rgba(163, 255, 61, 0.5);
    margin-bottom: 1rem;
}
.hero-title .hl {
    color: var(--primary);
    display: inline-block;
}
.hero-sub {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 1.75rem;
    max-width: 560px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}
.hero-trust span::before {
    content: '⚗';
    color: var(--primary);
    margin-right: 6px;
}
.hero-media {
    position: relative;
    text-align: center;
}
.hero-media img {
    max-width: 100%;
    filter: drop-shadow(0 20px 40px rgba(163, 255, 61, 0.25));
}
.hero-badge {
    position: absolute;
    top: -10px;
    right: 5%;
    background: var(--accent);
    color: var(--accent-foreground);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.1em;
    box-shadow: var(--gold-glow);
    transform: rotate(8deg);
    z-index: 2;
}

/* ============================================
   GAME CARD - Slot/Live game grid item
   Hex neon border, hover lift + glow
   ============================================ */
.game-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
@media (min-width: 640px) { .game-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .game-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; } }

.game-card {
    position: relative;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1),
                border-color 280ms;
    min-width: 0;
}
.game-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(163, 255, 61, 0.4), rgba(94, 224, 255, 0.25), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}
.game-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--neon-glow);
    border-color: var(--primary);
}
.game-card-media {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--muted);
}
.game-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
}
.game-card:hover .game-thumb { transform: scale(1.05); }
.game-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(8, 8, 26, 0.85));
    pointer-events: none;
}
.game-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent);
    color: var(--accent-foreground);
    font-family: "Bebas Neue", sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    padding: 4px 10px;
    border-radius: 8px;
    z-index: 2;
    box-shadow: var(--gold-glow);
}
.badge-neu, .badge-new { background: var(--secondary); }
.badge-mega { background: var(--primary); color: var(--primary-foreground); }
.game-card-body {
    padding: 14px 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.game-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.25rem;
    letter-spacing: 0.04em;
    margin: 0;
    color: var(--foreground);
}
.game-meta {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.game-rtp { color: var(--primary); font-weight: 600; }
.btn-game {
    margin-top: 6px;
    height: 44px;
    font-size: 1rem;
}

/* ============================================
   BONUS CARD - promo card with giant amount
   ============================================ */
.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 768px) { .bonus-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .bonus-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.bonus-card {
    position: relative;
    background: linear-gradient(160deg, var(--card) 0%, #0f0f24 100%);
    border: 1px solid rgba(255, 182, 39, 0.35);
    border-radius: 18px;
    padding: 28px 22px 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 280ms,
                border-color 280ms;
    min-width: 0;
}
.bonus-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: var(--gold-glow), 0 20px 40px rgba(0, 0, 0, 0.4);
}
.bonus-card-bg {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255, 182, 39, 0.18), transparent 70%);
    pointer-events: none;
}
.bonus-flask {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(163, 255, 61, 0.12);
    border: 1px solid rgba(163, 255, 61, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 16px;
}
.bonus-title {
    font-size: 1.375rem;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}
.bonus-amount {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(3rem, 9vw, 4.5rem);
    line-height: 1;
    color: var(--primary);
    letter-spacing: 0.01em;
    text-shadow: 0 0 24px rgba(163, 255, 61, 0.55);
    margin: 6px 0 10px;
}
.bonus-sub {
    font-size: 1.0625rem;
    color: var(--foreground);
    margin: 0 0 1rem;
    font-weight: 500;
}
.bonus-conditions {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.bonus-conditions li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9375rem;
    color: var(--muted-foreground);
}
.bonus-conditions .check {
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(163, 255, 61, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    margin-top: 2px;
}
.btn-bonus {
    width: 100%;
    height: 56px;
    font-size: 1.125rem;
}
.bonus-micro {
    margin: 10px 0 0;
    font-size: 0.75rem;
    color: var(--muted-foreground);
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

/* ============================================
   PROVIDER CARD - anime mascot tile
   ============================================ */
.provider-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
@media (min-width: 768px) { .provider-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .provider-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; } }

.provider-card {
    position: relative;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px 16px 18px;
    text-align: center;
    overflow: hidden;
    transition: transform 280ms, box-shadow 280ms, border-color 280ms;
    min-width: 0;
}
.provider-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--neon-glow);
}
.provider-speedlines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(105deg,
        transparent 0,
        transparent 40px,
        rgba(94, 224, 255, 0.06) 40px,
        rgba(94, 224, 255, 0.06) 41px);
    pointer-events: none;
}
.provider-media {
    position: relative;
    margin: 0 auto 14px;
    width: 100%;
    max-width: 180px;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(163, 255, 61, 0.08), rgba(94, 224, 255, 0.08));
}
.provider-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
}
.provider-card:hover .provider-media img { transform: scale(1.06); }
.provider-name {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.5rem;
    margin: 0 0 0.25rem;
    color: var(--foreground);
    position: relative;
}
.provider-tag {
    color: var(--secondary);
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 0.25rem;
    position: relative;
}
.provider-games {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9375rem;
    margin: 0;
    position: relative;
}

/* ============================================
   FAQ ACCORDION - details/summary
   ============================================ */
.faq-section {
    position: relative;
    max-width: 880px;
    margin-inline: auto;
    padding: clamp(2rem, 5vw, 3rem) 0;
}
.faq-heading { margin-bottom: 2rem; }
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 280ms, box-shadow 280ms;
}
.faq-item[open] {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px rgba(163, 255, 61, 0.25), -3px 0 0 0 var(--primary);
}
.faq-question {
    list-style: none;
    cursor: pointer;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: "Rajdhani", sans-serif;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--foreground);
    user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-flask {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(163, 255, 61, 0.12);
    border: 1px solid rgba(163, 255, 61, 0.35);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.faq-q-text { flex: 1; }
.faq-toggle {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(163, 255, 61, 0.1);
    border: 1px solid var(--primary);
    position: relative;
    transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-toggle::before, .faq-toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--primary);
    border-radius: 2px;
    transition: transform 280ms;
}
.faq-toggle::before { width: 12px; height: 2px; transform: translate(-50%, -50%); }
.faq-toggle::after { width: 2px; height: 12px; transform: translate(-50%, -50%); }
.faq-item[open] .faq-toggle::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-answer {
    padding: 0 20px 20px 66px;
    color: var(--muted-foreground);
    font-size: 1.0625rem;
    line-height: 1.65;
    animation: fadeInFaq 280ms ease;
}
.faq-answer p:last-child { margin-bottom: 0; }
@keyframes fadeInFaq {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   STAT BLOCK - Big numbers with hex frames
   ============================================ */
.stat-block { padding: clamp(2rem, 4vw, 3rem) 0; }
.stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
@media (min-width: 768px) { .stat-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; } }
.stat-cell {
    position: relative;
    background: var(--card);
    border: 1px solid rgba(163, 255, 61, 0.35);
    border-radius: 14px;
    padding: 22px 16px 18px;
    text-align: center;
    overflow: hidden;
    transition: transform 280ms, box-shadow 280ms;
}
.stat-cell:hover { transform: translateY(-3px); box-shadow: var(--neon-glow); }
.stat-cell::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 50px; height: 50px;
    background: radial-gradient(circle at top right, rgba(163, 255, 61, 0.18), transparent 70%);
}
.stat-icon {
    display: inline-block;
    color: var(--accent);
    font-size: 1.25rem;
    margin-bottom: 8px;
}
.stat-number {
    display: block;
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(2.75rem, 8vw, 4.5rem);
    line-height: 1;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(163, 255, 61, 0.55);
    margin-bottom: 6px;
    animation: numberPulse 3s ease-in-out infinite;
}
.stat-label {
    display: block;
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.16em;
}
@keyframes numberPulse {
    0%, 100% { text-shadow: 0 0 18px rgba(163, 255, 61, 0.45); }
    50% { text-shadow: 0 0 28px rgba(163, 255, 61, 0.75); }
}

/* ============================================
   CTA BANNER - Full-bleed conversion section
   ============================================ */
.cta-banner {
    position: relative;
    background: linear-gradient(135deg, #0d0d2c 0%, #161645 50%, #0d0d2c 100%);
    border-block: 1px solid rgba(163, 255, 61, 0.3);
    overflow: hidden;
    padding-block: clamp(3rem, 6vw, 4.5rem);
    margin-block: clamp(2.5rem, 5vw, 4rem);
}
.cta-speedlines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(115deg,
        transparent 0,
        transparent 100px,
        rgba(163, 255, 61, 0.06) 100px,
        rgba(163, 255, 61, 0.06) 102px);
    pointer-events: none;
}
.cta-inner {
    position: relative;
    max-width: 1240px;
    margin-inline: auto;
    padding-inline: clamp(1rem, 3vw, 1.5rem);
    display: grid;
    gap: 1.5rem;
    align-items: center;
}
@media (min-width: 900px) {
    .cta-inner { grid-template-columns: 0.9fr 1.1fr; gap: 2.5rem; }
}
.cta-media {
    text-align: center;
    order: -1;
}
@media (min-width: 900px) { .cta-media { order: 0; } }
.cta-media img {
    max-width: 360px;
    width: 100%;
    filter: drop-shadow(0 16px 32px rgba(163, 255, 61, 0.3));
}
.cta-title {
    font-size: clamp(1.875rem, 4.5vw, 2.75rem);
    color: var(--foreground);
    text-shadow: 0 0 18px rgba(163, 255, 61, 0.5);
    margin-bottom: 0.75rem;
}
.cta-sub {
    color: var(--muted-foreground);
    font-size: 1.0625rem;
    margin-bottom: 1.5rem;
    max-width: 520px;
}
.cta-micro {
    margin: 12px 0 0;
    font-size: 0.75rem;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

/* ============================================
   CONTENT PATTERNS - Engagement & CRO
   ============================================ */

/* TL;DR summary box */
.summary-box {
    background: linear-gradient(135deg, rgba(163, 255, 61, 0.08), rgba(94, 224, 255, 0.05));
    border: 1px solid rgba(163, 255, 61, 0.4);
    border-left: 4px solid var(--primary);
    border-radius: 14px;
    padding: 20px 24px;
    margin: 1.5rem 0 2rem;
}
.summary-box h3, .summary-box .summary-label {
    color: var(--primary);
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.12em;
    font-size: 1rem;
    margin: 0 0 0.5rem;
    text-transform: uppercase;
}
.summary-box p:last-child { margin-bottom: 0; }
.summary-box ul {
    margin: 0;
    padding-left: 1.25rem;
}
.summary-box li { margin-bottom: 0.5rem; }

/* Callout / tip / warning */
.callout {
    border-radius: 14px;
    padding: 18px 22px;
    margin: 1.5rem 0;
    background: var(--card);
    border-left: 4px solid var(--secondary);
    position: relative;
}
.callout-tip { border-left-color: var(--primary); background: rgba(163, 255, 61, 0.06); }
.callout-warning { border-left-color: var(--accent); background: rgba(255, 182, 39, 0.06); }
.callout-strong { border-left-color: var(--destructive); background: rgba(244, 63, 94, 0.06); }
.callout-label {
    display: inline-block;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.14em;
    color: var(--primary);
    font-size: 0.875rem;
    margin-bottom: 0.4rem;
}
.callout-warning .callout-label { color: var(--accent); }
.callout p:last-child { margin-bottom: 0; }

/* Pull quote */
.pull-quote {
    margin: 2rem 0;
    padding: 20px 24px 20px 28px;
    border-left: 4px solid var(--primary);
    background: rgba(163, 255, 61, 0.04);
    border-radius: 0 14px 14px 0;
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    line-height: 1.3;
    color: var(--foreground);
    letter-spacing: 0.02em;
}
.pull-quote cite {
    display: block;
    margin-top: 0.75rem;
    font-family: "Rajdhani", sans-serif;
    font-size: 0.875rem;
    font-style: normal;
    color: var(--muted-foreground);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* Inline stat highlight */
.stat-highlight {
    display: inline-flex;
    flex-direction: column;
    padding: 16px 20px;
    background: var(--card);
    border: 1px solid var(--primary);
    border-radius: 14px;
    margin: 0.5rem 0.5rem 0.5rem 0;
}
.stat-highlight strong {
    font-family: "Bebas Neue", sans-serif;
    font-size: 2rem;
    color: var(--primary);
    line-height: 1;
}
.stat-highlight span {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 4px;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    font-size: 0.9375rem;
}
.table-wrapper table { border: none; }
th, td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}
th {
    background: rgba(163, 255, 61, 0.08);
    color: var(--primary);
    font-family: "Bebas Neue", sans-serif;
    font-size: 0.9375rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 400;
}
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover { background: rgba(163, 255, 61, 0.04); }
td strong { color: var(--foreground); }
.table-highlight { background: rgba(163, 255, 61, 0.06); }
.table-highlight td:first-child { border-left: 3px solid var(--primary); }

/* Lists */
.content ul, .content ol { padding-left: 1.5rem; margin-bottom: 1.5rem; }
.content li { margin-bottom: 0.5rem; }
.check-list { list-style: none; padding: 0; }
.check-list li {
    padding-left: 1.75rem;
    position: relative;
}
.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-weight: 700;
}

/* Trust badges row */
.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 0;
    margin: 1.5rem 0;
    border-block: 1px solid var(--border);
}
.trust-row span {
    color: var(--muted-foreground);
    font-size: 0.8125rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--card);
}

/* Two-column content */
.two-col {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}
@media (min-width: 900px) { .two-col { grid-template-columns: 1.2fr 0.8fr; } }
.two-col .col-media img { border-radius: 16px; }

/* SEO text block */
.seo-text {
    max-width: 880px;
    margin-inline: auto;
    font-size: 1rem;
    color: var(--muted-foreground);
}
.seo-text h2, .seo-text h3 { color: var(--foreground); margin-top: 2rem; }
.seo-text h2:first-child { margin-top: 0; }
.seo-text strong { color: var(--foreground); }

/* Internal link cards (page interlinking) */
.interlink-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
@media (min-width: 640px) { .interlink-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .interlink-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.interlink-card {
    display: block;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px;
    text-decoration: none;
    color: var(--foreground);
    transition: transform 280ms, border-color 280ms, box-shadow 280ms;
}
.interlink-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--neon-glow);
    color: var(--foreground);
}
.interlink-card h3 {
    font-size: 1.25rem;
    margin: 0 0 0.5rem;
    color: var(--foreground);
}
.interlink-card p {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    margin: 0 0 0.75rem;
}
.interlink-card .arrow {
    color: var(--primary);
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.1em;
}

/* Category tabs / chips */
.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 1.5rem 0;
    justify-content: center;
}
.chip {
    display: inline-flex;
    align-items: center;
    height: 40px;
    padding: 0 18px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--foreground);
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.1em;
    font-size: 0.95rem;
    transition: all 280ms;
    cursor: pointer;
}
.chip:hover, .chip.is-active {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(163, 255, 61, 0.08);
    box-shadow: var(--neon-glow);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: linear-gradient(180deg, #07071a 0%, #050514 100%);
    border-top: 1px solid rgba(163, 255, 61, 0.2);
    padding: clamp(2.5rem, 5vw, 4rem) 0 1.5rem;
    margin-top: 4rem;
}
.footer-inner {
    max-width: 1240px;
    margin-inline: auto;
    padding-inline: clamp(1rem, 3vw, 1.5rem);
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}
@media (min-width: 640px) { .footer-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .footer-inner { grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 2.5rem; } }

.footer-col .footer-title {
    font-size: 1rem;
    letter-spacing: 0.12em;
    color: var(--primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
}
.brand-footer { margin-bottom: 1rem; }
.footer-tag {
    color: var(--muted-foreground);
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
    max-width: 360px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    color: var(--muted-foreground);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 280ms;
}
.footer-links a:hover { color: var(--primary); }

.badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.badge-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--muted);
    border: 1px solid var(--border);
    color: var(--foreground);
    font-size: 0.8125rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.badge-18 {
    background: #b91c3c;
    color: #ffffff;
    border-color: #b91c3c;
    font-weight: 700;
}

.payment-logos {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.pay-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    padding: 0 12px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--foreground);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.footer-bottom {
    max-width: 1240px;
    margin: 2.5rem auto 0;
    padding: 1.5rem clamp(1rem, 3vw, 1.5rem) 0;
    border-top: 1px solid var(--border);
    text-align: center;
}
.footer-bottom p {
    margin: 0 0 0.5rem;
    color: var(--muted-foreground);
    font-size: 0.8125rem;
}
.responsible strong { color: var(--accent); }
.copyright { color: var(--muted-foreground); font-size: 0.75rem; letter-spacing: 0.08em; }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 600ms cubic-bezier(0.4, 0, 0.2, 1),
                transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Fallback: if JS/IntersectionObserver doesn't fire, reveal after a short delay */
@media (prefers-reduced-motion: no-preference) {
    .animate-on-scroll {
        animation: revealFallback 0s linear 2.5s forwards;
    }
}
@keyframes revealFallback {
    to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll { opacity: 1; transform: none; transition: none; animation: none; }
    .crystal { animation: none; opacity: 0.2; }
    .btn-primary { animation: none; }
    .stat-number { animation: none; }
}

/* ============================================
   SPECIMEN STUB PAGE
   ============================================ */
.specimen-stub {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    background: var(--background);
}
.specimen-stub .brand {
    margin-bottom: 2rem;
}
.specimen-loader {
    width: 60px;
    height: 60px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 1.5rem 0;
    box-shadow: var(--neon-glow);
}
@keyframes spin { to { transform: rotate(360deg); } }
.specimen-stub p {
    color: var(--muted-foreground);
    font-size: 1.0625rem;
    max-width: 480px;
}
.specimen-stub h1 {
    color: var(--primary);
    text-shadow: 0 0 18px rgba(163, 255, 61, 0.5);
}