/* ============================================
   BILLIONAIRESPIN CASINO - DESIGN SYSTEM
   Dark luxury casino aesthetic
   Mobile-first, Bebas Neue + Nunito
   ============================================ */

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

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

body {
    font-family: "Nunito", sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

/* ============================================
   TYPOGRAPHY SYSTEM
   Bebas Neue for display, Nunito for body
   ============================================ */

/* Display font */
.font-display,
h1, h2, h3, h4,
.btn,
.nav-link,
.game-card__title,
.game-card__cta,
.bonus-card__amount,
.bonus-card__title,
.stat-item__number,
.cta-banner__headline,
.site-footer .footer-heading,
.logo-text,
.logo-coin {
    font-family: "Bebas Neue", sans-serif;
}

h1 {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    line-height: 1.05;
    letter-spacing: 0.03em;
    font-weight: 400;
}

h2 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    line-height: 1.1;
    letter-spacing: 0.05em;
    font-weight: 400;
}

h3 {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    line-height: 1.15;
    letter-spacing: 0.04em;
    font-weight: 400;
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    line-height: 1.2;
    letter-spacing: 0.03em;
    font-weight: 400;
}

/* Body text */
p {
    font-family: "Nunito", sans-serif;
    font-size: 1.0625rem;
    line-height: 1.65;
    letter-spacing: 0.01em;
}

.lead {
    font-size: 1.1875rem;
    font-weight: 500;
    line-height: 1.6;
}

.caption {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* ============================================
   LAYOUT - CONTAINER & GRID
   Max 1280px, 24px horizontal padding
   ============================================ */

.container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* Section spacing */
section {
    padding-top: 64px;
    padding-bottom: 64px;
    overflow: clip;
}

@media (min-width: 1024px) {
    section {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

/* Section headings */
.section-heading {
    text-align: center;
    margin-bottom: 16px;
    color: var(--foreground);
}

.section-subheading {
    text-align: center;
    color: var(--muted-foreground);
    font-size: 1.0625rem;
    margin-bottom: 48px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   BUTTONS
   Primary (green), Ghost, Dark, SM/LG variants
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.125rem;
    letter-spacing: 0.08em;
    border-radius: var(--radius-sm);
    padding: 0 24px;
    min-height: 48px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    white-space: nowrap;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: #00e05a;
    border-color: #00e05a;
    color: var(--primary-foreground);
    box-shadow: 0 0 24px rgba(0, 200, 80, 0.4);
}

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

.btn-ghost:hover {
    background-color: var(--muted);
    color: var(--foreground);
    border-color: var(--primary);
}

.btn-dark {
    background-color: var(--primary-foreground);
    color: var(--foreground);
    border-color: var(--primary-foreground);
}

.btn-dark:hover {
    background-color: #0d1d3a;
    color: var(--foreground);
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

.btn-sm {
    font-size: 0.9375rem;
    padding: 0 16px;
    min-height: 40px;
}

.btn-lg {
    font-size: 1.25rem;
    padding: 0 40px;
    min-height: 56px;
}

.btn-full {
    width: 100%;
}

/* Hero CTA pulse animation */
.btn-pulse {
    animation: btnPulse 2s ease-in-out infinite;
}

@keyframes btnPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

.btn-pulse:hover {
    animation: none;
    transform: translateY(-2px);
}

/* ============================================
   HEADER
   Fixed sticky, glass-morphism dark navy
   ============================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background-color: rgba(11, 20, 38, 0.96);
    border-bottom: 1px solid var(--secondary);
    transition: background-color 0.3s ease;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 16px;
}

/* Logo */
.header-logo,
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-coin {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--secondary) 0%, #f0c040 50%, var(--secondary) 100%);
    border-radius: 50%;
    border: 2px solid #f0c040;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.5rem;
    color: var(--primary-foreground);
    flex-shrink: 0;
}

.logo-text {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.35rem;
    letter-spacing: 0.05em;
    color: var(--foreground);
    line-height: 1;
}

.logo-accent {
    color: var(--primary);
}

/* Desktop nav */
.header-nav {
    display: none;
    flex: 1;
    align-items: center;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.0625rem;
    letter-spacing: 0.08em;
    color: var(--foreground);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: color 0.2s, background-color 0.2s;
    text-decoration: none;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--primary);
    background-color: rgba(0, 200, 80, 0.08);
}

/* Desktop header actions */
.header-actions {
    display: none;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    padding: 8px;
    border-radius: var(--radius-sm);
    background: transparent;
    border: 1px solid var(--border);
    cursor: pointer;
    z-index: 1001;
    flex-shrink: 0;
    transition: border-color 0.2s;
}

.mobile-menu-toggle:hover {
    border-color: var(--primary);
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--foreground);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
    transform-origin: center;
}

/* Hamburger → X */
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    width: 0;
}
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav extras shown inside drawer */
.nav-mobile-extras {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px 24px 32px;
    margin-top: auto;
    border-top: 1px solid var(--border);
}

.nav-mobile-login,
.nav-mobile-register {
    width: 100%;
    justify-content: center;
}

/* Nav overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 998;
    backdrop-filter: blur(2px);
}

.nav-overlay.is-visible {
    display: block;
}

/* Desktop breakpoint */
@media (min-width: 1024px) {
    .header-nav {
        display: flex;
    }

    .header-actions {
        display: flex;
    }

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

    .nav-mobile-extras {
        display: none;
    }
}

/* Mobile nav drawer */
@media (max-width: 1023px) {
    .header-nav {
        position: fixed;
        top: var(--header-height);
        right: 0;
        bottom: 0;
        width: min(340px, 88vw);
        background-color: var(--background);
        border-left: 1px solid var(--border);
        z-index: 999;
        overflow-y: auto;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        transform: translateX(100%);
        transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
        padding-top: 16px;
    }

    .header-nav.is-open {
        display: flex;
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 16px;
    }

    .nav-link {
        display: flex;
        align-items: center;
        min-height: 56px;
        font-size: 1.25rem;
        padding: 0 12px;
        border-radius: var(--radius-sm);
    }
}

/* ============================================
   FOOTER
   Three-column on desktop, stacked mobile
   ============================================ */

.site-footer {
    background-color: #070e1c;
    border-top: 1px solid var(--border);
    padding-top: 64px;
    padding-bottom: 32px;
    margin-top: var(--header-height);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 48px;
    }
}

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

.footer-tagline {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-badges {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.badge-18 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #8B1A00;
    color: #ffffff;
    font-family: "Nunito", sans-serif;
    font-weight: 800;
    font-size: 0.8125rem;
    flex-shrink: 0;
}

.footer-license {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    font-family: "Nunito", sans-serif;
}

.footer-heading {
    font-size: 1.0625rem;
    letter-spacing: 0.08em;
    color: var(--secondary);
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    transition: color 0.2s;
    line-height: 1.4;
}

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

/* Payment logos */
.footer-payments {
    border-top: 1px solid var(--border);
    padding-top: 32px;
    margin-bottom: 32px;
}

.footer-payments-label {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.footer-payment-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.payment-logo-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    color: var(--muted-foreground);
    transition: color 0.2s, border-color 0.2s;
}

.payment-logo-pill:hover {
    color: var(--foreground);
    border-color: var(--primary);
}

/* Responsible gambling */
.footer-responsible {
    background-color: rgba(212, 134, 10, 0.1);
    border: 1px solid rgba(212, 134, 10, 0.3);
    border-radius: var(--radius);
    padding: 16px 20px;
    margin-bottom: 32px;
}

.footer-rg-text {
    font-size: 0.875rem;
    color: #e8a830;
    line-height: 1.5;
}

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

.footer-copyright {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    margin-bottom: 8px;
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: #7a90b0;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
}

/* ============================================
   HERO SECTIONS
   Full viewport with mascot and CTA
   ============================================ */

.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding-top: calc(var(--header-height) + 32px);
    padding-bottom: 64px;
    overflow: clip;
    background-color: var(--background);
}

.hero--full {
    min-height: 100vh;
}

@media (min-width: 1024px) {
    .hero {
        padding-bottom: 80px;
    }
}

.hero__bg-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 60% 50% at 70% 60%, rgba(0, 200, 80, 0.08) 0%, transparent 70%),
                radial-gradient(ellipse 40% 40% at 20% 30%, rgba(201, 168, 76, 0.05) 0%, transparent 60%);
    z-index: 0;
}

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

@media (min-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

.hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(0, 200, 80, 0.12);
    border: 1px solid rgba(0, 200, 80, 0.3);
    border-radius: var(--radius-pill);
    padding: 6px 16px;
    font-size: 0.8125rem;
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero__title {
    color: var(--foreground);
}

.hero__title .highlight {
    color: var(--primary);
}

.hero__title .highlight-gold {
    color: var(--secondary);
}

.hero__subtitle {
    font-size: 1.0625rem;
    color: var(--muted-foreground);
    line-height: 1.65;
    max-width: 520px;
}

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

.hero__pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    font-size: 0.8125rem;
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    color: var(--foreground);
}

