/* ============================================
   CASINOLAB CASINO - DARK LAB DESIGN SYSTEM
   Mobile-first, neon green/blue/purple on midnight
   ============================================ */

/* ============================================
   OVERFLOW PREVENTION
   ============================================ */
*, *::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;
}

.table-wrapper { 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; }

/* ============================================
   BASE / TYPOGRAPHY
   Orbitron for display, Rajdhani for body
   ============================================ */
body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.55;
    color: var(--foreground);
    background: var(--background);
    background-image:
        radial-gradient(circle at 20% 10%, rgba(0, 212, 255, 0.08), transparent 45%),
        radial-gradient(circle at 80% 80%, rgba(0, 255, 136, 0.08), transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.04), transparent 60%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

@media (min-width: 1024px) {
    body { font-size: 17px; line-height: 1.6; }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.02em;
    color: var(--foreground);
    margin: 0 0 0.6em;
}

h1 { font-size: clamp(2rem, 5vw + 0.5rem, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw + 0.5rem, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 1.5vw + 0.8rem, 2rem); font-weight: 600; }
h4 { font-size: clamp(1.1rem, 1vw + 0.8rem, 1.4rem); font-weight: 600; }

p { margin: 0 0 1.25em; }

a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.25s ease, text-shadow 0.25s ease;
}

a:hover, a:focus-visible {
    color: var(--primary);
    text-shadow: 0 0 8px var(--primary-glow);
}

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

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

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    padding: 12px 20px;
    background: var(--primary);
    color: var(--primary-foreground);
    z-index: 10000;
    font-weight: 700;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ============================================
   LAYOUT - Container, Sections
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 16px;
}

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

@media (min-width: 1024px) {
    .container { padding: 0 32px; }
}

section {
    padding: 64px 0;
    position: relative;
}

@media (min-width: 1024px) {
    section { padding: 120px 0; }
}

.section-title {
    text-align: center;
    margin-bottom: 1em;
    text-shadow: 0 0 24px var(--primary-glow);
}

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

.eyebrow {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary);
    padding: 6px 14px;
    border: 1px solid var(--primary);
    border-radius: 100px;
    background: rgba(0, 255, 136, 0.08);
    margin-bottom: 1em;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 16px 28px;
    min-height: 48px;
    border-radius: 12px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
    text-decoration: none;
    line-height: 1;
}

.btn:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: 3px;
}

.btn-primary {
    background: linear-gradient(135deg, #00ff88 0%, #00d4ff 100%);
    color: var(--primary-foreground);
    box-shadow: 0 8px 24px rgba(0, 255, 136, 0.35), inset 0 0 0 1px rgba(255,255,255,0.15);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    color: var(--primary-foreground);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 255, 136, 0.55), 0 0 0 2px var(--primary), inset 0 0 0 1px rgba(255,255,255,0.2);
    text-shadow: none;
}

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

.btn-ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
    text-shadow: 0 0 8px var(--primary-glow);
}

.btn-accent {
    background: linear-gradient(135deg, #a855f7 0%, #00d4ff 100%);
    color: #fff;
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.4);
}

.btn-block { display: flex; width: 100%; }

.btn-xl { font-size: 1.05rem; padding: 18px 36px; min-height: 56px; }

.btn-pulse { animation: btnPulse 2.4s ease-in-out infinite; }

@keyframes btnPulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(0, 255, 136, 0.35), inset 0 0 0 1px rgba(255,255,255,0.15); }
    50% { box-shadow: 0 12px 36px rgba(0, 255, 136, 0.7), 0 0 0 4px rgba(0, 255, 136, 0.2), inset 0 0 0 1px rgba(255,255,255,0.25); }
}

@media (prefers-reduced-motion: reduce) {
    .btn-pulse { animation: none; }
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 17, 23, 0.92);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 0 rgba(0, 255, 136, 0.15), 0 12px 32px rgba(0,0,0,0.4);
}

@media (min-width: 1024px) {
    .site-header {
        background: rgba(13, 17, 23, 0.75);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
}

body { padding-top: var(--header-h); }

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

@media (min-width: 768px) { .header-inner { padding: 0 24px; } }
@media (min-width: 1024px) { .header-inner { padding: 0 32px; } }

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--foreground);
    text-decoration: none;
    flex-shrink: 0;
}

