/* ============================================
   CASINOLAB CASINO - Design System
   Lab-neon aesthetic, mobile-first
   ============================================ */

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

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

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

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

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

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

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

body {
    margin: 0;
    font-family: "Manrope", system-ui, -apple-system, sans-serif;
    font-size: 17px;
    line-height: 1.65;
    color: var(--foreground);
    background: var(--background);
    background-image:
        radial-gradient(ellipse 80% 60% at 20% 0%, rgba(108, 61, 232, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse 70% 50% at 90% 30%, rgba(0, 229, 160, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 50% 100%, rgba(108, 61, 232, 0.1) 0%, transparent 60%);
    background-attachment: fixed;
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    padding-top: var(--header-h);
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: "Unbounded", "Manrope", sans-serif;
    color: var(--foreground);
    margin: 0 0 var(--space-md);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

h1 {
    font-size: clamp(30px, 5vw + 1rem, 44px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}
h2 {
    font-size: clamp(26px, 3.5vw + 0.5rem, 34px);
    font-weight: 700;
}
h3 {
    font-size: clamp(20px, 2vw + 0.5rem, 24px);
    font-weight: 600;
}
h4 { font-size: 18px; font-weight: 600; }

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

a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 200ms ease;
}
a:hover { color: var(--secondary-bright); }

strong { font-weight: 700; color: var(--foreground); }
small { font-size: 14px; }

.text-gradient {
    background: var(--grad-neon);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}
.text-gold {
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}
.text-muted { color: var(--muted-foreground); }
.text-center { text-align: center; }

/* === LAYOUT === */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
}
@media (min-width: 768px) {
    .container { padding: 0 var(--space-lg); }
}

.section {
    padding: var(--space-section) 0;
    position: relative;
}
.section-sm { padding: var(--space-2xl) 0; }
.section-tight { padding: var(--space-xl) 0; }

.eyebrow {
    display: inline-block;
    font-family: "Unbounded", sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--secondary);
    padding: 6px 14px;
    border: 1px solid rgba(0, 229, 160, 0.4);
    border-radius: var(--radius-pill);
    background: rgba(0, 229, 160, 0.08);
    margin-bottom: var(--space-md);
}

.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto var(--space-2xl);
}
.section-head p {
    color: var(--muted-foreground);
    font-size: 17px;
}

/* === SKIP LINK === */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--primary);
    color: #fff;
    padding: 12px 18px;
    z-index: 9999;
    border-radius: 0 0 var(--radius-md) 0;
}
.skip-link:focus { left: 0; }

/* ============================================
   HEADER & NAVIGATION
   .site-header - fixed translucent bar
   .menu-toggle - burger button (mobile)
   .primary-nav - drawer on mobile, inline desktop
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-h);
    background: rgba(10, 14, 26, 0.92);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}
@media (min-width: 1024px) {
    .site-header {
        background: rgba(10, 14, 26, 0.72);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }
}

.header-inner {
    height: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}
@media (min-width: 768px) {
    .header-inner { padding: 0 var(--space-lg); }
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--foreground);
    flex-shrink: 0;
}
.brand-logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--grad-flask);
    padding: 4px;
    box-shadow: 0 0 16px rgba(0, 229, 160, 0.4);
}
.brand-name {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.brand-name-main {
    font-family: "Unbounded", sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: var(--foreground);
    letter-spacing: -0.02em;
}
.brand-name-sub {
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-top: 2px;
}

.menu-toggle {
    width: 44px;
    height: 44px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    flex-shrink: 0;
}
.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--foreground);
    border-radius: 2px;
    transition: transform 240ms ease, opacity 200ms ease;
}
.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);
}
@media (min-width: 1024px) {
    .menu-toggle { display: none; }
}

/* Mobile nav drawer */
.primary-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--background);
    border-top: 1px solid var(--border);
    z-index: 999;
    overflow-y: auto;
    padding: var(--space-lg) var(--space-md) var(--space-2xl);
    flex-direction: column;
    gap: var(--space-md);
}
.primary-nav.is-open { display: flex; }

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.nav-link {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 16px;
    color: var(--foreground);
    font-family: "Unbounded", sans-serif;
    font-size: 16px;
    font-weight: 500;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    transition: all 200ms ease;
}
.nav-link:hover,
.nav-link:focus,
.nav-link.is-active {
    background: rgba(0, 229, 160, 0.08);
    border-color: rgba(0, 229, 160, 0.3);
    color: var(--secondary);
}
.nav-cta-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border);
}

@media (min-width: 1024px) {
    .primary-nav {
        display: flex;
        position: static;
        flex-direction: row;
        align-items: center;
        background: transparent;
        border: none;
        padding: 0;
        overflow: visible;
        gap: var(--space-xl);
        flex: 1;
        justify-content: flex-end;
    }
    .nav-list {
        flex-direction: row;
        gap: 4px;
    }
    .nav-link {
        min-height: 40px;
        padding: 8px 14px;
        font-size: 14px;
    }
    .nav-cta-group {
        flex-direction: row;
        margin: 0;
        padding: 0;
        border: none;
        gap: 10px;
    }
}