.hero__pill--green {
    background-color: rgba(0, 200, 80, 0.12);
    border-color: rgba(0, 200, 80, 0.3);
    color: var(--primary);
}

.hero__pill--gold {
    background-color: rgba(201, 168, 76, 0.12);
    border-color: rgba(201, 168, 76, 0.3);
    color: var(--secondary);
}

.hero__cta-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

@media (min-width: 480px) {
    .hero__cta-group {
        flex-direction: row;
        width: auto;
    }
}

.hero__microcopy {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    line-height: 1.4;
}

.hero__mascot {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
}

.hero__mascot img {
    max-height: 420px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 40px rgba(0, 200, 80, 0.2));
}

@media (min-width: 1024px) {
    .hero__mascot img {
        max-height: 520px;
    }
}

/* ============================================
   DIAGONAL CLIP DECORATORS
   Gold coin scatter transitions between sections
   ============================================ */

.clip-diagonal {
    position: relative;
}

.clip-diagonal::before {
    content: '';
    position: absolute;
    top: -32px;
    left: 0;
    right: 0;
    height: 64px;
    background: inherit;
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
    z-index: 1;
    pointer-events: none;
}

/* Coin scatter decorative */
.coin-scatter {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.coin-scatter::before,
.coin-scatter::after {
    content: '🪙';
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.15;
    animation: coinRotate 20s linear infinite;
}

.coin-scatter::before {
    top: 15%;
    right: 8%;
    animation-delay: -7s;
}

.coin-scatter::after {
    bottom: 20%;
    left: 6%;
    animation-delay: -13s;
    font-size: 1.2rem;
}

@keyframes coinRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ============================================
   GAME CARDS COMPONENT
   2-col mobile / 3-col tablet / 4-col desktop
   ============================================ */

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

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

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

.game-card {
    background-color: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
    min-width: 0;
}

.game-card:hover {
    transform: scale(1.04);
    box-shadow: 0 0 24px rgba(0, 200, 80, 0.4);
}

.game-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.game-card__img-wrap {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    flex-shrink: 0;
}

.game-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius) var(--radius) 0 0;
    transition: transform 0.3s ease;
}

.game-card:hover .game-card__img {
    transform: scale(1.05);
}

.game-card__badge {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    font-family: "Bebas Neue", sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    line-height: 1.4;
}

.game-card__badge--live {
    background-color: #cc2222;
    color: #fff;
}

.game-card__badge--jackpot {
    background-color: var(--secondary);
    color: var(--secondary-foreground);
}

.game-card__badge--hot {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.game-card__badge--crash {
    background-color: var(--accent);
    color: var(--accent-foreground);
}

.game-card__badge--new {
    background-color: #8844ee;
    color: #fff;
}

.game-card__provider {
    position: absolute;
    bottom: 8px;
    left: 8px;
    padding: 3px 10px;
    background-color: rgba(11, 20, 38, 0.85);
    border-radius: var(--radius-pill);
    font-family: "Nunito", sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--muted-foreground);
    letter-spacing: 0.04em;
    backdrop-filter: blur(4px);
    border: 1px solid var(--border);
}

.game-card__body {
    display: flex;
    flex-direction: column;
    padding: 12px 14px 14px;
    flex: 1;
    gap: 6px;
}

.game-card__title {
    font-size: 1.0625rem;
    letter-spacing: 0.04em;
    color: var(--foreground);
    line-height: 1.2;
}

.game-card__rtp {
    font-family: "Nunito", sans-serif;
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
}

.game-card__cta {
    margin-top: auto;
    display: block;
    text-align: center;
    background-color: var(--primary);
    color: var(--primary-foreground);
    border-radius: var(--radius-sm);
    padding: 8px;
    font-size: 0.9375rem;
    letter-spacing: 0.06em;
    transition: background-color 0.2s;
}

.game-card:hover .game-card__cta {
    background-color: #00e05a;
}

/* ============================================
   BONUS CARDS COMPONENT
   1-col mobile / 2-col tablet / 3-col desktop
   ============================================ */

.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

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

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

.bonus-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
    min-width: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 200, 80, 0.15);
}

@media (min-width: 1024px) {
    .bonus-card {
        padding: 24px;
    }
}

.bonus-card__step {
    position: absolute;
    top: -12px;
    left: 24px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), #f0c040);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.125rem;
    color: var(--primary-foreground);
}

.bonus-card__coin-deco {
    position: absolute;
    top: 12px;
    right: 14px;
    font-size: 1.5rem;
    opacity: 0.35;
    pointer-events: none;
}

.bonus-card__amount {
    font-size: clamp(2rem, 6vw, 3rem);
    color: var(--primary);
    line-height: 1;
    letter-spacing: 0.03em;
}

.bonus-card__title {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    color: var(--foreground);
    line-height: 1.2;
    letter-spacing: 0.04em;
}

.bonus-card__terms {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.bonus-card__term {
    font-family: "Nunito", sans-serif;
    font-size: 0.9rem;
    color: var(--muted-foreground);
    padding-left: 14px;
    position: relative;
}

.bonus-card__term::before {
    content: '·';
    position: absolute;
    left: 4px;
    color: var(--primary);
}

.bonus-card__cta {
    margin-top: auto;
}

/* ============================================
   PAYMENT METHOD GRID COMPONENT
   ============================================ */

.payment-grid-section {
    position: relative;
}

.payment-grid-section__heading {
    text-align: center;
    margin-bottom: 40px;
    color: var(--foreground);
}

.payment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.payment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    min-width: 80px;
    transition: border-color 0.2s, transform 0.2s;
    cursor: default;
}

.payment-item:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.payment-item__logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.payment-item__icon {
    font-size: 1.5rem;
    line-height: 1;
}

.payment-item__name {
    font-family: "Nunito", sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--foreground);
    text-align: center;
    white-space: nowrap;
}

.payment-item__time {
    font-family: "Nunito", sans-serif;
    font-size: 0.6875rem;
    color: var(--primary);
    font-weight: 600;
    text-align: center;
}

.payment-coin-deco {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

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

.faq-accordion {
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.faq-item:first-child {
    border-top: 1px solid var(--border);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 18px 0;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    border-left: 4px solid transparent;
    padding-left: 16px;
    transition: background-color 0.2s, border-color 0.2s;
}

.faq-question:hover {
    background-color: rgba(19, 32, 64, 0.5);
}

.faq-item.is-open .faq-question {
    background-color: var(--card);
    border-left-color: var(--primary);
}

.faq-question__text {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(1.0625rem, 2.5vw, 1.375rem);
    letter-spacing: 0.04em;
    color: var(--foreground);
    flex: 1;
    line-height: 1.3;
}

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--muted);
    flex-shrink: 0;
    transition: background-color 0.2s, transform 0.3s;
    margin-right: 4px;
}

.faq-toggle__icon {
    position: relative;
    display: block;
    width: 14px;
    height: 14px;
}

.faq-toggle__icon::before,
.faq-toggle__icon::after {
    content: '';
    position: absolute;
    background-color: var(--primary);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Plus icon */
.faq-toggle__icon::before {
    width: 14px;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.faq-toggle__icon::after {
    width: 2px;
    height: 14px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

/* Open state - X/minus */
.faq-item.is-open .faq-toggle {
    background-color: var(--primary);
    transform: rotate(45deg);
}

.faq-item.is-open .faq-toggle__icon::before,
.faq-item.is-open .faq-toggle__icon::after {
    background-color: var(--primary-foreground);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
}

.faq-item.is-open .faq-answer {
    max-height: 800px;
}

.faq-answer__inner {
    padding: 4px 20px 24px 20px;
    font-family: "Nunito", sans-serif;
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--foreground);
}

.faq-answer__inner p {
    margin-bottom: 12px;
}

.faq-answer__inner p:last-child {
    margin-bottom: 0;
}

.faq-answer__inner a {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-color: rgba(0, 200, 80, 0.4);
    text-underline-offset: 3px;
}

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

.faq-answer__inner ul {
    padding-left: 20px;
    margin-bottom: 12px;
}

.faq-answer__inner li {
    list-style: disc;
    margin-bottom: 4px;
}

/* ============================================
   STAT HIGHLIGHT ROW COMPONENT
   Full-bleed diagonal with count-up
   ============================================ */

.stat-row {
    background-color: var(--card);
    position: relative;
    padding: 80px 0;
    overflow: clip;
}

.stat-row__clip-top,
.stat-row__clip-bottom {
    position: absolute;
    left: 0;
    right: 0;
    height: 40px;
    background-color: var(--background);
    pointer-events: none;
}

.stat-row__clip-top {
    top: 0;
    clip-path: polygon(0 0, 100% 0, 100% 0%, 0 100%);
}

.stat-row__clip-bottom {
    bottom: 0;
    clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 100%);
}

.stat-row__heading {
    text-align: center;
    margin-bottom: 40px;
    color: var(--foreground);
}

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

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

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

.stat-item__number {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--primary);
    letter-spacing: 0.02em;
    line-height: 1;
    transition: text-shadow 0.2s;
}

