/* ============================================
   CASINOLAB - Neon Laboratory Design System
   Mobile-first, dark theme, German market
   ============================================ */

/* ============================================
   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; }
pre code, .code-block code { display: block; min-width: 0; }

.table-wrapper, [class*="table-"] { max-width: 100%; overflow-x: auto; }
.table-wrapper:focus { outline: 2px solid var(--accent); outline-offset: 2px; }

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

input, textarea, select { max-width: 100%; }

section { overflow: clip; }

html, body { max-width: 100%; overflow-x: hidden; }

/* ============================================
   BASE TYPOGRAPHY & RESET
   ============================================ */
html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: "Nunito", system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
    background-image:
        radial-gradient(ellipse 800px 600px at 10% -10%, rgba(0, 255, 136, 0.08), transparent 60%),
        radial-gradient(ellipse 800px 600px at 90% 110%, rgba(0, 191, 255, 0.08), transparent 60%);
    background-attachment: fixed;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: "Bungee", "Nunito", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.15;
    color: var(--foreground);
    margin: 0 0 var(--space-md);
}

h1 { font-size: clamp(2rem, 6vw + 0.5rem, 4rem); }
h2 { font-size: clamp(1.625rem, 4vw + 0.5rem, 2.75rem); }
h3 { font-size: clamp(1.25rem, 1.5vw + 0.75rem, 1.75rem); }
h4 { font-size: clamp(1.125rem, 1vw + 0.75rem, 1.375rem); }

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 250ms ease-out;
}
a:hover { color: var(--accent); }

strong, b { font-weight: 800; }

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

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

/* ============================================
   LAYOUT - Container & Sections
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--space-md);
}

@media (min-width: 768px) {
    .container { padding-inline: var(--space-lg); }
}

.section {
    padding-block: clamp(64px, 10vw, 120px);
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-md);
}

.section-sub {
    text-align: center;
    max-width: 680px;
    margin: 0 auto var(--space-lg);
    color: var(--muted-foreground);
    font-size: clamp(1rem, 1.5vw, 1.125rem);
}

.eyebrow {
    display: inline-block;
    font-family: "Bungee", sans-serif;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    padding: 6px 14px;
    border: 1px solid rgba(0, 255, 136, 0.4);
    border-radius: 999px;
    background: rgba(0, 255, 136, 0.08);
    margin-bottom: var(--space-md);
}

.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }
.text-muted { color: var(--muted-foreground); }
.text-center { text-align: center; }

.neon-text {
    color: var(--accent);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.6), 0 0 30px rgba(0, 255, 136, 0.35);
}
.neon-text-blue {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0, 191, 255, 0.6), 0 0 30px rgba(0, 191, 255, 0.35);
}

/* ============================================
   BACKGROUNDS - Lab Atmosphere
   ============================================ */
.dark-lab-bg {
    background-color: var(--background);
    position: relative;
}

.neon-grid {
    background-image:
        linear-gradient(rgba(0, 191, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 191, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}

.full-bleed { width: 100%; }

/* ============================================
   BUTTONS - CTA System
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 24px;
    font-family: "Bungee", sans-serif;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 250ms ease-out, box-shadow 250ms ease-out, background 250ms ease-out;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #00bfff 0%, #00ff88 100%);
    color: #04111c;
    border-color: rgba(0, 255, 136, 0.6);
}

.btn-primary:hover {
    transform: translateY(-2px);
    color: #04111c;
}

.btn-ghost {
    background: transparent;
    color: var(--foreground);
    border-color: rgba(0, 191, 255, 0.4);
}
.btn-ghost:hover {
    background: rgba(0, 191, 255, 0.1);
    color: var(--primary);
    border-color: var(--primary);
}

.btn-neon {
    box-shadow:
        0 0 0 0 rgba(0, 255, 136, 0.6),
        0 8px 24px rgba(0, 255, 136, 0.25);
    animation: pulseNeon 2.4s ease-in-out infinite;
}

.btn-xl {
    min-height: 56px;
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 16px;
}

@keyframes pulseNeon {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0), 0 8px 24px rgba(0, 255, 136, 0.25); }
    50% { box-shadow: 0 0 0 8px rgba(0, 255, 136, 0), 0 12px 32px rgba(0, 255, 136, 0.45); }
}

.microcopy {
    font-size: 12px;
    color: var(--muted-foreground);
    margin-top: 12px;
    margin-bottom: 0;
}

/* ============================================
   HEADER - Fixed Site Navigation
   ============================================ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(10, 14, 26, 0.92);
    border-bottom: 1px solid rgba(0, 255, 136, 0.25);
    box-shadow: 0 1px 0 rgba(0, 191, 255, 0.15), 0 8px 24px rgba(0, 0, 0, 0.4);
}

@media (min-width: 1024px) {
    .site-header { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--foreground);
    font-family: "Bungee", sans-serif;
    font-size: 20px;
    text-transform: uppercase;
}
.brand .logo {
    width: 40px; height: 40px;
    filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.6));
}
.brand-name { letter-spacing: 0.02em; }
.brand-accent { color: var(--accent); }

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

/* Mobile menu toggle */
.menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: 1px solid rgba(0, 191, 255, 0.4);
    border-radius: 10px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}
.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--foreground);
    border-radius: 2px;
    transition: transform 250ms ease-out, opacity 200ms ease-out;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer (default = mobile) */