/* ============================================
   BUTTONS
   .btn - base; .btn-primary, .btn-gold, .btn-ghost
   .btn-sm, .btn-lg, .btn-block - sizing
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 22px;
    min-height: 48px;
    font-family: "Unbounded", sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    border: 1px solid transparent;
    border-radius: 14px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
    background: var(--grad-neon);
    color: #fff;
    box-shadow: 0 6px 20px rgba(108, 61, 232, 0.4), 0 0 0 1px rgba(0, 229, 160, 0.3) inset;
}
.btn-primary:hover {
    box-shadow: 0 8px 28px rgba(108, 61, 232, 0.55), 0 0 0 1px rgba(0, 229, 160, 0.5) inset;
    color: #fff;
}

.btn-gold {
    background: var(--grad-gold);
    color: var(--accent-foreground);
    box-shadow: var(--shadow-gold);
    font-weight: 700;
}
.btn-gold::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
    transition: left 800ms ease;
}
.btn-gold:hover {
    color: var(--accent-foreground);
    box-shadow: 0 0 28px rgba(245, 197, 66, 0.7);
}
.btn-gold:hover::after { left: 130%; }

.btn-ghost {
    background: transparent;
    color: var(--foreground);
    border-color: var(--border-bright);
}
.btn-ghost:hover {
    background: rgba(0, 229, 160, 0.08);
    border-color: var(--secondary);
    color: var(--secondary);
}

.btn-outline {
    background: transparent;
    color: var(--secondary);
    border-color: var(--secondary);
}
.btn-outline:hover {
    background: rgba(0, 229, 160, 0.1);
    color: var(--secondary-bright);
}

.btn-sm {
    min-height: 40px;
    padding: 10px 16px;
    font-size: 13px;
    border-radius: 10px;
}
.btn-lg {
    min-height: 56px;
    padding: 18px 32px;
    font-size: 17px;
    border-radius: 16px;
}
.btn-block { width: 100%; }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    padding: var(--space-2xl) 0 var(--space-section);
    background:
        radial-gradient(ellipse 90% 70% at 50% 0%, rgba(108, 61, 232, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 50%, rgba(0, 229, 160, 0.2) 0%, transparent 60%);
    overflow: hidden;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    align-items: center;
    position: relative;
    z-index: 2;
}
@media (min-width: 1024px) {
    .hero-inner {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
        gap: var(--space-3xl);
    }
}
.hero-content { text-align: center; }
@media (min-width: 1024px) {
    .hero-content { text-align: left; }
}
.hero h1 { margin-bottom: var(--space-md); }
.hero-lede {
    font-size: 17px;
    color: var(--muted-foreground);
    margin-bottom: var(--space-lg);
    max-width: 560px;
}
@media (min-width: 1024px) {
    .hero-lede { font-size: 19px; margin-left: 0; margin-right: 0; }
}
.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: var(--space-md);
}
@media (min-width: 1024px) {
    .hero-cta-row { justify-content: flex-start; }
}
.hero-disclaimer {
    font-size: 13px;
    color: var(--muted-foreground);
}
.hero-visual {
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: 520px;
    margin: 0 auto;
}
.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(108, 61, 232, 0.5));
    animation: float 6s ease-in-out infinite;
}
.hero-perks {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: var(--space-md);
}
@media (min-width: 1024px) {
    .hero-perks { justify-content: flex-start; }
}
.perk-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(0, 229, 160, 0.08);
    border: 1px solid rgba(0, 229, 160, 0.25);
    border-radius: var(--radius-pill);
    font-size: 13px;
    color: var(--foreground-soft);
    font-weight: 500;
}
.perk-chip::before { content: '✓'; color: var(--secondary); font-weight: 700; }

/* ============================================
   GAME CARD
   .game-card - slot/live tile with poster, RTP, play button
   ============================================ */
.game-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 280ms ease, border-color 280ms ease;
    position: relative;
    display: flex;
    flex-direction: column;
}
.game-card:hover {
    transform: translateY(-6px);
    border-color: var(--secondary);
    box-shadow: var(--shadow-neon);
}
.game-card-media {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--grad-flask);
}
.game-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms ease;
}
.game-card:hover .game-card-media img { transform: scale(1.06); }
.game-card-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grad-flask);
}
.game-card-fallback-icon { font-size: 64px; }