.brand:hover { color: var(--foreground); text-shadow: none; }

.brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(0,255,136,0.2), rgba(0,212,255,0.15));
    border: 1px solid var(--primary);
    display: grid;
    place-items: center;
    box-shadow: 0 0 16px rgba(0, 255, 136, 0.4);
    position: relative;
}

.brand-mark .flask {
    width: 18px;
    height: 22px;
    background: linear-gradient(180deg, transparent 0%, transparent 35%, #00ff88 35%, #00d4ff 100%);
    clip-path: polygon(30% 0, 70% 0, 70% 35%, 95% 100%, 5% 100%, 30% 35%);
    filter: drop-shadow(0 0 4px var(--primary-glow));
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: 0.04em;
    color: var(--foreground);
}

.brand-sub {
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    color: var(--primary);
    text-transform: uppercase;
    margin-top: 2px;
}

/* Mobile menu toggle */
.nav-toggle {
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--border-bright);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.nav-toggle:hover { border-color: var(--primary); box-shadow: 0 0 12px var(--primary-glow); }

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    box-shadow: 0 0 6px var(--primary-glow);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile nav drawer (hidden by default) */
.main-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--background);
    border-top: 1px solid var(--border);
    padding: 24px 20px 40px;
    overflow-y: auto;
    z-index: 999;
    flex-direction: column;
    gap: 16px;
}

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

.main-nav .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.main-nav .nav-list a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 16px;
    color: var(--foreground);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.04em;
    border-radius: 10px;
    border: 1px solid transparent;
    text-decoration: none;
}

.main-nav .nav-list a:hover {
    color: var(--primary);
    border-color: var(--border);
    background: rgba(0, 255, 136, 0.06);
    text-shadow: 0 0 10px var(--primary-glow);
}

.nav-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px dashed var(--border);
}

/* Desktop nav */
@media (min-width: 1024px) {
    .nav-toggle { display: none; }
    .main-nav {
        display: flex;
        position: static;
        flex-direction: row;
        align-items: center;
        gap: 28px;
        padding: 0;
        background: transparent;
        border: none;
        overflow: visible;
        inset: auto;
    }
    .main-nav .nav-list {
        flex-direction: row;
        gap: 6px;
    }
    .main-nav .nav-list a {
        min-height: auto;
        padding: 8px 14px;
        font-size: 0.92rem;
    }
    .nav-cta {
        flex-direction: row;
        padding: 0;
        border: none;
        gap: 10px;
    }
    .nav-cta .btn {
        padding: 10px 18px;
        min-height: 42px;
        font-size: 0.82rem;
    }
}

/* ============================================
   HERO SECTION (used across pages)
   Glass flask / lab room aesthetic
   ============================================ */
.hero {
    position: relative;
    padding: 48px 0 64px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: clip;
}

@media (min-width: 1024px) {
    .hero { padding: 96px 0 120px; min-height: 80vh; }
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse at 50% 100%, rgba(0, 255, 136, 0.18), transparent 60%),
        radial-gradient(ellipse at 20% 30%, rgba(0, 212, 255, 0.18), transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(168, 85, 247, 0.15), transparent 55%);
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 212, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.06) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero .container { grid-template-columns: 1.1fr 1fr; gap: 48px; }
}

.hero-content { text-align: center; }
@media (min-width: 1024px) { .hero-content { text-align: left; } }

.hero h1 {
    margin-bottom: 0.4em;
    text-shadow: 0 0 30px var(--primary-glow), 0 0 60px rgba(0, 212, 255, 0.4);
}

.hero h1 .accent { color: var(--primary); }
.hero h1 .accent-blue { color: var(--secondary); }

.hero-sub {
    font-size: 1.05rem;
    color: var(--muted-foreground);
    max-width: 560px;
    margin: 0 auto 2em;
}

@media (min-width: 1024px) { .hero-sub { margin: 0 0 2em; font-size: 1.15rem; } }

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-bottom: 1.5em;
}

@media (min-width: 640px) {
    .hero-cta { flex-direction: row; justify-content: center; }
}