.main-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--background);
    border-top: 1px solid rgba(0, 255, 136, 0.25);
    padding: var(--space-lg) var(--space-md);
    overflow-y: auto;
    z-index: 999;
    flex-direction: column;
}

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

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-lg);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
}

.nav-link {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 16px;
    font-family: "Bungee", sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    color: var(--foreground);
    text-decoration: none;
    border-radius: 10px;
    border-left: 3px solid transparent;
    transition: background 250ms ease-out, border-color 250ms ease-out, color 250ms ease-out;
}
.nav-link:hover, .nav-link:focus {
    background: rgba(0, 255, 136, 0.08);
    border-left-color: var(--accent);
    color: var(--accent);
}

.nav-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nav-mascot {
    margin-top: auto;
    text-align: center;
    padding-top: var(--space-lg);
}
.nav-mascot img {
    max-width: 200px;
    height: auto;
    animation: float 4s ease-in-out infinite;
}

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

    .main-nav {
        display: flex !important;
        position: static;
        flex-direction: row;
        align-items: center;
        gap: var(--space-md);
        background: transparent;
        border: none;
        padding: 0;
        overflow: visible;
        flex: 1;
        justify-content: flex-end;
    }
    .nav-list {
        flex-direction: row;
        gap: 4px;
        margin: 0;
    }
    .nav-link {
        font-size: 14px;
        min-height: 40px;
        padding: 8px 14px;
        border-left: none;
        border-bottom: 2px solid transparent;
        border-radius: 8px;
    }
    .nav-link:hover {
        border-left: none;
        border-bottom-color: var(--accent);
    }
    .nav-cta { flex-direction: row; }
    .nav-mascot { display: none; }
}

/* ============================================
   HERO - Storytelling Section
   ============================================ */
.hero {
    position: relative;
    padding-block: clamp(48px, 8vw, 96px);
}

.hero-inner {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--space-md);
    display: grid;
    gap: var(--space-lg);
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1.1fr 0.9fr;
        padding-inline: var(--space-lg);
    }
}

.hero h1 {
    font-size: clamp(2rem, 6vw + 0.5rem, 4rem);
    margin-bottom: var(--space-md);
}

.hero p.lead {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--muted-foreground);
    max-width: 600px;
    margin-bottom: var(--space-lg);
}

.hero-mascot {
    position: relative;
    text-align: center;
}
.hero-mascot img {
    max-width: 100%;
    width: auto;
    height: auto;
    animation: float 5s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 255, 136, 0.25));
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

/* ============================================
   CTA BANNER COMPONENT
   ============================================ */
.cta-banner {
    position: relative;
    padding-block: clamp(64px, 10vw, 120px);
    overflow: clip;
}

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

.neon-blob {
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}
.blob-green { background: #00ff88; top: -120px; left: -100px; }
.blob-blue { background: #00bfff; bottom: -150px; right: -120px; }

.cta-banner-inner {
    position: relative;
    z-index: 1;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--space-md);
    display: grid;
    gap: var(--space-lg);
    align-items: center;
    text-align: center;
}

@media (min-width: 1024px) {
    .cta-banner-inner {
        grid-template-columns: 1.2fr 1fr;
        text-align: left;
        padding-inline: var(--space-lg);
    }
}

.cta-banner-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: var(--space-md);
    color: var(--foreground);
    text-shadow: 0 0 24px rgba(0, 255, 136, 0.35);
}

.cta-banner-highlight {
    font-family: "Bungee", sans-serif;
    font-size: clamp(3rem, 9vw, 5.5rem);
    line-height: 1;
    color: var(--accent);
    text-shadow: 0 0 16px rgba(0, 255, 136, 0.6), 0 0 40px rgba(0, 255, 136, 0.35);
    margin: var(--space-sm) 0;
}