.game-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    font-family: "Unbounded", sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 5px 10px;
    border-radius: var(--radius-pill);
    z-index: 2;
}
.game-badge-hot {
    background: var(--accent);
    color: var(--accent-foreground);
}
.game-badge-new {
    background: var(--secondary);
    color: var(--secondary-foreground);
}
.game-badge-bonus {
    background: var(--primary);
    color: #fff;
}
.game-rtp {
    position: absolute;
    bottom: 10px;
    left: 10px;
    font-family: "Unbounded", sans-serif;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 9px;
    background: rgba(10, 14, 26, 0.85);
    color: var(--secondary);
    border-radius: 6px;
    z-index: 2;
}
.game-play-btn {
    position: absolute;
    inset: auto 0 0 0;
    margin: auto;
    bottom: 50%;
    transform: translateY(50%) scale(0.9);
    width: max-content;
    padding: 10px 22px;
    background: var(--secondary);
    color: var(--secondary-foreground);
    font-family: "Unbounded", sans-serif;
    font-weight: 700;
    font-size: 13px;
    border-radius: var(--radius-pill);
    opacity: 0;
    transition: opacity 240ms ease, transform 240ms ease;
    box-shadow: 0 0 20px rgba(0, 229, 160, 0.6);
    z-index: 3;
}
.game-card:hover .game-play-btn,
.game-card:focus-within .game-play-btn {
    opacity: 1;
    transform: translateY(50%) scale(1);
}
.game-card-body {
    padding: 14px 16px 16px;
}
.game-title {
    font-family: "Unbounded", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--foreground);
    margin: 0 0 4px;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.game-provider {
    font-size: 12px;
    color: var(--muted-foreground);
    margin: 0;
}

/* Games grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-md);
}
@media (min-width: 768px) {
    .games-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: var(--space-lg);
    }
}
@media (min-width: 1024px) {
    .games-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* ============================================
   BONUS CARD (flask shape)
   ============================================ */
.bonus-card {
    position: relative;
    background: var(--grad-flask);
    border: 1px solid rgba(0, 229, 160, 0.35);
    border-radius: var(--radius-flask);
    padding: 28px 24px;
    text-align: center;
    box-shadow: var(--shadow-card), 0 0 0 1px rgba(0, 229, 160, 0.1) inset;
    overflow: hidden;
    transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 380px;
}
.bonus-card:hover {
    transform: translateY(-4px);
    border-color: var(--secondary);
    box-shadow: var(--shadow-neon-strong);
}
.bonus-card-featured {
    border-color: var(--accent);
    box-shadow: 0 0 24px rgba(245, 197, 66, 0.35), 0 0 0 1px rgba(245, 197, 66, 0.4) inset;
}

.bonus-bubbles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}
.bonus-bubbles span {
    position: absolute;
    bottom: -20px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(0, 229, 160, 0.7), rgba(0, 229, 160, 0.1));
    animation: bubble-rise 8s linear infinite;
    opacity: 0.6;
}
.bonus-bubbles span:nth-child(1) { left: 12%; animation-delay: 0s; width: 8px; height: 8px; }
.bonus-bubbles span:nth-child(2) { left: 30%; animation-delay: 2s; width: 12px; height: 12px; }
.bonus-bubbles span:nth-child(3) { left: 55%; animation-delay: 4s; width: 7px; height: 7px; }
.bonus-bubbles span:nth-child(4) { left: 72%; animation-delay: 1s; width: 10px; height: 10px; }
.bonus-bubbles span:nth-child(5) { left: 88%; animation-delay: 3s; width: 9px; height: 9px; }

.bonus-card > * { position: relative; z-index: 1; }

.bonus-icon {
    font-size: 44px;
    line-height: 1;
    margin-bottom: var(--space-sm);
    filter: drop-shadow(0 4px 12px rgba(0, 229, 160, 0.5));
}
.bonus-amount {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: var(--space-md);
}
.bonus-amount-main {
    font-family: "Unbounded", sans-serif;
    font-size: clamp(44px, 8vw, 56px);
    font-weight: 800;
    line-height: 1;
    background: var(--grad-neon);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    letter-spacing: -0.02em;
}
.bonus-amount-sub {
    font-family: "Unbounded", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--accent);
    margin-top: 4px;
}
.bonus-title {
    font-family: "Unbounded", sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 8px;
}
.bonus-desc {
    font-size: 15px;
    color: var(--foreground-soft);
    margin: 0 0 var(--space-md);
    flex-grow: 1;
}
.bonus-wagering {
    font-size: 12px;
    color: var(--muted-foreground);
    margin: 0 0 var(--space-md);
    padding: 8px 12px;
    background: rgba(10, 14, 26, 0.4);
    border-radius: 8px;
    width: 100%;
    border: 1px solid var(--border);
}