@media (min-width: 1024px) {
    .hero-cta { justify-content: flex-start; }
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--muted-foreground);
    font-family: var(--font-display);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@media (min-width: 1024px) { .hero-trust { justify-content: flex-start; } }

.hero-trust span { display: inline-flex; align-items: center; gap: 6px; }
.hero-trust span::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 8px var(--primary-glow);
}

/* Hero visual - glass flask container with professor */
.hero-visual {
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
}

.hero-flask {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.12), transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(0, 255, 136, 0.2), rgba(0, 212, 255, 0.1) 60%, transparent 80%);
    border: 2px solid rgba(0, 255, 136, 0.4);
    box-shadow:
        0 0 60px rgba(0, 255, 136, 0.35),
        inset 0 0 80px rgba(0, 212, 255, 0.2),
        inset 0 0 30px rgba(0, 255, 136, 0.15);
    overflow: hidden;
}

.hero-flask::before,
.hero-flask::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 255, 136, 0.25);
    box-shadow: 0 0 16px var(--primary-glow);
    animation: bubble 6s ease-in-out infinite;
}

.hero-flask::before { width: 18px; height: 18px; left: 25%; bottom: 10%; animation-delay: 0s; }
.hero-flask::after { width: 12px; height: 12px; left: 65%; bottom: 5%; animation-delay: 2s; }

.hero-visual img.professor {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 2;
    filter: drop-shadow(0 0 24px rgba(0, 255, 136, 0.5));
}

.hero-visual .crab-overlay {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 40%;
    z-index: 3;
    filter: drop-shadow(0 0 18px rgba(168, 85, 247, 0.6));
    animation: crabBob 4s ease-in-out infinite;
}

@keyframes bubble {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { transform: translateY(-80px) scale(1.3); opacity: 1; }
}

@keyframes crabBob {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-12px) rotate(3deg); }
}

@media (prefers-reduced-motion: reduce) {
    .hero-flask::before, .hero-flask::after, .hero-visual .crab-overlay { animation: none; }
}

/* ============================================
   CARDS - Game Cards
   ============================================ */
.card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

@media (min-width: 768px) {
    .card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
}

@media (min-width: 1024px) {
    .card-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
}

.game-card {
    position: relative;
    background: linear-gradient(180deg, var(--card) 0%, var(--background-deep) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.game-card:hover {
    transform: translateY(-4px) rotate(-1deg);
    border-color: var(--primary);
    box-shadow: 0 16px 40px rgba(0,0,0,0.6), 0 0 0 1px var(--primary), 0 0 24px var(--primary-glow);
}

.game-card-media {
    position: relative;
    aspect-ratio: 1 / 1;
    background: var(--background-deep);
    overflow: hidden;
}

.game-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card:hover .game-card-media img { transform: scale(1.06); }

.game-card-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.08) 50%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.game-card:hover .game-card-shine { opacity: 1; }

.game-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 100px;
    background: rgba(13, 17, 23, 0.8);
    backdrop-filter: blur(6px);
    border: 1px solid var(--accent);
    color: var(--accent);
    box-shadow: 0 0 12px var(--accent-glow);
}

.game-badge-hot { border-color: var(--danger); color: var(--danger); box-shadow: 0 0 12px rgba(244, 63, 94, 0.5); }
.game-badge-new { border-color: var(--secondary); color: var(--secondary); box-shadow: 0 0 12px var(--secondary-glow); }
.game-badge-megaways { border-color: var(--gold); color: var(--gold); box-shadow: 0 0 12px rgba(250, 204, 21, 0.5); }
.game-badge-live { border-color: var(--danger); color: var(--danger); }
.game-badge-live::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--danger);
    margin-right: 5px;
    animation: livePulse 1.4s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 6px var(--danger); }
    50% { opacity: 0.4; box-shadow: 0 0 12px var(--danger); }
}

.game-rtp {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 100px;
    background: rgba(13, 17, 23, 0.85);
    color: var(--primary);
    border: 1px solid var(--primary);
}

.game-card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.game-card-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: var(--foreground);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.game-card-provider {
    font-size: 0.85rem;
    color: var(--muted-foreground);
    margin: 0 0 12px;
    font-family: var(--font-body);
}