.cta-banner-sub {
    color: var(--muted-foreground);
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 1024px) {
    .cta-banner-sub { margin-left: 0; margin-right: 0; }
}

.cta-banner-mascot {
    text-align: center;
}
.cta-banner-mascot img {
    max-width: 420px;
    width: 100%;
    height: auto;
    animation: float 5s ease-in-out infinite;
    filter: drop-shadow(0 24px 48px rgba(0, 191, 255, 0.3));
}

/* ============================================
   GAME CARD - Flask Style
   ============================================ */
.game-card-grid {
    display: grid;
    gap: var(--space-md);
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .game-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .game-card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1280px) {
    .game-card-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* Mobile horizontal snap carousel */
.game-card-scroll {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 78%;
    gap: var(--space-sm);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 8px var(--space-md) var(--space-md);
    margin: 0 calc(-1 * var(--space-md));
    scrollbar-width: thin;
}
.game-card-scroll > * {
    scroll-snap-align: start;
    min-width: 0;
}

@media (min-width: 640px) {
    .game-card-scroll { grid-auto-columns: 45%; }
}
@media (min-width: 1024px) {
    .game-card-scroll {
        grid-auto-flow: initial;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        grid-auto-columns: initial;
        overflow: visible;
        padding: 0;
        margin: 0;
    }
}

.game-card {
    min-width: 0;
    height: 100%;
}

.game-card-flask {
    position: relative;
    height: 100%;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.95) 0%, rgba(10, 14, 26, 0.95) 100%);
    border: 1.5px solid rgba(0, 255, 136, 0.3);
    border-radius: 20px 20px 28px 28px;
    padding: var(--space-sm);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 250ms ease-out, box-shadow 250ms ease-out, border-color 250ms ease-out;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(0, 255, 136, 0.15);
}

.game-card-flask::before {
    content: "";
    position: absolute;
    top: 0; left: 12px; right: 12px;
    height: 6px;
    background: rgba(0, 255, 136, 0.2);
    border-radius: 0 0 8px 8px;
    pointer-events: none;
}

.game-card-flask:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 32px rgba(0, 255, 136, 0.3);
}

.game-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    font-family: "Bungee", sans-serif;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--accent);
    color: var(--accent-foreground);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.game-card-image {
    position: relative;
    aspect-ratio: 16 / 10;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: var(--space-sm);
    background: var(--secondary);
}
.game-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms ease-out;
}
.game-card-flask:hover .game-card-image img { transform: scale(1.05); }

.game-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 6px;
    margin-bottom: var(--space-sm);
}

.game-card-title {
    font-size: 1.125rem;
    margin: 0;
    line-height: 1.15;
}

.game-card-desc {
    font-size: 14px;
    color: var(--muted-foreground);
    margin: 0;
    line-height: 1.5;
}

.game-card-provider {
    display: inline-block;
    align-self: flex-start;
    font-family: "Bungee", sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    padding: 4px 8px;
    border: 1px solid rgba(0, 191, 255, 0.3);
    border-radius: 6px;
    margin-top: auto;
}

.game-card-cta {
    width: 100%;
    min-height: 48px;
}

/* Bubbles animation */
.bubbles {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}
.bubbles span {
    position: absolute;
    bottom: -20px;
    width: 8px;
    height: 8px;
    background: rgba(0, 255, 136, 0.5);
    border-radius: 50%;
    animation: bubble 6s ease-in infinite;
    box-shadow: 0 0 6px rgba(0, 255, 136, 0.6);
}
.bubbles span:nth-child(1) { left: 15%; animation-delay: 0s; }
.bubbles span:nth-child(2) { left: 40%; animation-delay: 1.5s; width: 6px; height: 6px; }
.bubbles span:nth-child(3) { left: 65%; animation-delay: 3s; width: 10px; height: 10px; }
.bubbles span:nth-child(4) { left: 85%; animation-delay: 2.2s; }
.bubbles-bg span { background: rgba(0, 191, 255, 0.4); box-shadow: 0 0 6px rgba(0, 191, 255, 0.6); }
.bubbles-bg span:nth-child(5) { left: 25%; animation-delay: 4s; }
.bubbles-bg span:nth-child(6) { left: 75%; animation-delay: 5s; }

@keyframes bubble {
    0% { transform: translateY(0) scale(0.6); opacity: 0; }
    20% { opacity: 1; }
    100% { transform: translateY(-300px) scale(1.1); opacity: 0; }
}

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

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