.bonus-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-lg);
}
@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)); }
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 880px;
    margin: 0 auto;
}
.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 240ms ease, box-shadow 240ms ease;
}
.faq-item[open] {
    border-color: var(--secondary);
    box-shadow: 0 0 0 1px rgba(0, 229, 160, 0.2), 0 4px 18px rgba(0, 0, 0, 0.3);
}
.faq-question {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: 16px 20px;
    cursor: pointer;
    list-style: none;
    min-height: 56px;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 229, 160, 0.15);
    border: 1px solid rgba(0, 229, 160, 0.4);
    border-radius: 50%;
    color: var(--secondary);
    font-family: "Unbounded", sans-serif;
    font-weight: 700;
    font-size: 14px;
}
.faq-question-text {
    flex: 1;
    font-family: "Unbounded", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--foreground);
    line-height: 1.3;
}
@media (min-width: 768px) {
    .faq-question-text { font-size: 18px; }
    .faq-question { padding: 20px 24px; }
}
.faq-toggle {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(108, 61, 232, 0.2);
    border: 1px solid rgba(108, 61, 232, 0.5);
    position: relative;
    transition: transform 280ms ease, background 200ms ease;
}
.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    background: var(--primary-bright);
    transform: translate(-50%, -50%);
}
.faq-toggle::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform 280ms ease; }
.faq-item[open] .faq-toggle { background: var(--primary); border-color: var(--primary-bright); }
.faq-item[open] .faq-toggle::after { transform: translate(-50%, -50%) rotate(0deg); }

.faq-answer {
    padding: 0 20px 20px;
    border-left: 2px solid rgba(0, 229, 160, 0.3);
    margin: 0 16px 12px;
    color: var(--foreground-soft);
    font-size: 16px;
    line-height: 1.65;
    background: rgba(0, 229, 160, 0.03);
    border-radius: 0 8px 8px 0;
    padding-top: 4px;
    padding-left: 16px;
}
.faq-answer p { margin: 0; }

/* ============================================
   STAT HIGHLIGHT (flasks)
   ============================================ */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-md);
}
@media (min-width: 768px) {
    .stat-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: var(--space-lg);
    }
}
.stat-flask {
    position: relative;
    background: linear-gradient(180deg, rgba(108, 61, 232, 0.18) 0%, rgba(10, 14, 26, 0.6) 100%);
    border: 1px solid rgba(0, 229, 160, 0.25);
    border-radius: 18px 18px 32px 32px;
    padding: 28px 16px 24px;
    text-align: center;
    overflow: hidden;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.stat-bubbles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.stat-bubbles span {
    position: absolute;
    bottom: -10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 229, 160, 0.4);
    animation: bubble-rise 7s linear infinite;
}
.stat-bubbles span:nth-child(1) { left: 25%; animation-delay: 0s; }
.stat-bubbles span:nth-child(2) { left: 55%; animation-delay: 2.5s; }
.stat-bubbles span:nth-child(3) { left: 78%; animation-delay: 4.5s; }

.stat-number {
    position: relative;
    z-index: 1;
    font-family: "Unbounded", sans-serif;
    font-size: clamp(36px, 6vw, 52px);
    font-weight: 800;
    line-height: 1;
    background: var(--grad-neon);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}
.stat-label {
    position: relative;
    z-index: 1;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.stat-hint {
    position: relative;
    z-index: 1;
    font-size: 12px;
    color: var(--secondary);
    margin-top: 6px;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    position: relative;
    padding: var(--space-2xl) var(--space-md);
    margin: var(--space-section) auto 0;
    max-width: var(--container-max);
    background:
        radial-gradient(ellipse 60% 80% at 0% 50%, rgba(108, 61, 232, 0.5) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 100% 50%, rgba(0, 229, 160, 0.3) 0%, transparent 60%),
        linear-gradient(135deg, #1a1240 0%, #0a0e1a 100%);
    border: 1px solid var(--border-bright);
    border-radius: var(--radius-xl);
    text-align: center;
    overflow: hidden;
}
@media (min-width: 768px) {
    .cta-banner { padding: var(--space-3xl) var(--space-2xl); }
}
.cta-banner-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.cta-flask {
    position: absolute;
    font-size: 80px;
    opacity: 0.35;
    filter: drop-shadow(0 0 20px rgba(0, 229, 160, 0.6));
    animation: float 6s ease-in-out infinite;
}
.cta-flask-left { top: 50%; left: -10px; transform: translateY(-50%) rotate(-15deg); }
.cta-flask-right { top: 50%; right: -10px; transform: translateY(-50%) rotate(15deg); animation-delay: 3s; }
@media (min-width: 768px) {
    .cta-flask { font-size: 120px; opacity: 0.5; }
    .cta-flask-left { left: 40px; }
    .cta-flask-right { right: 40px; }
}
.cta-coin {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ffd86b, #b88a14);
    box-shadow: 0 0 12px rgba(245, 197, 66, 0.7);
    animation: float 5s ease-in-out infinite;
}
.cta-coin-1 { top: 20%; left: 18%; animation-delay: 0s; }
.cta-coin-2 { top: 70%; left: 30%; animation-delay: 1.5s; }
.cta-coin-3 { top: 30%; right: 22%; animation-delay: 3s; }

.cta-banner-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}
.cta-banner-title {
    font-family: "Unbounded", sans-serif;
    font-size: clamp(28px, 4.5vw + 0.5rem, 44px);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 var(--space-md);
    background: var(--grad-neon);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.cta-banner-subtitle {
    font-size: 17px;
    color: var(--foreground-soft);
    margin: 0 0 var(--space-lg);
}
.cta-banner-disclaimer {
    font-size: 13px;
    color: var(--muted-foreground);
    margin: var(--space-md) 0 0;
}

/* ============================================
   PROVIDER LOGOS
   ============================================ */
.providers-band {
    padding: var(--space-lg) 0;
    border-top: 1px solid rgba(0, 229, 160, 0.2);
    border-bottom: 1px solid rgba(0, 229, 160, 0.2);
    background: rgba(10, 14, 26, 0.4);
    text-align: center;
}
.providers-label {
    display: block;
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--muted-foreground);
    margin-bottom: var(--space-md);
}
.providers-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    max-width: 1000px;
    margin: 0 auto;
}
@media (min-width: 640px) {
    .providers-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 768px) {
    .providers-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}