.stat-item__number:hover {
    text-shadow: 0 0 16px rgba(180, 255, 80, 0.5);
}

.stat-item__label {
    font-family: "Nunito", sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.stat-item__source {
    font-family: "Nunito", sans-serif;
    font-size: 0.6875rem;
    color: var(--muted-foreground);
    font-style: italic;
}

.stat-divider {
    display: none;
}

@media (min-width: 1024px) {
    .stat-divider {
        display: block;
        width: 1px;
        height: 64px;
        background-color: var(--border);
        align-self: center;
    }
}

/* ============================================
   CTA BANNER COMPONENT
   Full-bleed green conversion band
   ============================================ */

.cta-banner {
    background-color: var(--primary);
    position: relative;
    padding: 80px 0;
    overflow: clip;
    clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
    margin: 40px 0;
}

.cta-banner__clip-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background-color: var(--background);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
    pointer-events: none;
    z-index: 1;
}

.cta-banner__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.cta-banner__content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 640px;
}

.cta-banner__headline {
    color: var(--primary-foreground);
    font-size: clamp(2rem, 5vw, 3.25rem);
    letter-spacing: 0.05em;
    line-height: 1.05;
}

.cta-banner__subtext {
    color: var(--primary-foreground);
    font-size: 1.1875rem;
    font-weight: 500;
    opacity: 0.85;
}

.cta-banner__btn {
    background-color: var(--primary-foreground);
    color: var(--foreground);
    border-color: var(--primary-foreground);
}

.cta-banner__btn:hover {
    background-color: #0d1d3a;
    transform: scale(1.03);
}

.cta-banner__microcopy {
    font-size: 0.875rem;
    color: rgba(11, 20, 38, 0.7);
}

.cta-banner__mascot {
    display: none;
    position: absolute;
    right: 40px;
    bottom: 0;
    width: 280px;
    pointer-events: none;
}

.cta-banner__mascot img {
    width: 100%;
    height: auto;
}

@media (min-width: 1024px) {
    .cta-banner__mascot {
        display: block;
    }

    .cta-banner__content {
        max-width: 580px;
        margin-left: 0;
        text-align: left;
        align-items: flex-start;
    }

    .cta-banner__inner {
        justify-content: flex-start;
    }
}

/* ============================================
   SECTION INTRO / SEO TEXT BLOCKS
   Two-col desktop, single mobile
   ============================================ */

.seo-text-section {
    background-color: var(--background);
}

.seo-text-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 1024px) {
    .seo-text-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 64px;
    }
}

.seo-text-section h2 {
    margin-bottom: 24px;
    color: var(--foreground);
}

.seo-text-section h3 {
    font-size: 1.375rem;
    margin-bottom: 12px;
    color: var(--secondary);
}

.seo-text-section p {
    color: var(--muted-foreground);
    margin-bottom: 16px;
}

.seo-text-section a {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-color: rgba(0, 200, 80, 0.3);
}

/* Links embedded in muted-color text blocks must be underlined
   to meet WCAG link-in-text-block (distinguishable without color) */
.section-subheading a,
.caption a,
.spinoleague-desc a,
.nodeposit-teaser__desc a,
.bonus-codes-teaser a,
.faq-answer__inner a,
.summary-box p a,
.summary-box a,
.callout a,
.callout p a,
.rg-callout a,
.rg-callout p a {
    text-decoration: underline;
    text-decoration-color: rgba(0, 200, 80, 0.5);
    text-underline-offset: 3px;
}

.callout--gold a,
.callout--gold p a {
    text-decoration-color: rgba(201, 168, 76, 0.5);
}

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

/* ============================================
   PROVIDER LOGOS STRIP
   ============================================ */

.providers-section {
    background-color: var(--background);
    text-align: center;
}

.providers-section h2 {
    margin-bottom: 40px;
    color: var(--foreground);
}

.providers-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.provider-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: "Nunito", sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--muted-foreground);
    transition: color 0.2s, border-color 0.2s, transform 0.2s;
    white-space: nowrap;
}

.provider-pill:hover {
    color: var(--foreground);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* ============================================
   VIP TIER CARDS
   ============================================ */

.vip-tiers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

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

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

.vip-tier-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
    min-width: 0;
}

.vip-tier-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.vip-tier-card--bronze {
    border-color: #8B6914;
}

.vip-tier-card--silver {
    border-color: #8A9BB0;
}

.vip-tier-card--gold {
    border-color: var(--secondary);
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.15);
}

.vip-tier-card--platinum {
    border-color: #d0e8ff;
    background: linear-gradient(135deg, #132040 0%, #1a2d55 100%);
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.25);
}

.vip-tier-card--platinum::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,215,100,0.05) 40%, rgba(255,215,100,0.12) 50%, rgba(255,215,100,0.05) 60%, transparent 100%);
    animation: goldShimmer 3s linear infinite;
    pointer-events: none;
}

@keyframes goldShimmer {
    from { transform: translateX(-100%); }
    to { transform: translateX(100%); }
}

.vip-tier-badge {
    font-size: 2.5rem;
    margin-bottom: 4px;
}

.vip-tier-name {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.08em;
    color: var(--foreground);
}

.vip-tier-rakeback {
    font-family: "Bebas Neue", sans-serif;
    font-size: 2.25rem;
    color: var(--primary);
    letter-spacing: 0.02em;
}

.vip-tier-points {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    font-family: "Nunito", sans-serif;
}

.vip-tier-perks {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
    flex: 1;
}

.vip-tier-perk {
    font-family: "Nunito", sans-serif;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.vip-tier-perk::before {
    content: '✓';
    color: var(--primary);
    flex-shrink: 0;
    font-weight: 700;
}

.vip-tier-card--platinum .vip-tier-name {
    color: #d0e8ff;
}

.vip-exclusive-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--secondary), #f0c040);
    color: var(--primary-foreground);
    font-family: "Bebas Neue", sans-serif;
    font-size: 0.6875rem;
    letter-spacing: 0.08em;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
}

/* ============================================
   TRUST / REVIEW CARDS
   ============================================ */

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

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

.review-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
}

.review-card__stars {
    color: var(--secondary);
    font-size: 1rem;
    letter-spacing: 2px;
}

.review-card__text {
    font-size: 1rem;
    font-style: italic;
    color: var(--foreground);
    line-height: 1.6;
    flex: 1;
}

.review-card__author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.review-card__name {
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--foreground);
}

.review-card__win {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1rem;
    color: var(--primary);
    letter-spacing: 0.04em;
}

/* TrustPilot badge */
.trustpilot-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: 32px;
}

.trustpilot-badge__score {
    font-family: "Bebas Neue", sans-serif;
    font-size: 3rem;
    color: var(--primary);
    letter-spacing: 0.02em;
    line-height: 1;
}