.faq-item {
    background: var(--card);
    border: 1px solid rgba(0, 255, 136, 0.18);
    border-left: 3px solid var(--accent);
    border-radius: 14px;
    overflow: hidden;
    transition: box-shadow 250ms ease-out, border-color 250ms ease-out;
}

.faq-item[open] {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px rgba(0, 255, 136, 0.4), 0 0 24px rgba(0, 255, 136, 0.2);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 56px;
    padding: 16px 20px;
    font-family: "Bungee", sans-serif;
    font-size: clamp(0.95rem, 1.5vw, 1.125rem);
    color: var(--foreground);
    cursor: pointer;
    list-style: none;
    text-transform: uppercase;
    line-height: 1.3;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { color: var(--accent); }

.faq-icon {
    flex-shrink: 0;
    color: var(--accent);
    display: inline-flex;
}

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

.faq-plus {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 250ms ease-out;
}
.faq-plus::before, .faq-plus::after {
    content: "";
    position: absolute;
    left: 50%; top: 50%;
    background: var(--accent);
    border-radius: 2px;
}
.faq-plus::before { width: 16px; height: 2px; transform: translate(-50%, -50%); }
.faq-plus::after { width: 2px; height: 16px; transform: translate(-50%, -50%); transition: transform 250ms ease-out; }

.faq-item[open] .faq-plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-plus { transform: rotate(45deg); }

.faq-answer {
    padding: 0 20px 20px 52px;
    color: var(--muted-foreground);
    font-size: 16px;
    line-height: 1.7;
    animation: fadeSlide 250ms ease-out;
}
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer a { color: var(--primary); }

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

/* ============================================
   STAT HIGHLIGHT
   ============================================ */
.stat-highlight-section {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--space-md);
}

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

@media (min-width: 640px) {
    .stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-md); }
}
@media (min-width: 1024px) {
    .stat-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.stat-pipette {
    position: relative;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.9) 0%, rgba(10, 14, 26, 0.9) 100%);
    border: 1.5px solid rgba(0, 255, 136, 0.3);
    border-radius: 16px 16px 24px 24px;
    padding: var(--space-lg) var(--space-md);
    text-align: center;
    overflow: hidden;
}
.stat-pipette::before {
    content: "";
    position: absolute;
    top: 0; left: 30%; right: 30%;
    height: 5px;
    background: rgba(0, 255, 136, 0.25);
    border-radius: 0 0 6px 6px;
}

.stat-icon {
    color: var(--accent);
    margin-bottom: var(--space-sm);
    display: inline-flex;
    filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.5));
}

.stat-number {
    font-family: "Bungee", sans-serif;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1;
    color: var(--accent);
    text-shadow: 0 0 12px rgba(0, 255, 136, 0.5), 0 0 30px rgba(0, 255, 136, 0.3);
    margin-bottom: 8px;
}

.stat-label {
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-source {
    margin-top: 8px;
    font-size: 12px;
    color: var(--muted-foreground);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #050811;
    border-top: 2px solid rgba(0, 255, 136, 0.3);
    padding-top: var(--space-2xl);
    margin-top: var(--space-2xl);
}

.footer-inner {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--space-md);
    display: grid;
    gap: var(--space-lg);
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .footer-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .footer-inner {
        grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
        padding-inline: var(--space-lg);
    }
}

.footer-brand .brand { margin-bottom: var(--space-sm); }
.footer-tag {
    color: var(--muted-foreground);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: var(--space-sm);
}

.age-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(244, 63, 94, 0.1);
    border: 1px solid rgba(244, 63, 94, 0.4);
    border-radius: 10px;
}
.age-badge span {
    font-family: "Bungee", sans-serif;
    color: #f43f5e;
    font-size: 18px;
}
.age-badge small {
    color: var(--muted-foreground);
    font-size: 12px;
}

.footer-heading {
    font-family: "Bungee", sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.08em;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-list a {
    color: var(--muted-foreground);
    font-size: 14px;
    text-decoration: none;
    transition: color 250ms;
}
.footer-list a:hover { color: var(--accent); }

.payment-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: var(--space-sm);
}