.provider-chip {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: "Unbounded", sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: var(--muted-foreground);
    transition: all 240ms ease;
    text-align: center;
}
.provider-chip:hover {
    color: var(--secondary);
    border-color: var(--secondary);
    background: rgba(0, 229, 160, 0.06);
    box-shadow: 0 0 16px rgba(0, 229, 160, 0.25);
}

/* ============================================
   ENGAGEMENT/CRO PATTERNS
   ============================================ */

/* TL;DR / Summary box */
.tldr {
    background: linear-gradient(135deg, rgba(108, 61, 232, 0.12), rgba(0, 229, 160, 0.08));
    border: 1px solid rgba(0, 229, 160, 0.3);
    border-left: 4px solid var(--secondary);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
}
.tldr-title {
    font-family: "Unbounded", sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--secondary);
    margin: 0 0 var(--space-sm);
}
.tldr p:last-child { margin-bottom: 0; }

/* Callout box */
.callout {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-md);
    margin: var(--space-lg) 0;
}
.callout-icon {
    flex-shrink: 0;
    font-size: 28px;
    line-height: 1;
}
.callout-body p:last-child { margin-bottom: 0; }
.callout-warning { border-left-color: var(--accent); }
.callout-success { border-left-color: var(--secondary); }

/* Pull quote */
.pullquote {
    margin: var(--space-2xl) 0;
    padding: var(--space-lg) var(--space-xl);
    border-left: 4px solid var(--secondary);
    background: rgba(0, 229, 160, 0.04);
    font-family: "Unbounded", sans-serif;
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 500;
    line-height: 1.4;
    color: var(--foreground);
    font-style: normal;
}
.pullquote cite {
    display: block;
    margin-top: var(--space-md);
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    color: var(--muted-foreground);
    font-style: normal;
    font-weight: 500;
}
.pullquote cite::before { content: '- '; }

/* Trust row */
.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
    align-items: center;
    padding: var(--space-lg) 0;
}
.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    font-size: 13px;
    color: var(--muted-foreground);
    font-weight: 500;
}
.trust-item-icon { color: var(--secondary); font-weight: 700; }

/* Data table */
.data-table-wrap {
    overflow-x: auto;
    margin: var(--space-lg) 0;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}
.data-table-wrap:focus {
    outline: 2px solid var(--secondary);
    outline-offset: 2px;
}

/* Underline links inside text blocks for a11y (color is not the sole indicator) */
.callout-body a,
.seo-block p a,
.section p a {
    text-decoration: underline;
    text-decoration-color: rgba(0, 229, 160, 0.5);
    text-underline-offset: 3px;
}
.callout-body a:hover,
.section p a:hover {
    text-decoration-color: var(--secondary);
}
.data-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card);
    min-width: 520px;
}
.data-table thead {
    background: linear-gradient(135deg, rgba(108, 61, 232, 0.25), rgba(0, 229, 160, 0.15));
}
.data-table th {
    text-align: left;
    padding: 14px 16px;
    font-family: "Unbounded", sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--foreground);
    border-bottom: 1px solid var(--border);
}
.data-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--foreground-soft);
    font-size: 15px;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: rgba(0, 229, 160, 0.04); }
.data-table .row-featured {
    background: rgba(245, 197, 66, 0.08);
}
.data-table .row-featured td { color: var(--foreground); font-weight: 600; }

/* Process / numbered steps */
.steps {
    counter-reset: step;
    list-style: none;
    margin: var(--space-lg) 0;
    padding: 0;
    display: grid;
    gap: var(--space-md);
}
@media (min-width: 768px) {
    .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.step-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    position: relative;
    counter-increment: step;
}
.step-item::before {
    content: counter(step);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--grad-neon);
    color: #fff;
    border-radius: 50%;
    font-family: "Unbounded", sans-serif;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: var(--space-sm);
}
.step-item h3 {
    font-family: "Unbounded", sans-serif;
    font-size: 17px;
    margin: 0 0 8px;
}
.step-item p { margin: 0; font-size: 15px; color: var(--muted-foreground); }