.trustpilot-badge__label {
    font-family: "Nunito", sans-serif;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.trustpilot-badge__stars {
    font-size: 1.25rem;
    color: #00b67a;
    letter-spacing: 2px;
}

/* ============================================
   TABLE STYLES
   Responsive comparison tables
   ============================================ */

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

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

thead {
    background-color: var(--muted);
}

thead th {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.0625rem;
    letter-spacing: 0.06em;
    color: var(--foreground);
    padding: 14px 16px;
    text-align: left;
    white-space: nowrap;
    border-bottom: 2px solid var(--border);
}

thead th.col-highlight {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

tbody tr {
    border-bottom: 1px solid var(--border);
    transition: background-color 0.15s;
}

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

tbody tr:hover {
    background-color: rgba(19, 32, 64, 0.6);
}

tbody tr.row-highlight {
    background-color: rgba(0, 200, 80, 0.06);
    border-left: 3px solid var(--primary);
}

tbody tr.row-highlight td {
    color: #8aa4c0;
}

tbody td {
    padding: 12px 16px;
    font-family: "Nunito", sans-serif;
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    vertical-align: middle;
}

tbody td:first-child {
    color: var(--foreground);
    font-weight: 600;
}

.td-code {
    font-family: monospace;
    background-color: rgba(0, 200, 80, 0.1);
    color: var(--primary);
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    font-size: 0.875rem;
    border: 1px solid rgba(0, 200, 80, 0.2);
    white-space: nowrap;
}

.td-check {
    color: var(--primary);
    font-size: 1rem;
}

.td-dash {
    color: var(--muted-foreground);
}

/* ============================================
   CALLOUT / HIGHLIGHT BOXES
   ============================================ */

.callout {
    border-left: 4px solid var(--primary);
    background-color: rgba(0, 200, 80, 0.06);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 16px 20px;
    margin: 24px 0;
}

.callout--gold {
    border-left-color: var(--secondary);
    background-color: rgba(201, 168, 76, 0.06);
}

.callout--amber {
    border-left-color: var(--destructive);
    background-color: rgba(212, 134, 10, 0.08);
}

.callout p {
    margin: 0;
    font-size: 1rem;
    color: var(--foreground);
}

.callout strong {
    color: var(--primary);
}

.callout--gold strong {
    color: var(--secondary);
}

.callout--amber strong {
    color: #e8a830;
}

/* Summary / TL;DR box */
.summary-box {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-top: 3px solid var(--primary);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 32px;
}

.summary-box__label {
    font-family: "Bebas Neue", sans-serif;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.summary-box p {
    font-size: 1rem;
    color: var(--foreground);
    margin: 0;
}

/* Pull quote */
.pull-quote {
    border-left: 4px solid var(--secondary);
    padding: 16px 24px;
    margin: 32px 0;
    position: relative;
}

.pull-quote p {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(1.375rem, 3vw, 2rem);
    color: var(--foreground);
    letter-spacing: 0.04em;
    line-height: 1.3;
    margin: 0;
}

.pull-quote cite {
    display: block;
    margin-top: 8px;
    font-family: "Nunito", sans-serif;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    font-style: normal;
}

/* Stat highlight (inline) */
.stat-highlight-inline {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
    background-color: var(--card);
    border-radius: var(--radius);
    gap: 4px;
    border: 1px solid var(--border);
}

.stat-highlight-inline__number {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--primary);
    line-height: 1;
    letter-spacing: 0.02em;
}

.stat-highlight-inline__label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ============================================
   SPINOLEAGUE TEASER SECTION
   ============================================ */

.spinoleague-section {
    background-color: var(--card);
    position: relative;
    overflow: clip;
}

.spinoleague-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

@media (min-width: 1024px) {
    .spinoleague-inner {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

.spinoleague-trophy {
    font-size: 4rem;
    text-align: center;
}

.spinoleague-prize {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--secondary);
    letter-spacing: 0.03em;
    line-height: 1;
}

.spinoleague-desc {
    color: var(--muted-foreground);
    margin-top: 12px;
    margin-bottom: 24px;
}

/* Countdown timer */
.countdown-timer {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    min-width: 60px;
}

.countdown-unit__num {
    font-family: "Bebas Neue", sans-serif;
    font-size: 2rem;
    color: var(--primary);
    line-height: 1;
}

.countdown-unit__label {
    font-size: 0.6875rem;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: "Nunito", sans-serif;
    font-weight: 600;
}

/* ============================================
   ANIMATE ON SCROLL
   IntersectionObserver fade-in
   ============================================ */

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

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

/* ============================================
   SECTION DIVIDER - diagonal gold scatter
   ============================================ */

.section-divider {
    position: relative;
    height: 48px;
    overflow: clip;
    pointer-events: none;
}

.section-divider::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--secondary) 0%, rgba(201,168,76,0.2) 50%, transparent 100%);
    opacity: 0.07;
}

/* ============================================
   PAGE TOP SPACING - compensate fixed header
   ============================================ */

.page-top-pad {
    padding-top: var(--header-height);
}

/* ============================================
   BREADCRUMB
   ============================================ */

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.breadcrumb a {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb__sep {
    font-size: 0.75rem;
    color: var(--border);
}

.breadcrumb__current {
    font-size: 0.875rem;
    color: var(--primary);
}

/* ============================================
   HOMEPAGE - HERO COINS BACKGROUND
   Floating decorative coins scattered in hero
   ============================================ */

.hero-home {
    background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(0, 200, 80, 0.06) 0%, transparent 60%),
                var(--background);
}

.hero-coins-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.hero-coin {
    position: absolute;
    font-size: 1.8rem;
    opacity: 0.12;
    animation: coinFloat 18s ease-in-out infinite;
}

.hero-coin--1 { top: 12%; left: 5%; animation-delay: 0s; font-size: 2.2rem; }
.hero-coin--2 { top: 30%; right: 3%; animation-delay: -5s; font-size: 1.4rem; }
.hero-coin--3 { bottom: 25%; left: 8%; animation-delay: -9s; font-size: 1.6rem; }
.hero-coin--4 { top: 55%; left: 45%; animation-delay: -3s; font-size: 1.2rem; }
.hero-coin--5 { bottom: 15%; right: 10%; animation-delay: -14s; font-size: 2rem; }

@keyframes coinFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-18px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

/* ============================================
   HOMEPAGE - BONUS SECTION LAYOUT
   Mascot beside bonus cards
   ============================================ */

.bonus-section-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 40px;
    flex-direction: column;
}

@media (min-width: 1024px) {
    .bonus-section-header {
        flex-direction: row;
        align-items: center;
    }
}

.bonus-section-mascot {
    display: none;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .bonus-section-mascot {
        display: block;
    }

    .bonus-section-mascot img {
        max-height: 280px;
        width: auto;
        filter: drop-shadow(0 0 24px rgba(0, 200, 80, 0.2));
    }
}

/* Bonus extra row (no-deposit + codes teaser) */
.bonus-extra-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 32px;
}

@media (min-width: 768px) {
    .bonus-extra-row {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

.nodeposit-teaser {
    background-color: var(--card);
    border: 2px solid var(--secondary);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 0 32px rgba(201, 168, 76, 0.12);
    transition: box-shadow 0.2s;
}

.nodeposit-teaser:hover {
    box-shadow: 0 0 48px rgba(201, 168, 76, 0.22);
}

.nodeposit-teaser__title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.75rem;
    letter-spacing: 0.05em;
    color: var(--foreground);
    line-height: 1.1;
}

.nodeposit-teaser__desc {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.55;
}

.bonus-codes-teaser {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bonus-codes-teaser h3 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.5rem;
    color: var(--foreground);
    letter-spacing: 0.05em;
}

.bonus-codes-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bonus-codes-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: "Nunito", sans-serif;
    font-size: 0.9375rem;
    color: var(--muted-foreground);
}

/* ============================================
   HOMEPAGE - SPINOLEAGUE SECTION ENHANCEMENTS
   ============================================ */

.spinoleague-visual {
    display: flex;
    justify-content: center;
}

.spinoleague-visual img {
    max-height: 380px;
    width: auto;
    filter: drop-shadow(0 0 40px rgba(201, 168, 76, 0.25));
}

@media (min-width: 1024px) {
    .spinoleague-visual img {
        max-height: 460px;
    }
}

.spinoleague-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.spinoleague-perks {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

/* ============================================
   HOMEPAGE - REVIEWS SECTION
   Mascot beside review cards
   ============================================ */

.reviews-section-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 1024px) {
    .reviews-section-inner {
        grid-template-columns: 1fr auto;
        gap: 48px;
    }
}

.reviews-mascot {
    display: none;
}

@media (min-width: 1024px) {
    .reviews-mascot {
        display: flex;
        justify-content: center;
        align-items: flex-end;
    }

    .reviews-mascot img {
        max-height: 320px;
        width: auto;
        filter: drop-shadow(0 0 32px rgba(0, 200, 80, 0.18));
    }
}

/* ============================================
   HOMEPAGE - SECTION BACKGROUNDS
   Alternating for visual rhythm
   ============================================ */

.section-games {
    background-color: var(--background);
}

.section-bonus {
    background-color: var(--card);
    position: relative;
    overflow: clip;
}

.section-bonus::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, transparent, var(--secondary), var(--primary), var(--secondary), transparent);
    opacity: 0.3;
}

.section-vip {
    background-color: var(--background);
}

.section-payments {
    background-color: var(--card);
}

.section-reviews {
    background-color: var(--background);
}

.section-faq {
    background-color: var(--card);
}

/* ============================================
   BONUS PAGE - HERO
   ============================================ */