.game-card-body .btn {
    margin-top: auto;
    font-size: 0.8rem;
    padding: 12px 16px;
    min-height: 44px;
}

/* ============================================
   BONUS CARDS - Test-tube capsules
   ============================================ */
.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .bonus-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
}

@media (min-width: 1024px) {
    .bonus-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
}

.bonus-card {
    position: relative;
    background: linear-gradient(180deg, var(--card) 0%, var(--background-deep) 100%);
    border: 1px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 12px 32px rgba(0,0,0,0.5), inset 0 0 40px rgba(0, 212, 255, 0.05);
    animation: cardGlow 2.4s ease-in-out infinite;
}

@media (min-width: 768px) { .bonus-card { padding: 40px 28px; } }

@keyframes cardGlow {
    0%, 100% { box-shadow: 0 12px 32px rgba(0,0,0,0.5), 0 0 0 1px rgba(0, 255, 136, 0.4), inset 0 0 40px rgba(0, 212, 255, 0.05); }
    50% { box-shadow: 0 16px 40px rgba(0,0,0,0.6), 0 0 0 1px var(--primary), 0 0 24px var(--primary-glow), inset 0 0 40px rgba(0, 212, 255, 0.1); }
}

@media (prefers-reduced-motion: reduce) { .bonus-card { animation: none; } }

.bonus-card-highlight {
    border-color: var(--accent);
    background: linear-gradient(180deg, rgba(168, 85, 247, 0.12) 0%, var(--background-deep) 100%);
}

.bonus-card-bubbles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.bonus-card-bubbles span {
    position: absolute;
    bottom: -20px;
    width: 10px;
    height: 10px;
    background: rgba(0, 255, 136, 0.4);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-glow);
    animation: rise 5s linear infinite;
}

.bonus-card-bubbles span:nth-child(1) { left: 15%; animation-delay: 0s; }
.bonus-card-bubbles span:nth-child(2) { left: 35%; animation-delay: 1.2s; width: 7px; height: 7px; }
.bonus-card-bubbles span:nth-child(3) { left: 55%; animation-delay: 2.4s; width: 12px; height: 12px; }
.bonus-card-bubbles span:nth-child(4) { left: 75%; animation-delay: 0.8s; width: 6px; height: 6px; }
.bonus-card-bubbles span:nth-child(5) { left: 90%; animation-delay: 3.2s; }

@keyframes rise {
    0% { transform: translateY(0) scale(0.8); opacity: 0; }
    20% { opacity: 1; }
    100% { transform: translateY(-400px) scale(1.2); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) { .bonus-card-bubbles span { animation: none; opacity: 0.3; } }

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

.bonus-card-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto 16px;
}

.bonus-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 16px var(--primary-glow));
}

.bonus-card-amount {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 1;
    color: var(--primary);
    text-shadow:
        0 0 20px var(--primary-glow),
        0 0 40px rgba(0, 255, 136, 0.4);
    margin-bottom: 8px;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
}

.amount-suffix {
    font-size: 0.4em;
    color: var(--secondary);
    text-shadow: 0 0 16px var(--secondary-glow);
    font-weight: 700;
}

.bonus-card-title {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--foreground);
}

.bonus-card-desc {
    color: var(--muted-foreground);
    font-size: 1rem;
    margin-bottom: 1.25em;
}

.bonus-card-conditions {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bonus-card-conditions li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--muted-foreground);
}

.bonus-card-conditions .check {
    color: var(--secondary);
    font-weight: 700;
    flex-shrink: 0;
    text-shadow: 0 0 8px var(--secondary-glow);
}

.bonus-card .btn { margin-top: auto; min-height: 52px; }

/* ============================================
   PROVIDER LOGOS ROW
   ============================================ */
.providers-row {
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    background: linear-gradient(180deg, var(--background-deep), var(--background));
}

.providers-track {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
}

.providers-track:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
    border-radius: 8px;
}

.providers-track::-webkit-scrollbar { height: 6px; }
.providers-track::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

@media (min-width: 768px) {
    .providers-track { flex-wrap: wrap; justify-content: center; gap: 16px; overflow: visible; }
}