/* Feature grid (3-col benefit) */
.feature-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-md);
}
@media (min-width: 768px) {
    .feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-lg); }
}
.feature-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}
.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--secondary);
    box-shadow: var(--shadow-neon);
}
.feature-icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    background: rgba(0, 229, 160, 0.1);
    border: 1px solid rgba(0, 229, 160, 0.3);
    border-radius: 16px;
    margin-bottom: var(--space-md);
}
.feature-card h3 {
    font-size: 18px;
    margin: 0 0 8px;
}
.feature-card p {
    margin: 0;
    font-size: 15px;
    color: var(--muted-foreground);
}

/* Category tiles */
.category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-md);
}
@media (min-width: 768px) {
    .category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.category-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: var(--space-lg) var(--space-md);
    background: linear-gradient(160deg, rgba(108, 61, 232, 0.15), rgba(10, 14, 26, 0.4));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    color: var(--foreground);
    text-decoration: none;
    transition: all 280ms ease;
    min-height: 140px;
    justify-content: center;
}
.category-tile:hover {
    transform: translateY(-4px) rotate(-1deg);
    border-color: var(--secondary);
    box-shadow: var(--shadow-neon);
    color: var(--foreground);
}
.category-tile-icon { font-size: 38px; line-height: 1; }
.category-tile-title {
    font-family: "Unbounded", sans-serif;
    font-weight: 600;
    font-size: 15px;
}
.category-tile-count {
    font-size: 12px;
    color: var(--secondary);
}

/* SEO long-form block */
.seo-block {
    max-width: 880px;
    margin: 0 auto;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    position: relative;
}
@media (min-width: 768px) {
    .seo-block { padding: var(--space-2xl); }
}
.seo-block h2,
.seo-block h3 {
    font-family: "Unbounded", sans-serif;
}
.seo-block h3 { margin-top: var(--space-xl); }
.seo-block p { color: var(--foreground-soft); }
.seo-block ul { padding-left: var(--space-lg); color: var(--foreground-soft); }
.seo-block li { margin-bottom: 8px; }
.seo-block a { color: var(--secondary); border-bottom: 1px dashed rgba(0, 229, 160, 0.5); }
.seo-block a:hover { border-bottom-color: var(--secondary); }

/* Two-column intro */
.intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-lg);
    align-items: center;
}
@media (min-width: 1024px) {
    .intro-grid { grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: var(--space-2xl); }
}

/* VIP staircase */
.vip-stairs {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-md);
}
@media (min-width: 640px) {
    .vip-stairs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .vip-stairs { grid-template-columns: repeat(5, minmax(0, 1fr)); align-items: end; }
}
.vip-level {
    background: linear-gradient(180deg, var(--card-elevated), var(--card));
    border: 1px solid var(--border);
    border-radius: 18px 18px 32px 32px;
    padding: var(--space-lg) var(--space-md);
    text-align: center;
    transition: transform 240ms ease, box-shadow 240ms ease;
}
.vip-level:hover { transform: translateY(-6px); box-shadow: var(--shadow-neon); }
@media (min-width: 1024px) {
    .vip-level:nth-child(1) { min-height: 280px; }
    .vip-level:nth-child(2) { min-height: 310px; }
    .vip-level:nth-child(3) { min-height: 340px; }
    .vip-level:nth-child(4) { min-height: 370px; }
    .vip-level:nth-child(5) { min-height: 400px; }
}
.vip-level-name {
    font-family: "Unbounded", sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px;
    color: var(--foreground);
}
.vip-level-icon { font-size: 36px; margin-bottom: 10px; }
.vip-level-perk {
    font-size: 13px;
    color: var(--muted-foreground);
    margin: 0 0 4px;
}
.vip-level-cashback {
    font-family: "Unbounded", sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--accent);
    margin: var(--space-sm) 0;
}
.vip-level-featured {
    border-color: var(--accent);
    background: linear-gradient(180deg, rgba(245, 197, 66, 0.15), var(--card));
    box-shadow: 0 0 20px rgba(245, 197, 66, 0.25);
}

/* Crypto grid */
.crypto-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-md);
}
@media (min-width: 640px) {
    .crypto-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.crypto-tile {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
    transition: all 240ms ease;
}
.crypto-tile:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}
.crypto-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--grad-gold);
    color: var(--accent-foreground);
    border-radius: 50%;
    font-family: "Unbounded", sans-serif;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: -0.02em;
}
.crypto-name {
    font-family: "Unbounded", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--foreground);
}
.crypto-meta {
    font-size: 12px;
    color: var(--muted-foreground);
}