.bonus-hero {
    background: radial-gradient(ellipse 70% 55% at 60% 70%, rgba(0, 200, 80, 0.07) 0%, transparent 60%),
                radial-gradient(ellipse 40% 40% at 20% 20%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
                var(--background);
}

.bonus-confetti-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.confetti-coin {
    position: absolute;
    opacity: 0.13;
    animation: coinFloat 18s ease-in-out infinite;
}

.confetti-coin--1 { top: 8%;  left: 4%;  font-size: 2rem;   animation-delay: 0s; }
.confetti-coin--2 { top: 25%; right: 5%; font-size: 1.5rem;  animation-delay: -4s; }
.confetti-coin--3 { bottom: 30%; left: 7%; font-size: 1.8rem; animation-delay: -8s; }
.confetti-coin--4 { top: 50%; left: 42%;  font-size: 1.2rem; animation-delay: -2s; }
.confetti-coin--5 { bottom: 18%; right: 8%; font-size: 2.2rem; animation-delay: -12s; }
.confetti-coin--6 { top: 70%; left: 20%;  font-size: 1.4rem;  animation-delay: -6s; }
.confetti-coin--7 { top: 15%; left: 55%;  font-size: 1.6rem;  animation-delay: -10s; }

/* ============================================
   BONUS PAGE - NO-DEPOSIT SECTION
   ============================================ */

.nodeposit-section {
    background-color: var(--card);
    position: relative;
    overflow: clip;
}

.nodeposit-highlight-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .nodeposit-highlight-wrap {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

.nodeposit-highlight-card {
    background-color: var(--background);
    border: 2px solid var(--secondary);
    border-radius: var(--radius);
    padding: 32px 24px 28px;
    position: relative;
    box-shadow: 0 0 40px rgba(201, 168, 76, 0.18);
    text-align: center;
    transition: box-shadow 0.2s;
}

.nodeposit-highlight-card:hover {
    box-shadow: 0 0 64px rgba(201, 168, 76, 0.28);
}

.nodeposit-highlight-card__mascot-peek {
    display: none;
    position: absolute;
    top: -60px;
    right: -20px;
    width: 150px;
    pointer-events: none;
}

@media (min-width: 1024px) {
    .nodeposit-highlight-card__mascot-peek {
        display: block;
    }
}

.nodeposit-highlight-card__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.nodeposit-highlight-card__amount {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(4rem, 12vw, 6rem);
    color: var(--primary);
    line-height: 1;
    letter-spacing: 0.02em;
}

.nodeposit-highlight-card__label {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--foreground);
    letter-spacing: 0.05em;
}

.nodeposit-highlight-card__code-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0;
    flex-wrap: wrap;
    justify-content: center;
}

.nodeposit-highlight-card__code-label {
    font-family: "Nunito", sans-serif;
    font-size: 0.9375rem;
    color: var(--muted-foreground);
}

.nodeposit-highlight-card__code {
    font-family: monospace;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--primary);
    background-color: rgba(0, 200, 80, 0.1);
    border: 1px solid rgba(0, 200, 80, 0.3);
    border-radius: var(--radius-sm);
    padding: 6px 18px;
    letter-spacing: 0.1em;
}

.nodeposit-highlight-card__terms {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
    width: 100%;
    margin-top: 8px;
}

.nodeposit-highlight-card__terms li {
    font-family: "Nunito", sans-serif;
    font-size: 0.9375rem;
    color: var(--muted-foreground);
}

.nodeposit-also-card {
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color 0.2s;
}

.nodeposit-also-card:hover {
    border-color: var(--primary);
}

.nodeposit-also-card h3 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.5rem;
    color: var(--foreground);
    letter-spacing: 0.04em;
}

.nodeposit-also-card p {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* ============================================
   BONUS PAGE - WELCOME PACKAGE
   ============================================ */

.welcome-package-section {
    position: relative;
}

.welcome-steps-flow {
    position: relative;
}

.welcome-step-connector {
    display: none;
}

@media (min-width: 1024px) {
    .welcome-step-connector {
        display: block;
        position: absolute;
        top: 60px;
        left: calc(33.333% - 10px);
        right: calc(33.333% - 10px);
        height: 2px;
        z-index: 0;
        pointer-events: none;
    }

    .welcome-step-connector__line {
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, var(--secondary), var(--primary), var(--secondary));
        opacity: 0.3;
        border-radius: 2px;
    }
}

.welcome-package-summary {
    margin-top: 32px;
}

/* ============================================
   BONUS PAGE - BONUS CODES SECTION
   ============================================ */

.bonus-codes-section {
    background-color: var(--background);
    position: relative;
}

.bonus-codes-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}

@media (min-width: 1024px) {
    .bonus-codes-inner {
        grid-template-columns: 1fr 280px;
        gap: 48px;
    }
}

.bonus-codes-content h2 {
    margin-bottom: 16px;
}

.bonus-codes-mascot {
    display: none;
    justify-content: center;
    align-items: flex-start;
    padding-top: 60px;
}

@media (min-width: 1024px) {
    .bonus-codes-mascot {
        display: flex;
    }

    .bonus-codes-mascot img {
        max-height: 300px;
        width: auto;
        filter: drop-shadow(0 0 24px rgba(201, 168, 76, 0.2));
    }
}

/* ============================================
   BONUS PAGE - WEEKLY PROMOS
   ============================================ */

.weekly-promos-section {
    position: relative;
}

.weekly-extra-promos {
    margin-top: 40px;
}

.promo-feature-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

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

.promo-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    transition: border-color 0.2s;
    min-width: 0;
}

.promo-feature-item:hover {
    border-color: var(--primary);
}

.promo-feature-item__icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.promo-feature-item h3 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    color: var(--foreground);
    margin-bottom: 6px;
}

.promo-feature-item p {
    font-size: 0.9rem;
    color: var(--muted-foreground);
    line-height: 1.55;
    margin: 0;
}

/* ============================================
   BONUS PAGE - SPINOLEAGUE PROMO
   ============================================ */

.bonus-spinoleague {
    position: relative;
}

.spinoleague-prize-breakdown {
    margin-top: 20px;
}

.spinoleague-prize-breakdown h3 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.125rem;
    letter-spacing: 0.06em;
    color: var(--muted-foreground);
    margin-bottom: 12px;
}

.prize-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.prize-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    font-family: "Nunito", sans-serif;
    font-size: 0.9375rem;
}

.prize-list-item__place {
    color: var(--foreground);
    font-weight: 600;
}

.prize-list-item__amount {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.125rem;
    color: var(--primary);
    letter-spacing: 0.04em;
}

/* ============================================
   VIP PAGE - SPINOLEAGUE PRIZE BREAKDOWN
   ============================================ */

.spinoleague-prize-breakdown h3 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.125rem;
    letter-spacing: 0.06em;
    color: var(--muted-foreground);
    margin-bottom: 12px;
}

/* ============================================
   BONUS PAGE - WAGERING EXPLAINER
   ============================================ */

.wagering-section {
    background-color: var(--background);
}

.wagering-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}

@media (min-width: 1024px) {
    .wagering-layout {
        grid-template-columns: 1fr 1fr;
        gap: 56px;
    }
}

.wagering-steps h3,
.wagering-table-col h3 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    color: var(--secondary);
    margin-bottom: 24px;
}

.wagering-example-box {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-top: 24px;
}

.wagering-example-box h4 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.125rem;
    letter-spacing: 0.06em;
    color: var(--foreground);
    margin-bottom: 16px;
}

.wagering-example-rows {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wagering-example-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-family: "Nunito", sans-serif;
    font-size: 1rem;
    color: var(--muted-foreground);
}

.wagering-example-row:last-child {
    border-bottom: none;
}

.wagering-example-row--highlight {
    background-color: rgba(0, 200, 80, 0.06);
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    color: var(--foreground);
    font-weight: 700;
    border: none;
}

/* ============================================
   MISC UTILITY
   ============================================ */

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

.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mb-48 { margin-bottom: 48px; }

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

/* Badge / pill utility */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-family: "Nunito", sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.badge-green {
    background-color: rgba(0, 200, 80, 0.12);
    color: var(--primary);
    border: 1px solid rgba(0, 200, 80, 0.3);
}

.badge-gold {
    background-color: rgba(201, 168, 76, 0.12);
    color: var(--secondary);
    border: 1px solid rgba(201, 168, 76, 0.3);
}

.badge-new {
    background-color: rgba(136, 68, 238, 0.15);
    color: #b388ff;
    border: 1px solid rgba(136, 68, 238, 0.3);
}

/* Info card grid (2×2) */
.info-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

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

.info-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
    transition: border-color 0.2s;
}

.info-card:hover {
    border-color: var(--primary);
}

.info-card__icon {
    font-size: 1.5rem;
    align-self: flex-end;
}

.info-card__value {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--primary);
    letter-spacing: 0.02em;
    line-height: 1;
}

.info-card__label {
    font-family: "Nunito", sans-serif;
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    font-weight: 600;
}