.pay-chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    background: rgba(17, 24, 39, 0.8);
    border: 1px solid rgba(0, 191, 255, 0.25);
    border-radius: 8px;
    font-family: "Bungee", sans-serif;
    font-size: 11px;
    letter-spacing: 0.05em;
    color: var(--foreground);
}
.pay-crypto {
    border-color: rgba(0, 255, 136, 0.4);
    color: var(--accent);
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.trust-badge {
    padding: 6px 10px;
    font-size: 11px;
    background: rgba(0, 255, 136, 0.08);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: var(--accent);
    border-radius: 6px;
    font-family: "Bungee", sans-serif;
    letter-spacing: 0.05em;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 191, 255, 0.15);
    margin-top: var(--space-lg);
    padding: var(--space-md);
    text-align: center;
}
.footer-bottom p {
    color: var(--muted-foreground);
    font-size: 13px;
    margin: 0;
    max-width: 900px;
    margin-inline: auto;
}
.footer-bottom a { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }

/* ============================================
   CARDS - Content Containers
   ============================================ */
.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: var(--space-md);
    min-width: 0;
}

.card p a,
.card-neon p a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.card-neon {
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 0 0 1px rgba(0, 255, 136, 0.1), 0 12px 32px rgba(0, 0, 0, 0.3);
}

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

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

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

/* Summary / TL;DR */
.summary-box {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.08) 0%, rgba(0, 191, 255, 0.05) 100%);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-left: 4px solid var(--accent);
    border-radius: 14px;
    padding: var(--space-md);
    margin-block: var(--space-md);
}
.summary-box h3 {
    font-size: 1rem;
    color: var(--accent);
    margin-bottom: 8px;
}

/* Callout */
.callout {
    display: flex;
    gap: var(--space-sm);
    padding: var(--space-sm);
    background: rgba(0, 191, 255, 0.08);
    border: 1px solid rgba(0, 191, 255, 0.3);
    border-radius: 12px;
    margin-block: var(--space-md);
}
.callout-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: var(--primary-foreground);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Bungee", sans-serif;
}
.callout-warn {
    background: rgba(244, 63, 94, 0.1);
    border-color: rgba(244, 63, 94, 0.4);
}
.callout-warn .callout-icon { background: #f43f5e; }
.callout p:last-child { margin: 0; }
.callout a {
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}

/* Pull quote */
.pull-quote {
    border-left: 4px solid var(--accent);
    padding: var(--space-sm) var(--space-md);
    margin: var(--space-lg) 0;
    font-style: italic;
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--foreground);
    background: linear-gradient(90deg, rgba(0, 255, 136, 0.06), transparent);
}
.pull-quote cite {
    display: block;
    margin-top: var(--space-sm);
    font-style: normal;
    font-size: 14px;
    color: var(--muted-foreground);
    font-family: "Bungee", sans-serif;
}

/* Comparison table */
.table-wrapper {
    margin-block: var(--space-md);
    border: 1px solid var(--border);
    border-radius: 14px;
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    min-width: 480px;
}
.comparison-table thead {
    background: rgba(0, 191, 255, 0.1);
}
.comparison-table th {
    text-align: left;
    padding: 14px 16px;
    font-family: "Bungee", sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 0.06em;
    border-bottom: 1px solid var(--border);
}
.comparison-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--foreground);
}
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:hover { background: rgba(0, 255, 136, 0.04); }
.comparison-table .col-highlight {
    background: rgba(0, 255, 136, 0.06);
    color: var(--accent);
    font-weight: 700;
}

/* Trust badges row */
.trust-badges-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
    margin-block: var(--space-md);
}

/* Provider logo wall */
.logo-wall {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    max-width: 960px;
    margin: 0 auto;
}
@media (min-width: 640px) { .logo-wall { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .logo-wall { grid-template-columns: repeat(6, minmax(0, 1fr)); } }

.logo-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 12px;
    background: rgba(17, 24, 39, 0.7);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 12px;
    font-family: "Bungee", sans-serif;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;
    color: var(--foreground);
    min-height: 56px;
    transition: border-color 250ms, box-shadow 250ms;
}
.logo-chip:hover {
    border-color: var(--accent);
    box-shadow: 0 0 16px rgba(0, 255, 136, 0.25);
}

/* Step list */
.step-list {
    counter-reset: stepcount;
    list-style: none;
    padding: 0;
    margin: var(--space-md) 0;
    display: grid;
    gap: var(--space-md);
}
.step-list > li {
    counter-increment: stepcount;
    position: relative;
    padding: var(--space-md) var(--space-md) var(--space-md) 72px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
}
.step-list > li::before {
    content: counter(stepcount);
    position: absolute;
    left: 16px;
    top: 16px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--accent-foreground);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Bungee", sans-serif;
    font-size: 18px;
}