.provider-chip {
    flex: 0 0 auto;
    scroll-snap-align: start;
    padding: 16px 20px;
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-align: center;
    min-width: 160px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.provider-chip:hover {
    border-color: var(--secondary);
    box-shadow: 0 0 16px var(--secondary-glow);
    transform: translateY(-2px);
}

.provider-name {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--secondary);
    letter-spacing: 0.04em;
    text-shadow: 0 0 12px var(--secondary-glow);
    margin-bottom: 4px;
}

.provider-count {
    display: block;
    font-size: 0.8rem;
    color: var(--muted-foreground);
    font-family: var(--font-body);
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-accordion {
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--primary);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item[open] {
    border-left-color: var(--primary);
    box-shadow: -4px 0 24px rgba(0, 255, 136, 0.25), 0 8px 24px rgba(0,0,0,0.4);
}

.faq-question {
    list-style: none;
    cursor: pointer;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    color: var(--foreground);
    letter-spacing: 0.02em;
    user-select: none;
}

@media (min-width: 768px) {
    .faq-question { padding: 24px 32px; font-size: 1.1rem; }
}

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

.faq-q-text { flex: 1; }

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

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    background: var(--primary);
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
    box-shadow: 0 0 6px var(--primary-glow);
}

.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }

.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(0); opacity: 0; }

.faq-answer {
    padding: 0 24px 24px;
    color: var(--muted-foreground);
    font-size: 1rem;
    line-height: 1.65;
    animation: fadeDown 0.3s ease;
}

@media (min-width: 768px) {
    .faq-answer { padding: 0 32px 28px; font-size: 1.05rem; }
}

.faq-answer p { margin: 0 0 0.8em; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer a { color: var(--primary); }

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

/* ============================================
   CTA BANNER - Full-width registration push
   ============================================ */
.cta-banner {
    position: relative;
    padding: 64px 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.08), rgba(0, 212, 255, 0.06), rgba(168, 85, 247, 0.08));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
    overflow: clip;
}

@media (min-width: 1024px) { .cta-banner { padding: 120px 0; } }

.cta-banner-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

.cta-banner-bg .bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(0,255,136,0.4), rgba(0,212,255,0.1) 70%);
    filter: blur(2px);
    animation: floatBubble 8s ease-in-out infinite;
}

.bubble-1 { width: 80px; height: 80px; top: 20%; left: 8%; animation-delay: 0s; }
.bubble-2 { width: 50px; height: 50px; top: 70%; left: 12%; animation-delay: 2s; }
.bubble-3 { width: 100px; height: 100px; top: 30%; right: 8%; animation-delay: 4s; }
.bubble-4 { width: 60px; height: 60px; bottom: 15%; right: 15%; animation-delay: 1s; }

@keyframes floatBubble {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.5; }
    50% { transform: translateY(-30px) scale(1.15); opacity: 0.9; }
}

@media (prefers-reduced-motion: reduce) { .cta-banner-bg .bubble { animation: none; } }

.cta-mascot {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    width: 120px;
    opacity: 0.6;
}

.cta-mascot-left { left: 2%; bottom: 5%; }
.cta-mascot-right { right: 2%; bottom: 5%; }

@media (min-width: 1024px) {
    .cta-mascot { width: 220px; opacity: 1; }
    .cta-mascot-left { bottom: 10%; }
    .cta-mascot-right { bottom: 10%; }
}

.cta-mascot img { width: 100%; height: auto; filter: drop-shadow(0 0 24px var(--primary-glow)); }

.cta-banner-content { position: relative; z-index: 2; }

.cta-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    text-shadow: 0 0 30px var(--primary-glow);
    margin-bottom: 0.5em;
}

.cta-subtitle {
    color: var(--muted-foreground);
    font-size: 1.1rem;
    max-width: 640px;
    margin: 0 auto 2em;
}

.cta-microcopy {
    margin-top: 1.25em;
    font-size: 0.85rem;
    color: var(--muted-foreground);
    letter-spacing: 0.04em;
}

/* ============================================
   STAT HIGHLIGHT
   ============================================ */