/* Step flow (KYC / How-to) */
.step-flow {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (min-width: 1024px) {
    .step-flow {
        flex-direction: row;
        align-items: flex-start;
        gap: 0;
    }
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    flex: 1;
    position: relative;
    min-width: 0;
}

@media (min-width: 1024px) {
    .step-item:not(:last-child)::after {
        content: '→';
        position: absolute;
        right: -16px;
        top: 16px;
        color: var(--primary);
        font-size: 1.25rem;
        font-weight: 700;
    }
}

.step-item__num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--primary-foreground);
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.step-item__title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.125rem;
    color: var(--foreground);
    letter-spacing: 0.05em;
}

.step-item__desc {
    font-size: 0.9rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}

/* Security badges row */
.security-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.security-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 28px;
    text-align: center;
    min-width: 140px;
    max-width: 200px;
    transition: border-color 0.2s;
}

.security-badge:hover {
    border-color: var(--primary);
}

.security-badge__icon {
    font-size: 2rem;
}

.security-badge__name {
    font-family: "Bebas Neue", sans-serif;
    font-size: 0.9375rem;
    letter-spacing: 0.06em;
    color: var(--foreground);
}

.security-badge__desc {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    line-height: 1.4;
}

/* No deposit highlight card */
.nodeposit-card {
    background-color: var(--card);
    border: 2px solid var(--secondary);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    max-width: 540px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 0 40px rgba(201, 168, 76, 0.15);
}

.nodeposit-card__amount {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(3rem, 10vw, 5rem);
    color: var(--primary);
    line-height: 1;
    letter-spacing: 0.02em;
}

.nodeposit-card__code {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(0, 200, 80, 0.1);
    border: 1px solid rgba(0, 200, 80, 0.3);
    border-radius: var(--radius-sm);
    padding: 8px 20px;
    font-family: monospace;
    font-size: 1.25rem;
    color: var(--primary);
    margin: 16px auto;
    letter-spacing: 0.08em;
    font-weight: 700;
}

/* Responsible gambling callout */
.rg-callout {
    border-left: 4px solid var(--destructive);
    background-color: rgba(212, 134, 10, 0.06);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 20px 24px;
    margin: 32px 0;
}

.rg-callout p {
    margin: 0;
    font-size: 1rem;
    color: #e8a830;
    line-height: 1.6;
}

.rg-callout strong {
    color: #f0b83a;
}

.rg-callout a {
    color: #f0b83a;
    text-decoration: underline;
}

/* TOC navigation pills */
.toc-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 48px;
}

.toc-pill {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 16px;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    font-family: "Nunito", sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.2s, border-color 0.2s, background-color 0.2s;
    white-space: nowrap;
}

.toc-pill:hover {
    color: var(--primary);
    border-color: var(--primary);
    background-color: rgba(0, 200, 80, 0.06);
}

/* Category tabs */
.category-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
}

.category-tabs::-webkit-scrollbar {
    display: none;
}

.category-tab {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    padding: 0 20px;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    font-family: "Bebas Neue", sans-serif;
    font-size: 1rem;
    letter-spacing: 0.06em;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
    cursor: pointer;
}

.category-tab:hover,
.category-tab.is-active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--primary-foreground);
}

/* Fortune wheel */
.fortune-wheel {
    width: 200px;
    height: 200px;
    margin: 0 auto 24px;
    position: relative;
}

.fortune-wheel__svg {
    width: 100%;
    height: 100%;
    transition: transform 3s ease-out;
}

.fortune-wheel:hover .fortune-wheel__svg {
    transform: rotate(720deg);
}

/* Win feed ticker */
.win-feed {
    background-color: var(--muted);
    border-radius: var(--radius-sm);
    padding: 12px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 200px;
    overflow: hidden;
}

.win-feed-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.875rem;
    animation: winFeedSlide 0.4s ease-out;
}

.win-feed-item__user {
    color: var(--foreground);
    font-weight: 600;
    font-family: "Nunito", sans-serif;
}

.win-feed-item__game {
    color: #a0b4cc;
    flex: 1;
    text-align: center;
    font-size: 0.8125rem;
}

.win-feed-item__amount {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.0625rem;
    color: var(--primary);
    letter-spacing: 0.04em;
    white-space: nowrap;
}

@keyframes winFeedSlide {
    from { opacity: 0; transform: translateX(-12px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Crypto highlight section */
.crypto-section {
    background-color: var(--card);
    position: relative;
    overflow: clip;
}

.crypto-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 24px;
}

.crypto-logo-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    font-family: "Nunito", sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--foreground);
    transition: border-color 0.2s;
}

.crypto-logo-pill:hover {
    border-color: var(--accent);
}

.crypto-logo-pill__symbol {
    color: var(--accent);
    font-size: 1.125rem;
}

/* Highlights list (crypto benefits etc.) */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.0625rem;
    color: var(--foreground);
    font-family: "Nunito", sans-serif;
    line-height: 1.5;
}

.benefit-item__icon {
    color: var(--primary);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.benefit-item__text strong {
    color: var(--accent);
}

/* Mobile overflow protection for flex/grid children */
[class*="grid"] > *,
[class*="flex"] > * {
    min-width: 0;
}

/* Responsive text truncation */
.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ============================================
   FAQ PAGE - HERO
   ============================================ */

.faq-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding-top: calc(var(--header-height) + 32px);
    padding-bottom: 48px;
    overflow: clip;
    background: radial-gradient(ellipse 70% 55% at 60% 70%, rgba(0, 200, 80, 0.06) 0%, transparent 60%),
                radial-gradient(ellipse 40% 40% at 15% 25%, rgba(201, 168, 76, 0.05) 0%, transparent 60%),
                var(--background);
}

@media (min-width: 1024px) {
    .faq-hero {
        min-height: 60vh;
        padding-bottom: 64px;
    }
}

.faq-hero-coins-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.faq-hero-coin {
    position: absolute;
    opacity: 0.08;
    animation: coinFloat 18s ease-in-out infinite;
}

.faq-hero-coin--1 { top: 12%; left: 4%;  font-size: 2.5rem; animation-delay: 0s; }
.faq-hero-coin--2 { top: 28%; right: 6%; font-size: 1.6rem; animation-delay: -5s; }
.faq-hero-coin--3 { bottom: 25%; left: 8%; font-size: 1.8rem; animation-delay: -9s; }
.faq-hero-coin--4 { bottom: 18%; right: 12%; font-size: 1.4rem; animation-delay: -13s; }

.faq-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

@media (min-width: 1024px) {
    .faq-hero__inner {
        grid-template-columns: 1fr auto;
        gap: 48px;
    }
}

.faq-hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.faq-hero__title {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(2rem, 6vw, 3.25rem);
    line-height: 1.05;
    letter-spacing: 0.04em;
    color: var(--foreground);
}

.faq-hero__title .highlight {
    color: var(--primary);
}

.faq-hero__title .highlight-gold {
    color: var(--secondary);
}

.faq-hero__subtitle {
    font-size: 1.0625rem;
    color: var(--muted-foreground);
    line-height: 1.65;
    max-width: 560px;
}

.faq-hero__mascot {
    display: none;
    justify-content: center;
    align-items: flex-end;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .faq-hero__mascot {
        display: flex;
    }

    .faq-hero__mascot img {
        max-height: 380px;
        width: auto;
        filter: drop-shadow(0 0 32px rgba(0, 200, 80, 0.18));
    }
}

/* ============================================
   FAQ PAGE - TOC SECTION
   ============================================ */

.faq-toc-section {
    background-color: var(--card);
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
}

.faq-toc-heading {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.0625rem;
    letter-spacing: 0.1em;
    color: var(--muted-foreground);
    text-align: center;
    margin-bottom: 16px;
}

/* ============================================
   FAQ PAGE - SECTION LAYOUT
   ============================================ */

.faq-page-section {
    padding-top: 64px;
    padding-bottom: 64px;
    background-color: var(--background);
}

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

.faq-alt-bg {
    background-color: var(--card);
}

.faq-section-header {
    margin-bottom: 32px;
}

.faq-section-header h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    letter-spacing: 0.04em;
    color: var(--foreground);
    margin-top: 12px;
    margin-bottom: 0;
    line-height: 1.1;
}

/* ============================================
   FAQ PAGE - RESPONSIBLE GAMBLING TOOLS
   ============================================ */

.rg-tools-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

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

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

.rg-tool-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-left: 4px solid rgba(212, 134, 10, 0.6);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 20px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color 0.2s, transform 0.2s;
    min-width: 0;
}

.faq-alt-bg .rg-tool-card {
    background-color: var(--background);
}

.rg-tool-card:hover {
    border-left-color: var(--destructive);
    transform: translateY(-2px);
}

.rg-tool-card__icon {
    font-size: 2rem;
    line-height: 1;
}

.rg-tool-card__title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.125rem;
    letter-spacing: 0.06em;
    color: var(--foreground);
    margin-bottom: 2px;
}