/* Testimonial */
.testimonial-card {
    background: var(--card);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 14px;
    padding: var(--space-md);
    position: relative;
}
.testimonial-stars {
    color: #ffc94d;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: var(--space-xs);
}
.testimonial-quote {
    font-style: italic;
    color: var(--foreground);
    font-size: 16px;
    margin-bottom: var(--space-sm);
}
.testimonial-author {
    font-family: "Bungee", sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--muted-foreground);
}

/* Internal links grid */
.link-tiles {
    display: grid;
    gap: var(--space-md);
    grid-template-columns: 1fr;
}
@media (min-width: 640px) { .link-tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .link-tiles { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.link-tile {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: var(--space-md);
    background: var(--card);
    border: 1.5px solid rgba(0, 191, 255, 0.25);
    border-radius: 16px;
    text-decoration: none;
    color: var(--foreground);
    transition: transform 250ms, border-color 250ms, box-shadow 250ms;
}
.link-tile:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 12px 32px rgba(0, 255, 136, 0.2);
    color: var(--foreground);
}
.link-tile-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(0, 255, 136, 0.1);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    font-family: "Bungee", sans-serif;
    font-size: 20px;
}
.link-tile-title {
    font-family: "Bungee", sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--foreground);
}
.link-tile-desc {
    font-size: 14px;
    color: var(--muted-foreground);
    margin: 0;
}

/* SEO text block */
.prose {
    max-width: 880px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.75;
    color: var(--foreground);
}
.prose h2, .prose h3 { margin-top: var(--space-lg); }
.prose p { color: var(--foreground); }
.prose ul, .prose ol { padding-left: 24px; margin-bottom: var(--space-md); }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--primary); }

/* Chalkboard background */
.chalkboard {
    background:
        radial-gradient(ellipse at center, rgba(0, 191, 255, 0.08), transparent 70%),
        linear-gradient(180deg, #0d1424 0%, #050811 100%);
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-radius: 20px;
    padding: var(--space-lg);
    position: relative;
    overflow: hidden;
}
.chalkboard::before {
    content: "RTP = (Σ Auszahlungen / Σ Einsätze) × 100";
    position: absolute;
    top: 16px;
    left: 24px;
    font-family: "Bungee", sans-serif;
    font-size: 12px;
    color: rgba(0, 255, 136, 0.3);
    pointer-events: none;
}

/* ============================================
   ANIMATIONS - Scroll Reveal
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 600ms ease-out, transform 600ms ease-out;
    transition-delay: var(--stagger, 0ms);
}
.animate-on-scroll.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;
    }
    .animate-on-scroll { opacity: 1; transform: none; }
}

/* ============================================
   TERMS PAGE
   ============================================ */
.terms-hero {
    padding-block: clamp(40px, 6vw, 72px);
}
.terms-hero-inner {
    grid-template-columns: 1fr;
    text-align: left;
}
.terms-hero h1 {
    font-size: clamp(1.75rem, 4vw + 0.5rem, 3rem);
}
.terms-toc {
    margin-top: var(--space-md);
    padding: var(--space-md);
    background: var(--card);
    border: 1px solid rgba(0, 191, 255, 0.25);
    border-left: 4px solid var(--primary);
    border-radius: 12px;
}
.terms-toc-title {
    display: block;
    font-family: "Bungee", sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    margin-bottom: 12px;
}
.terms-toc-list {
    margin: 0;
    padding-left: 20px;
    columns: 1;
    column-gap: var(--space-lg);
}
@media (min-width: 768px) {
    .terms-toc-list { columns: 2; }
}
.terms-toc-list li {
    margin-bottom: 6px;
    break-inside: avoid;
}
.terms-toc-list a {
    color: var(--muted-foreground);
    font-size: 14px;
    text-decoration: none;
}
.terms-toc-list a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.terms-section {
    padding-block: clamp(40px, 6vw, 72px);
}
.terms-section-alt {
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.4) 0%, transparent 100%);
}
.terms-prose {
    max-width: 880px;
    scroll-margin-top: calc(var(--header-h) + 20px);
}
.terms-section-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
}
.terms-section-head h2 {
    margin: 0;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    line-height: 1.2;
}
.terms-flask-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(0, 255, 136, 0.1);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 255, 136, 0.3);
}
.terms-prose h3 {
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    margin-top: var(--space-md);
    margin-bottom: 10px;
    color: var(--foreground);
}
.terms-prose p, .terms-prose li {
    font-size: 15.5px;
    line-height: 1.75;
}
.terms-final { padding-bottom: clamp(60px, 8vw, 96px); }
.terms-cta {
    margin-top: var(--space-md);
    text-align: center;
}