.stat-highlight {
    padding: 48px 0;
    background: var(--background-deep);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

@media (min-width: 1024px) { .stat-highlight { padding: 80px 0; } }

.stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

@media (min-width: 768px) {
    .stat-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0;
    }
    .stat-cell + .stat-cell {
        border-left: 1px solid rgba(0, 212, 255, 0.25);
    }
}

.stat-cell {
    text-align: center;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-icon {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 8px;
}

.stat-number {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2.25rem, 5vw, 4.5rem);
    color: var(--primary);
    line-height: 1;
    text-shadow: 0 0 24px var(--primary-glow);
    letter-spacing: 0.02em;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 8px;
}

/* ============================================
   ENGAGEMENT PATTERNS
   ============================================ */
.tldr-box {
    background: linear-gradient(180deg, rgba(0, 255, 136, 0.06), rgba(0, 212, 255, 0.04));
    border: 1px solid var(--primary);
    border-radius: var(--radius);
    padding: 24px 28px;
    margin: 0 0 32px;
    box-shadow: 0 0 24px rgba(0, 255, 136, 0.15);
}

.tldr-box h3 {
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.6em;
}

.callout {
    border-left: 3px solid var(--secondary);
    background: rgba(0, 212, 255, 0.07);
    padding: 18px 22px;
    border-radius: 8px;
    margin: 1.5em 0;
    color: var(--foreground);
}

.callout.callout-warning { border-color: var(--gold); background: rgba(250, 204, 21, 0.07); }
.callout.callout-success { border-color: var(--primary); background: rgba(0, 255, 136, 0.07); }
.callout strong { color: var(--secondary); }

.pull-quote {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2vw + 0.6rem, 1.6rem);
    font-weight: 500;
    line-height: 1.4;
    color: var(--foreground);
    padding: 24px 28px;
    border-left: 4px solid var(--primary);
    background: linear-gradient(90deg, rgba(0, 255, 136, 0.08), transparent);
    margin: 2em 0;
    border-radius: 0 12px 12px 0;
}

.pull-quote cite {
    display: block;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--muted-foreground);
    font-style: normal;
    margin-top: 12px;
    letter-spacing: 0.04em;
}

/* Comparison / data tables */
.data-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    margin: 2em 0;
    background: var(--card);
}

.data-table-wrapper:focus-visible,
.data-table-wrapper:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    min-width: 520px;
}

.data-table thead {
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.12), transparent);
}

.data-table th {
    text-align: left;
    padding: 16px 20px;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--secondary);
    border-bottom: 2px solid var(--primary);
    letter-spacing: 0.04em;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.data-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    color: var(--foreground);
}

.data-table tbody tr { transition: background 0.2s ease; }
.data-table tbody tr:nth-child(odd) { background: rgba(17, 24, 39, 0.4); }
.data-table tbody tr:hover { background: rgba(0, 255, 136, 0.07); }
.data-table tbody tr:last-child td { border-bottom: none; }

.data-table .recommended {
    background: rgba(0, 255, 136, 0.06);
}

/* Trust badges row */
.trust-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 2em 0;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border: 1px solid var(--border-bright);
    border-radius: 100px;
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted-foreground);
    background: rgba(17, 24, 39, 0.6);
}

.trust-badge.trust-18 {
    border-color: var(--danger);
    color: var(--danger);
    font-weight: 700;
}

/* ============================================
   VIP LEVELS / Capsules
   ============================================ */
.vip-levels {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 640px) { .vip-levels { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .vip-levels { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 18px; } }

.vip-level {
    background: linear-gradient(180deg, var(--card), var(--background-deep));
    border: 1px solid var(--accent);
    border-radius: var(--radius);
    padding: 24px 18px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vip-level::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--secondary));
    box-shadow: 0 0 12px var(--accent-glow);
}

.vip-level:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(168, 85, 247, 0.3), 0 0 0 1px var(--accent);
}

.vip-tier {
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted-foreground);
    margin-bottom: 8px;
}

.vip-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent);
    text-shadow: 0 0 16px var(--accent-glow);
    margin-bottom: 16px;
    letter-spacing: 0.04em;
}

.vip-stats {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--muted-foreground);
    text-align: left;
}

.vip-stats div {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed var(--border);
    padding-bottom: 6px;
}

.vip-stats strong { color: var(--foreground); }