.rg-tool-card__desc {
    font-family: "Nunito", sans-serif;
    font-size: 0.9rem;
    color: var(--muted-foreground);
    line-height: 1.55;
    margin: 0;
}

/* ============================================
   FAQ PAGE - SEO TEXT SECTION
   ============================================ */

.faq-seo-section {
    background-color: var(--background);
    padding-top: 80px;
    padding-bottom: 80px;
}

@media (min-width: 1024px) {
    .faq-seo-section {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

.faq-seo-section h2 {
    margin-bottom: 40px;
    text-align: center;
}

/* ============================================
   FAQ WITHDRAWAL MINI TABLE
   ============================================ */

.faq-withdrawal-mini-table {
    max-width: 860px;
    margin: 0 auto;
}

/* ============================================
   ZAHLUNGEN PAGE - HERO
   ============================================ */

.zahlung-hero {
    background: radial-gradient(ellipse 70% 55% at 60% 70%, rgba(0, 200, 80, 0.07) 0%, transparent 60%),
                radial-gradient(ellipse 40% 40% at 15% 25%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
                var(--background);
}

.zahlung-coins-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.zahlung-coin {
    position: absolute;
    opacity: 0.1;
    animation: coinFloat 18s ease-in-out infinite;
}

.zahlung-coin--1 { top: 10%; left: 4%;  font-size: 2.2rem; animation-delay: 0s; }
.zahlung-coin--2 { top: 28%; right: 4%; font-size: 1.6rem; animation-delay: -5s; }
.zahlung-coin--3 { bottom: 28%; left: 6%; font-size: 1.8rem; animation-delay: -9s; }
.zahlung-coin--4 { top: 55%; left: 48%; font-size: 1.2rem; animation-delay: -3s; }
.zahlung-coin--5 { bottom: 14%; right: 8%; font-size: 2rem; animation-delay: -14s; }

/* ============================================
   ZAHLUNGEN PAGE - DEPOSIT SECTION
   ============================================ */

.zahlung-deposit-section {
    background-color: var(--background);
}

.zahlung-deposit-note {
    max-width: 860px;
    margin: 0 auto;
}

/* ============================================
   ZAHLUNGEN PAGE - WITHDRAWAL SECTION
   ============================================ */

.zahlung-withdrawal-section {
    background-color: var(--card);
    padding-top: 80px;
    padding-bottom: 80px;
}

@media (min-width: 1024px) {
    .zahlung-withdrawal-section {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

.zahlung-withdrawal-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}

@media (min-width: 1024px) {
    .zahlung-withdrawal-inner {
        grid-template-columns: 1fr 260px;
        gap: 56px;
        align-items: center;
    }
}

.zahlung-withdrawal-content h2 {
    margin-bottom: 16px;
}

.zahlung-withdrawal-mascot {
    display: none;
    justify-content: center;
    align-items: flex-start;
    padding-top: 40px;
}

@media (min-width: 1024px) {
    .zahlung-withdrawal-mascot {
        display: flex;
    }

    .zahlung-withdrawal-mascot img {
        max-height: 380px;
        width: auto;
        filter: drop-shadow(0 0 24px rgba(201, 168, 76, 0.18));
    }
}

/* ============================================
   ZAHLUNGEN PAGE - CRYPTO SECTION
   ============================================ */

.zahlung-crypto-section {
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
    overflow: clip;
}

@media (min-width: 1024px) {
    .zahlung-crypto-section {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

.zahlung-crypto-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--primary), var(--accent), transparent);
    opacity: 0.5;
}

.zahlung-crypto-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 1024px) {
    .zahlung-crypto-inner {
        grid-template-columns: 1fr 360px;
        gap: 64px;
    }
}

.zahlung-crypto-content h2 {
    margin-bottom: 12px;
}

.zahlung-crypto-mascot {
    display: none;
    justify-content: center;
    align-items: flex-end;
}

@media (min-width: 1024px) {
    .zahlung-crypto-mascot {
        display: flex;
    }

    .zahlung-crypto-mascot img {
        max-height: 420px;
        width: auto;
        filter: drop-shadow(0 0 32px rgba(170, 255, 0, 0.2));
    }
}

/* ============================================
   ZAHLUNGEN PAGE - LIMITS SECTION
   ============================================ */

.zahlung-limits-section {
    background-color: var(--background);
    padding-top: 80px;
    padding-bottom: 80px;
}

@media (min-width: 1024px) {
    .zahlung-limits-section {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

.zahlung-limits-grid {
    max-width: 860px;
    margin: 0 auto;
}

/* ============================================
   ZAHLUNGEN PAGE - KYC SECTION
   ============================================ */

.zahlung-kyc-section {
    background-color: var(--card);
    padding-top: 80px;
    padding-bottom: 80px;
}

@media (min-width: 1024px) {
    .zahlung-kyc-section {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

.zahlung-kyc-steps {
    max-width: 960px;
    margin: 0 auto;
}

.zahlung-kyc-docs {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.zahlung-docs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

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

.zahlung-doc-card {
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color 0.2s;
    min-width: 0;
}

.zahlung-doc-card:hover {
    border-color: var(--primary);
}

.zahlung-doc-icon {
    font-size: 2rem;
    line-height: 1;
}

.zahlung-doc-card h4 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.125rem;
    letter-spacing: 0.05em;
    color: var(--foreground);
    margin-bottom: 4px;
}

.zahlung-doc-card ul {
    padding-left: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.zahlung-doc-card li {
    list-style: disc;
    font-family: "Nunito", sans-serif;
    font-size: 0.9rem;
    color: var(--muted-foreground);
    line-height: 1.4;
}

/* ============================================
   ZAHLUNGEN PAGE - SECURITY SECTION
   ============================================ */

.zahlung-security-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

@media (min-width: 1024px) {
    .zahlung-security-section {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

/* ============================================
   ZAHLUNGEN PAGE - FAQ & SEO
   ============================================ */

.zahlung-faq-section {
    background-color: var(--background);
}

.zahlung-seo-section {
    background-color: var(--card);
    padding-top: 80px;
    padding-bottom: 80px;
}

@media (min-width: 1024px) {
    .zahlung-seo-section {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

.zahlung-seo-section h2 {
    margin-bottom: 40px;
    text-align: center;
}

/* ============================================
   VIP PAGE - HERO
   ============================================ */

.vip-hero {
    background: radial-gradient(ellipse 70% 55% at 65% 70%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse 40% 40% at 20% 20%, rgba(0, 200, 80, 0.06) 0%, transparent 60%),
                var(--background);
}

.vip-hero-coins-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.vip-hero-coin {
    position: absolute;
    opacity: 0.12;
    animation: coinFloat 18s ease-in-out infinite;
}

.vip-hero-coin--1 { top: 10%;  left: 4%;  font-size: 2rem;   animation-delay: 0s; }
.vip-hero-coin--2 { top: 25%; right: 5%; font-size: 1.8rem;  animation-delay: -4s; }
.vip-hero-coin--3 { bottom: 28%; left: 7%;  font-size: 1.5rem;  animation-delay: -8s; }
.vip-hero-coin--4 { top: 55%; left: 44%;  font-size: 1.2rem;  animation-delay: -2s; }
.vip-hero-coin--5 { bottom: 16%; right: 9%; font-size: 2.2rem;  animation-delay: -12s; }

/* ============================================
   VIP PAGE - TIERS SECTION
   ============================================ */

.vip-tiers-section {
    background-color: var(--background);
}

/* ============================================
   VIP PAGE - PERKS TABLE SECTION
   ============================================ */

.vip-perks-section {
    background-color: var(--card);
}

.vip-perks-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}

@media (min-width: 1024px) {
    .vip-perks-layout {
        grid-template-columns: 1fr 280px;
        gap: 56px;
        align-items: center;
    }
}

.vip-perks-mascot {
    display: none;
    justify-content: center;
    align-items: flex-start;
    padding-top: 40px;
}

@media (min-width: 1024px) {
    .vip-perks-mascot {
        display: flex;
    }

    .vip-perks-mascot img {
        max-height: 420px;
        width: auto;
        filter: drop-shadow(0 0 28px rgba(201, 168, 76, 0.2));
    }
}

/* ============================================
   VIP PAGE - CASHBACK HIGHLIGHT SECTION
   Full-bleed diagonal #132040 bg
   ============================================ */

.vip-cashback-section {
    background-color: var(--card);
    position: relative;
    overflow: clip;
    padding: 80px 0;
}

.vip-cashback-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--secondary), var(--primary), var(--secondary), transparent);
    opacity: 0.4;
}

.vip-cashback-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), var(--primary), transparent);
    opacity: 0.4;
}

.vip-cashback-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

@media (min-width: 1024px) {
    .vip-cashback-inner {
        grid-template-columns: auto 1fr;
        gap: 64px;
    }
}

.vip-cashback-number {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(6rem, 20vw, 10rem);
    color: var(--primary);
    line-height: 1;
    letter-spacing: 0.02em;
    text-align: center;
    text-shadow: 0 0 60px rgba(0, 200, 80, 0.3);
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .vip-cashback-number {
        min-width: 320px;
        text-align: left;
    }
}

/* ============================================
   VIP PAGE - FORTUNE WHEEL SECTION
   ============================================ */

.fortune-section {
    background-color: var(--background);
    position: relative;
    overflow: clip;
}

.fortune-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 1024px) {
    .fortune-inner {
        grid-template-columns: 360px 1fr;
        gap: 64px;
    }
}

.fortune-wheel-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.fortune-wheel-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 320px;
}

.fortune-wheel-outer {
    position: relative;
    width: 240px;
    height: 240px;
    flex-shrink: 0;
}

@media (min-width: 480px) {
    .fortune-wheel-outer {
        width: 280px;
        height: 280px;
    }
}

.fortune-wheel-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 20px rgba(201, 168, 76, 0.3));
    transition: transform 3s cubic-bezier(0.2, 0.8, 0.3, 1);
    transform-origin: center;
}