/* ============================================
   LAB REDIRECT PAGE
   ============================================ */
.lab-redirect { padding-block: clamp(80px, 12vw, 160px); }
.lab-redirect-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}
.lab-redirect-inner img {
    max-width: 280px;
    height: auto;
    margin: 0 auto var(--space-md);
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 255, 136, 0.3));
}

/* ============================================
   INDEX PAGE - Hero extras
   ============================================ */
.hero-bg-blobs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}
.hero-bg-blobs .neon-blob.blob-green { top: -80px; left: -120px; opacity: 0.35; }
.hero-bg-blobs .neon-blob.blob-blue { bottom: -120px; right: -100px; opacity: 0.35; }

.hero-inner { position: relative; z-index: 1; }

.hero-bullets {
    list-style: none;
    padding: 0;
    margin: var(--space-md) 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.hero-bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--foreground);
}
.hero-bullets li span {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 8px;
    font-size: 18px;
}

.hero-flask-coin {
    position: absolute;
    top: 12%;
    right: 4%;
    background: linear-gradient(135deg, #ffd54a, #ff9800);
    color: #2a1a00;
    font-family: "Bungee", sans-serif;
    font-size: clamp(1.25rem, 3.5vw, 2rem);
    padding: 12px 18px;
    border-radius: 50%;
    box-shadow: 0 0 24px rgba(255, 213, 74, 0.5);
    transform: rotate(-12deg);
    z-index: 2;
}

/* ============================================
   BONUS PACK
   ============================================ */
.bonus-pack-grid {
    display: grid;
    gap: var(--space-md);
    grid-template-columns: 1fr;
    margin-top: var(--space-lg);
}
@media (min-width: 768px) {
    .bonus-pack-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.bonus-flask {
    position: relative;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.95) 0%, rgba(10, 14, 26, 0.95) 100%);
    border: 1.5px solid rgba(0, 255, 136, 0.3);
    border-radius: 20px 20px 32px 32px;
    padding: var(--space-md);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 250ms, box-shadow 250ms, border-color 250ms;
}
.bonus-flask:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45), 0 0 32px rgba(0, 255, 136, 0.25);
}
.bonus-flask-featured {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px rgba(0, 255, 136, 0.4), 0 12px 32px rgba(0, 255, 136, 0.15);
}
.bonus-flask-cap {
    align-self: center;
    padding: 6px 14px;
    background: var(--primary);
    color: var(--primary-foreground);
    border-radius: 999px;
    font-family: "Bungee", sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.bonus-flask-image {
    display: flex;
    justify-content: center;
    margin: 0;
}
.bonus-flask-image img { max-width: 200px; height: auto; }
.bonus-flask-amount {
    font-family: "Bungee", sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    line-height: 1;
}
.bonus-flask-meta {
    color: var(--muted-foreground);
    margin: 0;
    font-size: 14px;
}
.bonus-flask-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    color: var(--foreground);
    text-align: left;
}
.bonus-flask-list li {
    padding-left: 22px;
    position: relative;
}
.bonus-flask-list li::before {
    content: "▸";
    position: absolute;
    left: 6px;
    color: var(--accent);
}

/* ============================================
   SECTION CTA
   ============================================ */
.section-cta {
    margin-top: var(--space-lg);
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
}

/* ============================================
   LIVE SECTION
   ============================================ */
.live-grid {
    display: grid;
    gap: var(--space-lg);
    grid-template-columns: 1fr;
    align-items: center;
}
@media (min-width: 1024px) {
    .live-grid { grid-template-columns: 1.05fr 0.95fr; }
}

.check-list {
    list-style: none;
    padding: 0;
    margin: var(--space-md) 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.check-list li {
    position: relative;
    padding-left: 30px;
    color: var(--foreground);
}
.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    background: rgba(0, 255, 136, 0.15);
    color: var(--accent);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Bungee", sans-serif;
    font-size: 12px;
}

.live-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.live-mascot {
    text-align: center;
}
.live-mascot img {
    max-width: 100%;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 48px rgba(0, 191, 255, 0.3));
}

/* ============================================
   CRAB SECTION
   ============================================ */