/* ============================================
   FEATURE / INFO BLOCKS (gamification, mechanics)
   ============================================ */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

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

.feature-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 16px 32px rgba(0,0,0,0.5), 0 0 24px var(--primary-glow);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0,255,136,0.15), rgba(0,212,255,0.15));
    border: 1px solid var(--primary);
    display: grid;
    place-items: center;
    font-size: 1.8rem;
    box-shadow: 0 0 16px var(--primary-glow);
}

.feature-card h3 { font-size: 1.2rem; margin-bottom: 0.6em; }
.feature-card p { color: var(--muted-foreground); margin: 0; }

/* Filter chips */
.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 0 0 2em;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 100px;
    border: 1px solid var(--border-bright);
    background: var(--card);
    color: var(--muted-foreground);
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: default;
    transition: border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.filter-chip:hover, .filter-chip.is-active {
    border-color: var(--secondary);
    color: var(--secondary);
    box-shadow: 0 0 12px var(--secondary-glow);
}

/* Two-column layout (text + image) */
.split-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

@media (min-width: 1024px) {
    .split-section { grid-template-columns: 1fr 1fr; gap: 64px; }
    .split-section.reverse > :first-child { order: 2; }
}

.split-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--primary);
    box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 32px rgba(0, 255, 136, 0.15);
}

.split-image img { width: 100%; height: auto; display: block; }

/* SEO text section */
.seo-text {
    max-width: 880px;
    margin: 0 auto;
}

.seo-text p { color: var(--muted-foreground); }

.seo-text h2, .seo-text h3 { margin-top: 1.5em; }

.seo-text ul, .seo-text ol {
    padding-left: 20px;
    margin: 1em 0 1.5em;
    color: var(--muted-foreground);
}

.seo-text li { margin-bottom: 0.5em; }

/* Anchor inline links inside text */
.text-link {
    color: var(--primary);
    border-bottom: 1px dashed var(--primary);
    padding-bottom: 1px;
}

.text-link:hover {
    color: var(--secondary);
    border-color: var(--secondary);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--background-deep);
    border-top: 1px solid var(--border);
    padding: 64px 0 0;
    margin-top: 64px;
    color: var(--muted-foreground);
    font-size: 0.95rem;
}

.footer-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 640px) { .footer-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 0 24px; } }
@media (min-width: 1024px) { .footer-inner { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; padding: 0 32px; gap: 48px; } }

.footer-col h3.footer-heading,
.footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary);
    margin: 0 0 1em;
    line-height: 1.2;
}

.brand-footer { margin-bottom: 16px; }

.footer-tag {
    color: var(--muted-foreground);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--muted-foreground);
    font-size: 0.95rem;
    transition: color 0.25s ease;
}

.footer-links a:hover { color: var(--primary); text-shadow: 0 0 8px var(--primary-glow); }

.payment-list {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pay-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(17, 24, 39, 0.6);
    font-family: var(--font-display);
    font-size: 0.75rem;
    color: var(--secondary);
    letter-spacing: 0.08em;
}

.footer-help { font-size: 0.9rem; }

.footer-bottom {
    margin-top: 48px;
    padding: 24px 16px;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 0.85rem;
    color: var(--muted-foreground);
}

.footer-bottom p { margin: 0; max-width: 960px; margin: 0 auto; }
.footer-bottom a {
    color: var(--secondary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ============================================
   ANIMATIONS - Scroll reveal
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll { opacity: 1; transform: none; transition: none; }
}

/* ============================================
   ELEMENT.HTML - Redirect stub
   ============================================ */
.stub-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 32px 16px;
    text-align: center;
    background: var(--background);
}

body.stub-body { padding-top: 0; }

.stub-content { max-width: 480px; }

.stub-brand {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 2rem;
    color: var(--primary);
    text-shadow: 0 0 24px var(--primary-glow);
    letter-spacing: 0.06em;
    margin-bottom: 24px;
}