/* Hero badge cluster */
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: var(--space-lg);
}
@media (min-width: 1024px) {
    .hero-badges { justify-content: flex-start; }
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(245, 197, 66, 0.12);
    border: 1px solid rgba(245, 197, 66, 0.4);
    border-radius: var(--radius-pill);
    font-size: 12px;
    color: var(--accent);
    font-family: "Unbounded", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Breadcrumb */
.breadcrumb {
    padding: var(--space-md) 0 0;
    font-size: 13px;
    color: var(--muted-foreground);
}
.breadcrumb ol {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.breadcrumb li:not(:last-child)::after {
    content: '›';
    margin-left: 8px;
    color: var(--border-bright);
}
.breadcrumb a { color: var(--muted-foreground); }
.breadcrumb a:hover { color: var(--secondary); }
.breadcrumb [aria-current="page"] { color: var(--foreground); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    margin-top: var(--space-section);
    padding: var(--space-2xl) 0 var(--space-lg);
    background: var(--background-deep);
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}
.footer-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
    position: relative;
    z-index: 1;
}
@media (min-width: 768px) {
    .footer-inner { padding: 0 var(--space-lg); }
}
.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}
@media (min-width: 768px) {
    .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
        gap: var(--space-2xl);
    }
}
.footer-brand-col .brand-name-main { font-size: 20px; }
.footer-tag {
    margin: var(--space-md) 0;
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.6;
    max-width: 360px;
}
.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 2px solid var(--destructive);
    color: var(--destructive);
    border-radius: 50%;
    font-family: "Unbounded", sans-serif;
    font-weight: 800;
    font-size: 16px;
}
.footer-title {
    font-family: "Unbounded", sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--secondary);
    margin: 0 0 var(--space-md);
}
.footer-title-sm { margin-top: var(--space-md); }
.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-links a {
    color: var(--muted-foreground);
    font-size: 14px;
    transition: color 200ms ease;
}
.footer-links a:hover { color: var(--secondary); }

.payment-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: var(--space-md);
}
.pay-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: "Unbounded", sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--foreground-soft);
    letter-spacing: 0.05em;
}
.license-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.license-badge {
    padding: 6px 10px;
    background: rgba(0, 229, 160, 0.06);
    border: 1px solid rgba(0, 229, 160, 0.3);
    border-radius: 8px;
    font-size: 11px;
    color: var(--secondary);
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}
.copyright {
    margin: 0;
    font-size: 13px;
    color: var(--muted-foreground);
}
.responsible {
    margin: 0;
    font-size: 12px;
    color: var(--muted-foreground);
    line-height: 1.6;
}
.responsible strong { color: var(--foreground); }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
@keyframes bubble-rise {
    0% { transform: translateY(0) scale(0.6); opacity: 0; }
    20% { opacity: 0.8; }
    100% { transform: translateY(-260px) scale(1.1); opacity: 0; }
}
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 16px rgba(0, 229, 160, 0.4); }
    50% { box-shadow: 0 0 28px rgba(0, 229, 160, 0.8); }
}

[data-animate] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 600ms cubic-bezier(0.22, 1, 0.36, 1), transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}
[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@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;
    }
    [data-animate] { opacity: 1; transform: none; }
}

/* ============================================
   FILTER BAR (games page)
   ============================================ */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: var(--space-xl);
    padding: 12px;
    background: rgba(10, 14, 26, 0.5);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}
.filter-btn {
    appearance: none;
    background: transparent;
    border: 1px solid transparent;
    color: var(--muted-foreground);
    font-family: "Unbounded", sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all 200ms ease;
    min-height: 36px;
    white-space: nowrap;
}
.filter-btn:hover {
    color: var(--secondary);
    border-color: rgba(0, 229, 160, 0.3);
}
.filter-btn.is-active {
    background: var(--grad-neon);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 0 14px rgba(0, 229, 160, 0.4);
}
.filter-empty {
    text-align: center;
    color: var(--muted-foreground);
    padding: var(--space-xl);
    font-size: 15px;
}
#slots-grid > div { display: contents; }
#slots-grid > div.is-hidden { display: none; }

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

/* Focus styles */
:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: 3px;
    border-radius: 4px;
}
button:focus-visible,
a:focus-visible { outline-offset: 3px; }

/* Utility */
.visually-hidden {
    position: absolute;
    width: 1px; height: 1px;
    margin: -1px; padding: 0;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }

/* ============================================
   EXPERIMENT STUB PAGE (redirect placeholder)
   ============================================ */
.experiment-stub {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl) var(--space-md);
    background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(108, 61, 232, 0.45) 0%, transparent 60%),
        radial-gradient(ellipse 80% 60% at 50% 100%, rgba(0, 229, 160, 0.25) 0%, transparent 60%),
        #0a0e1a;
    overflow: hidden;
    text-align: center;
}

.experiment-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
    pointer-events: none;
    z-index: 0;
}
.experiment-glow-1 {
    width: 360px;
    height: 360px;
    background: #6c3de8;
    top: -120px;
    left: -120px;
    animation: glow-drift 9s ease-in-out infinite alternate;
}
.experiment-glow-2 {
    width: 320px;
    height: 320px;
    background: #00e5a0;
    bottom: -120px;
    right: -120px;
    animation: glow-drift 11s ease-in-out infinite alternate-reverse;
}
@keyframes glow-drift {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, 30px) scale(1.15); }
}