.crab-section {
    position: relative;
    overflow: clip;
    background: linear-gradient(180deg, #0a0e1a 0%, #0d1424 50%, #0a0e1a 100%);
}
.crab-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.crab-section .container { position: relative; z-index: 1; }

.crab-grid {
    display: grid;
    gap: var(--space-lg);
    grid-template-columns: 1fr;
    align-items: center;
}
@media (min-width: 1024px) {
    .crab-grid { grid-template-columns: 0.9fr 1.1fr; }
}

.crab-mascot { text-align: center; }
.crab-mascot img {
    max-width: 100%;
    animation: float 5s ease-in-out infinite;
    filter: drop-shadow(0 24px 48px rgba(244, 63, 94, 0.25));
}

.crab-prizes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: var(--space-md) 0;
}
@media (min-width: 640px) {
    .crab-prizes { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.crab-prize {
    background: rgba(17, 24, 39, 0.8);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 12px;
    padding: 14px 10px;
    text-align: center;
}
.crab-prize strong {
    display: block;
    font-family: "Bungee", sans-serif;
    color: var(--accent);
    font-size: clamp(0.95rem, 2.4vw, 1.25rem);
    line-height: 1.1;
    text-shadow: 0 0 12px rgba(0, 255, 136, 0.4);
}
.crab-prize span {
    display: block;
    margin-top: 6px;
    font-size: 11px;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   USP GRID
   ============================================ */
.usp-grid {
    display: grid;
    gap: var(--space-md);
    grid-template-columns: 1fr;
    margin-bottom: var(--space-lg);
}
@media (min-width: 640px) { .usp-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .usp-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.usp-card {
    background: var(--card);
    border: 1px solid rgba(0, 191, 255, 0.25);
    border-radius: 16px;
    padding: var(--space-md);
    transition: transform 250ms, border-color 250ms, box-shadow 250ms;
}
.usp-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 12px 32px rgba(0, 255, 136, 0.15);
}
.usp-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: var(--space-sm);
}
.usp-card h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
}
.usp-card p {
    color: var(--muted-foreground);
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   TESTIMONIAL GRID
   ============================================ */
.testi-grid {
    display: grid;
    gap: var(--space-md);
    grid-template-columns: 1fr;
}
@media (min-width: 768px) { .testi-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

/* ============================================
   VIP PROGRAM GRID
   ============================================ */
.vip-grid {
    display: grid;
    gap: var(--space-md);
    grid-template-columns: 1fr;
    margin-top: var(--space-lg);
}
@media (min-width: 640px) {
    .vip-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .vip-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: var(--space-sm); }
}

.vip-level {
    position: relative;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.95) 0%, rgba(10, 14, 26, 0.95) 100%);
    border: 1.5px solid rgba(0, 191, 255, 0.25);
    border-radius: 16px 16px 24px 24px;
    padding: var(--space-md) var(--space-sm);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 250ms, box-shadow 250ms, border-color 250ms;
}
.vip-level::before {
    content: "";
    position: absolute;
    top: 0; left: 28%; right: 28%;
    height: 5px;
    background: rgba(0, 191, 255, 0.3);
    border-radius: 0 0 6px 6px;
}
.vip-level:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: 0 16px 32px rgba(0, 255, 136, 0.18);
}

.vip-level-featured {
    border-color: rgba(0, 255, 136, 0.4);
}
.vip-level-top {
    border-color: var(--accent);
    background: linear-gradient(180deg, rgba(0, 255, 136, 0.08) 0%, rgba(10, 14, 26, 0.95) 100%);
    box-shadow: 0 0 0 1px rgba(0, 255, 136, 0.3), 0 12px 32px rgba(0, 255, 136, 0.15);
}

.vip-badge {
    align-self: center;
    padding: 5px 12px;
    background: var(--primary);
    color: var(--primary-foreground);
    border-radius: 999px;
    font-family: "Bungee", sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.vip-level-top .vip-badge {
    background: var(--accent);
    color: var(--accent-foreground);
}

.vip-name {
    font-size: 1rem;
    margin: 0;
    line-height: 1.2;
}

.vip-cashback {
    font-family: "Bungee", sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1;
    margin: 4px 0;
}

.vip-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    color: var(--muted-foreground);
    text-align: center;
}
.vip-list li {
    padding: 6px 8px;
    border-top: 1px dashed rgba(0, 191, 255, 0.15);
}
.vip-list li:first-child { border-top: none; }

/* ============================================
   UTILITIES
   ============================================ */
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.justify-center { justify-content: center; }
.items-center { align-items: center; }

.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }

.hidden { display: none; }
@media (min-width: 768px) { .md-block { display: block; } .md-hidden { display: none; } }

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