.stub-mascot {
    width: 200px;
    margin: 0 auto 24px;
    filter: drop-shadow(0 0 24px var(--primary-glow));
    animation: floatY 3s ease-in-out infinite;
}

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.stub-loader {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    border: 3px solid rgba(0, 255, 136, 0.2);
    border-top-color: var(--primary);
    border-right-color: var(--secondary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 24px var(--primary-glow);
}

@keyframes spin { to { transform: rotate(360deg); } }

.stub-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--foreground);
    margin-bottom: 8px;
}

.stub-title .dots::after {
    content: "...";
    animation: dots 1.6s steps(4, end) infinite;
}

@keyframes dots {
    0% { content: ""; }
    25% { content: "."; }
    50% { content: ".."; }
    75% { content: "..."; }
}

.stub-microcopy {
    font-size: 0.9rem;
    color: var(--muted-foreground);
    letter-spacing: 0.04em;
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-muted { color: var(--muted-foreground); }
.mb-0 { margin-bottom: 0; }
.mt-lg { margin-top: 32px; }

.full-bleed {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

/* ============================================
   FAQ PAGE - Search mock + Contact block
   ============================================ */
.faq-search-mock {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 560px;
    margin: 0 auto 1.5em;
    padding: 14px 18px;
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid var(--border-bright);
    border-radius: 100px;
    font-family: var(--font-body);
    color: var(--muted-foreground);
    cursor: default;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-search-mock:hover {
    border-color: var(--primary);
    box-shadow: 0 0 16px var(--primary-glow);
}

@media (min-width: 1024px) {
    .faq-search-mock { margin: 0 0 1.5em; }
}

.faq-search-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.faq-search-text {
    flex: 1;
    font-size: 0.95rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.faq-search-key {
    flex-shrink: 0;
    padding: 4px 8px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: var(--font-display);
    font-size: 0.75rem;
    color: var(--secondary);
    letter-spacing: 0.06em;
}

.faq-section { padding: 56px 0; }

@media (min-width: 1024px) {
    .faq-section { padding: 80px 0; }
}

.faq-section + .faq-section {
    border-top: 1px dashed var(--border);
}

.support-quick { padding-bottom: 32px; }

@media (min-width: 1024px) {
    .support-quick { padding-bottom: 48px; }
}

.contact-block { padding: 64px 0; }

@media (min-width: 1024px) {
    .contact-block { padding: 96px 0; }
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 1em;
}

.contact-actions .btn { flex: 1 1 auto; min-width: 200px; }

@media (min-width: 768px) {
    .contact-actions .btn { flex: 0 0 auto; }
}

/* ============================================
   JACKPOT CARDS (spielautomaten page)
   ============================================ */
.jackpot-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .jackpot-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
}

.jackpot-card {
    background: linear-gradient(180deg, var(--card), var(--background-deep));
    border: 1px solid var(--accent);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 16px 36px rgba(0,0,0,0.5), 0 0 24px rgba(168, 85, 247, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.jackpot-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.6), 0 0 32px var(--accent-glow);
}

.jackpot-ticker {
    background: linear-gradient(90deg, rgba(168, 85, 247, 0.2), rgba(0, 212, 255, 0.15));
    border-bottom: 1px solid var(--accent);
    padding: 14px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ticker-label {
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted-foreground);
}

.ticker-amount {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
    color: var(--accent);
    text-shadow: 0 0 20px var(--accent-glow);
    letter-spacing: 0.02em;
    animation: tickerPulse 2s ease-in-out infinite;
}

@keyframes tickerPulse {
    0%, 100% { text-shadow: 0 0 20px var(--accent-glow); }
    50% { text-shadow: 0 0 32px var(--accent-glow), 0 0 48px rgba(168, 85, 247, 0.4); }
}

@media (prefers-reduced-motion: reduce) {
    .ticker-amount { animation: none; }
}

.jackpot-card .game-card-media {
    aspect-ratio: 16 / 9;
}

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

.jackpot-body {
    padding: 20px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.jackpot-body h3 {
    margin: 0;
    font-size: 1.3rem;
    color: var(--accent);
    text-shadow: 0 0 12px var(--accent-glow);
}

.jackpot-body .bonus-card-conditions {
    margin: 8px 0 16px;
}

.jackpot-body .btn {
    margin-top: auto;
}

/* Mechanics filter - hide non-matching */
#mech-grid > [data-mech].is-hidden {
    display: none;
}