.fortune-wheel-outer:hover .fortune-wheel-svg {
    transform: rotate(720deg);
}

.fortune-pointer {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--secondary);
    font-size: 1.5rem;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
    z-index: 2;
}

.fortune-prizes-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 8px;
}

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

.fortune-prize-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 8px;
    text-align: center;
    transition: border-color 0.2s, transform 0.2s;
    min-width: 0;
}

.fortune-prize-item:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.fortune-prize-item--special {
    border-color: var(--accent);
    background-color: rgba(170, 255, 0, 0.05);
}

.fortune-prize-item--special:hover {
    border-color: var(--accent);
    box-shadow: 0 0 16px rgba(170, 255, 0, 0.2);
}

.fortune-prize-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.fortune-prize-label {
    font-family: "Bebas Neue", sans-serif;
    font-size: 0.875rem;
    letter-spacing: 0.06em;
    color: var(--foreground);
}

.fortune-prize-range {
    font-family: "Nunito", sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
}

.fortune-prize-item--special .fortune-prize-range {
    color: var(--accent);
}

/* ============================================
   VIP PAGE - REVIEWS
   ============================================ */

.vip-reviews-section {
    background-color: var(--card);
}

.vip-review-tier-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background-color: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: var(--radius-pill);
    padding: 3px 12px;
    font-family: "Bebas Neue", sans-serif;
    font-size: 0.875rem;
    letter-spacing: 0.06em;
    color: var(--secondary);
    margin-bottom: 4px;
}

.vip-win-feed-wrap {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.vip-win-feed-wrap h3 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.375rem;
    letter-spacing: 0.05em;
    color: var(--foreground);
}

/* ============================================
   SPIELE PAGE - HERO
   ============================================ */

.hero-spiele {
    background: radial-gradient(ellipse 70% 55% at 60% 70%, rgba(0, 200, 80, 0.07) 0%, transparent 60%),
                radial-gradient(ellipse 40% 40% at 15% 25%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
                var(--background);
}

.spiele-coins-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.spiele-coin {
    position: absolute;
    opacity: 0.1;
    animation: coinFloat 18s ease-in-out infinite;
}

.spiele-coin--1 { top: 10%; left: 4%;  font-size: 2.2rem; animation-delay: 0s; }
.spiele-coin--2 { top: 28%; right: 4%; font-size: 1.6rem; animation-delay: -5s; }
.spiele-coin--3 { bottom: 28%; left: 6%; font-size: 1.4rem; animation-delay: -9s; }
.spiele-coin--4 { top: 55%; left: 48%; font-size: 1.2rem; animation-delay: -3s; }
.spiele-coin--5 { bottom: 14%; right: 8%; font-size: 2rem; animation-delay: -14s; }

/* ============================================
   SPIELE PAGE - CATEGORY TABS STICKY WRAP
   ============================================ */

.category-tabs-wrap {
    position: sticky;
    top: var(--header-height);
    z-index: 900;
    background-color: rgba(11, 20, 38, 0.97);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    backdrop-filter: blur(8px);
}

.category-tabs-wrap .container {
    overflow-x: auto;
    scrollbar-width: none;
}

.category-tabs-wrap .container::-webkit-scrollbar {
    display: none;
}

/* ============================================
   SPIELE PAGE - SECTION COMMON
   ============================================ */

.spiele-section {
    padding-top: 64px;
    padding-bottom: 64px;
}

@media (min-width: 1024px) {
    .spiele-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.spiele-section-header {
    margin-bottom: 32px;
}

.spiele-section-header--with-mascot {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: center;
}

@media (min-width: 1024px) {
    .spiele-section-header--with-mascot {
        grid-template-columns: 1fr auto;
        gap: 48px;
    }
}

.spiele-live-mascot,
.spiele-table-mascot {
    display: none;
    justify-content: center;
    align-items: flex-end;
}

@media (min-width: 1024px) {
    .spiele-live-mascot,
    .spiele-table-mascot {
        display: flex;
    }

    .spiele-live-mascot img,
    .spiele-table-mascot img {
        filter: drop-shadow(0 0 28px rgba(0, 200, 80, 0.18));
    }
}

/* ============================================
   SPIELE PAGE - CRASH GAMES SECTION
   ============================================ */

.crash-section {
    background-color: var(--card);
    position: relative;
    overflow: clip;
}

.crash-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--primary), var(--accent), transparent);
    opacity: 0.5;
}

.crash-section-header {
    margin-bottom: 32px;
}

.crash-spotlight-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

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

.crash-spotlight-card {
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
    min-width: 0;
}

.crash-spotlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 32px rgba(170, 255, 0, 0.2);
    border-color: var(--accent);
}

.crash-spotlight-card__img-wrap {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.crash-spotlight-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.crash-spotlight-card:hover .crash-spotlight-card__img-wrap img {
    transform: scale(1.04);
}

.crash-spotlight-rtp {
    position: absolute;
    top: 8px;
    left: 8px;
    background-color: rgba(11, 20, 38, 0.85);
    color: var(--accent);
    font-family: "Bebas Neue", sans-serif;
    font-size: 0.875rem;
    letter-spacing: 0.06em;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(170, 255, 0, 0.3);
    backdrop-filter: blur(4px);
}

.crash-spotlight-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.crash-spotlight-card__body h3 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    color: var(--foreground);
}

.crash-spotlight-card__body p {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.55;
    margin: 0;
}

.crash-more-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.crash-more-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.crash-more-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background-color: rgba(170, 255, 0, 0.07);
    border: 1px solid rgba(170, 255, 0, 0.2);
    border-radius: var(--radius-pill);
    font-family: "Nunito", sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    transition: background-color 0.2s, border-color 0.2s;
}

.crash-more-pill:last-child {
    color: var(--muted-foreground);
    border-color: var(--border);
    background-color: var(--card);
}

/* ============================================
   SPIELE PAGE - LIVE CASINO SECTION
   ============================================ */

.live-casino-section {
    background-color: var(--background);
}

/* ============================================
   SPIELE PAGE - JACKPOTS SECTION
   ============================================ */

.jackpot-section {
    background-color: var(--card);
    position: relative;
    overflow: clip;
}

.jackpot-mascot-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: center;
}

@media (min-width: 1024px) {
    .jackpot-mascot-row {
        grid-template-columns: auto 1fr;
        gap: 48px;
    }
}

.jackpot-mascot-img {
    display: none;
    justify-content: center;
    align-items: flex-end;
}

@media (min-width: 1024px) {
    .jackpot-mascot-img {
        display: flex;
    }

    .jackpot-mascot-img img {
        filter: drop-shadow(0 0 32px rgba(201, 168, 76, 0.25));
    }
}

.jackpot-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

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

.jackpot-card {
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-width: 0;
}

.jackpot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 28px rgba(201, 168, 76, 0.25);
    border-color: var(--secondary);
}

.jackpot-card__img-wrap {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.jackpot-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.jackpot-card:hover .jackpot-card__img-wrap img {
    transform: scale(1.04);
}

.jackpot-card__body {
    padding: 16px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.jackpot-card__body h3 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.375rem;
    letter-spacing: 0.05em;
    color: var(--foreground);
}

.jackpot-counter {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 4px;
}

.jackpot-counter__label {
    font-family: "Nunito", sans-serif;
    font-size: 0.75rem;
    color: var(--muted-foreground);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.jackpot-counter__value {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.75rem;
    letter-spacing: 0.03em;
    line-height: 1;
}