.experiment-bubbles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.experiment-bubbles span {
    position: absolute;
    bottom: -30px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(0, 229, 160, 0.85), rgba(0, 229, 160, 0.15));
    box-shadow: 0 0 12px rgba(0, 229, 160, 0.6);
    animation: bubble-rise 9s linear infinite;
    opacity: 0.7;
}
.experiment-bubbles span:nth-child(1)  { left: 6%;  animation-delay: 0s;   width: 10px; height: 10px; }
.experiment-bubbles span:nth-child(2)  { left: 14%; animation-delay: 2s;   width: 16px; height: 16px; }
.experiment-bubbles span:nth-child(3)  { left: 22%; animation-delay: 4s;   width: 8px;  height: 8px;  }
.experiment-bubbles span:nth-child(4)  { left: 32%; animation-delay: 1s;   width: 12px; height: 12px; }
.experiment-bubbles span:nth-child(5)  { left: 42%; animation-delay: 3s;   width: 14px; height: 14px; }
.experiment-bubbles span:nth-child(6)  { left: 52%; animation-delay: 5s;   width: 9px;  height: 9px;  }
.experiment-bubbles span:nth-child(7)  { left: 62%; animation-delay: 1.5s; width: 13px; height: 13px; }
.experiment-bubbles span:nth-child(8)  { left: 70%; animation-delay: 3.5s; width: 11px; height: 11px; }
.experiment-bubbles span:nth-child(9)  { left: 78%; animation-delay: 0.5s; width: 15px; height: 15px; }
.experiment-bubbles span:nth-child(10) { left: 85%; animation-delay: 2.5s; width: 9px;  height: 9px;  }
.experiment-bubbles span:nth-child(11) { left: 92%; animation-delay: 4.5s; width: 12px; height: 12px; }
.experiment-bubbles span:nth-child(12) { left: 96%; animation-delay: 6s;   width: 10px; height: 10px; }

.experiment-stage {
    position: relative;
    z-index: 1;
    max-width: 520px;
    width: 100%;
    padding: var(--space-2xl) var(--space-lg);
    background: rgba(19, 26, 46, 0.65);
    border: 1px solid rgba(0, 229, 160, 0.3);
    border-radius: 28px;
    box-shadow:
        0 0 40px rgba(0, 229, 160, 0.25),
        0 0 80px rgba(108, 61, 232, 0.25),
        0 20px 60px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.experiment-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: var(--space-lg);
}
.experiment-logo {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(180deg, #6c3de8 0%, #1a1240 100%);
    padding: 6px;
    box-shadow: 0 0 24px rgba(0, 229, 160, 0.5);
}
.experiment-brand-name {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}
.experiment-brand-main {
    font-family: "Unbounded", sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: #f0ece4;
    letter-spacing: -0.02em;
}
.experiment-brand-sub {
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #00e5a0;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    margin-top: 4px;
}

.experiment-mascot {
    width: 220px;
    height: 220px;
    margin: 0 auto var(--space-lg);
    position: relative;
}
@media (min-width: 640px) {
    .experiment-mascot { width: 260px; height: 260px; }
}
.experiment-mascot img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 12px 32px rgba(108, 61, 232, 0.6));
    animation: float 4s ease-in-out infinite;
}

.experiment-title {
    font-family: "Unbounded", sans-serif;
    font-size: clamp(22px, 4vw + 0.5rem, 30px);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 12px;
    background: linear-gradient(135deg, #00e5a0 0%, #8b5cff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    letter-spacing: -0.01em;
}
.experiment-dots span {
    display: inline-block;
    opacity: 0.3;
    animation: dot-pulse 1.4s infinite;
    -webkit-text-fill-color: #00e5a0;
    color: #00e5a0;
}
.experiment-dots span:nth-child(2) { animation-delay: 0.2s; }
.experiment-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes dot-pulse {
    0%, 100% { opacity: 0.3; }
    50%      { opacity: 1; }
}

.experiment-hint {
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    color: #a8b4cf;
    line-height: 1.55;
    margin: 0 0 var(--space-lg);
}

.experiment-loader {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-lg);
    border: 4px solid rgba(0, 229, 160, 0.15);
    border-top-color: #00e5a0;
    border-right-color: #6c3de8;
    border-radius: 50%;
    animation: spin 900ms linear infinite;
    box-shadow: 0 0 24px rgba(0, 229, 160, 0.35);
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

.experiment-micro {
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    color: #a8b4cf;
    letter-spacing: 0.05em;
    margin: 0;
    opacity: 0.85;
}

@media (prefers-reduced-motion: reduce) {
    .experiment-glow,
    .experiment-bubbles span,
    .experiment-mascot img,
    .experiment-loader,
    .experiment-dots span {
        animation: none !important;
    }
}