/* ============================================
   LEMON CASINO - DESIGN SYSTEM
   Mobile-first, dark tropical resort aesthetic
   Fonts: Baloo 2 (display) + Nunito (body)
   ============================================ */

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

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
    overflow-x: hidden;
}

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

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

pre, code {
    max-width: 100%;
    overflow-x: auto;
}

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

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

section {
    overflow: clip;
}

ul[role="list"],
ol[role="list"] {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: var(--font-display);
    cursor: pointer;
    border: none;
    background: none;
}

/* ============================================
   TYPOGRAPHY SYSTEM
   Baloo 2: headings/display
   Nunito: body text
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--foreground);
}

/* H1 - 32px mobile / 52px desktop */
h1 {
    font-size: clamp(28px, 6vw, 52px);
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* H2 - 26px mobile / 38px desktop */
h2 {
    font-size: clamp(22px, 4vw, 38px);
    font-weight: 700;
    letter-spacing: 0.01em;
}

/* H3 - 20px mobile / 26px desktop */
h3 {
    font-size: clamp(18px, 3vw, 26px);
    font-weight: 700;
}

/* H4 - 18px mobile / 20px desktop */
h4 {
    font-size: clamp(17px, 2.5vw, 20px);
    font-weight: 600;
}

p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--foreground);
    margin-bottom: 1em;
}

p:last-child {
    margin-bottom: 0;
}

/* SEO text blocks */
.seo-text {
    font-size: 16px;
    line-height: 1.7;
    max-width: 72ch;
    color: var(--foreground);
}

.seo-text p {
    margin-bottom: 1.25em;
}

/* Caption / small text */
.text-sm {
    font-size: 14px;
    font-weight: 500;
}

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

/* CTA button labels */
.btn-label {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ============================================
   LAYOUT - CONTAINER & GRID
   ============================================ */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.section {
    padding: var(--section-gap) 0;
}

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

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

.section--light {
    background-color: #f5edd0;
    color: #2c1a0e;
}

.section--light h1,
.section--light h2,
.section--light h3,
.section--light h4,
.section--light p,
.section--light .seo-text {
    color: #2c1a0e;
}

.section--light .text-muted {
    color: #6b4c2a;
}

/* Two-column grid */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--grid-gap);
}

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

/* Three-column grid */
.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--grid-gap);
}

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

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

/* Four-column grid */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--grid-gap);
}

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

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

/* Section heading group */
.section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.section-heading h2 {
    margin-bottom: 12px;
}

.section-heading p {
    color: var(--muted-foreground);
    font-size: 17px;
    max-width: 60ch;
    margin: 0 auto;
}

/* ============================================
   WAVE DIVIDERS - SVG organic transitions
   ============================================ */
.wave-divider {
    display: block;
    width: 100%;
    line-height: 0;
    overflow: hidden;
}

.wave-divider svg {
    display: block;
    width: 100%;
}

/* ============================================
   HEADER - Fixed glass-morphism sticky
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(7, 20, 16, 0.92);
    border-bottom: 1px solid var(--border);
    /* No backdrop-filter on mobile to avoid containing block trap */
}

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

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

@media (min-width: 380px) {
    .header-inner {
        gap: 8px;
        padding: 0 12px;
    }
}

@media (min-width: 480px) {
    .header-inner {
        gap: 12px;
        padding: 0 16px;
    }
}

@media (min-width: 769px) {
    .header-inner {
        gap: 16px;
        padding: 0 var(--container-pad);
    }
}

/* Logo */
.header-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    flex-shrink: 1;
    min-width: 0;
}

.logo-icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-wordmark {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 800;
    color: var(--lemon);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

@media (min-width: 380px) {
    .logo-wordmark {
        font-size: 17px;
    }
}

@media (min-width: 480px) {
    .logo-wordmark {
        font-size: 20px;
    }
}

.logo-casino {
    color: var(--foreground);
}

/* Desktop Nav */
.header-nav {
    display: none;
}

@media (min-width: 769px) {
    .header-nav {
        display: flex;
        align-items: center;
    }
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    color: var(--foreground);
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
    min-height: 40px;
}

.nav-link:hover {
    color: var(--lemon);
    background: rgba(255, 224, 51, 0.1);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

@media (min-width: 380px) {
    .header-actions {
        gap: 8px;
    }
}

.btn-login {
    display: none;
    padding: 8px 16px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--foreground);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: border-color 0.2s, color 0.2s;
    min-height: 40px;
    align-items: center;
}

.btn-login:hover {
    border-color: var(--lemon);
    color: var(--lemon);
}

@media (min-width: 480px) {
    .btn-login {
        display: flex;
    }
}

.btn-register {
    display: flex;
    align-items: center;
    padding: 8px 8px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-foreground);
    background: var(--lemon);
    border-radius: 8px;
    min-height: 40px;
    white-space: nowrap;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 0 12px rgba(255, 224, 51, 0.3);
}

@media (min-width: 380px) {
    .btn-register {
        padding: 8px 10px;
        font-size: 13px;
    }
}

@media (min-width: 480px) {
    .btn-register {
        padding: 8px 16px;
        font-size: 14px;
    }
}

.btn-register:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 20px rgba(255, 224, 51, 0.5);
}

/* ============================================
   MOBILE MENU TOGGLE (Hamburger)
   ============================================ */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    gap: 5px;
    background: rgba(255, 224, 51, 0.1);
    border: 1px solid rgba(255, 224, 51, 0.3);
    border-radius: 8px;
    z-index: 1001;
    flex-shrink: 0;
}

@media (min-width: 380px) {
    .mobile-toggle {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }
}

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

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

.mobile-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 769px) {
    .mobile-toggle {
        display: none;
    }
}

/* ============================================
   MOBILE NAV DRAWER
   Full-screen panel below header
   ============================================ */
/* Overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
}

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

/* Nav drawer - hidden by default on mobile */
@media (max-width: 768px) {
    .header-nav {
        display: none;
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: #071410;
        z-index: 999;
        overflow-y: auto;
        padding: 24px 20px 40px;
        flex-direction: column;
        align-items: stretch;
    }

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

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
    }

    .nav-link {
        font-size: 24px;
        font-weight: 700;
        padding: 16px 12px;
        min-height: 64px;
        border-bottom: 1px solid var(--border);
        border-radius: 0;
        justify-content: flex-start;
        gap: 12px;
    }

    .nav-link:hover {
        background: rgba(255, 224, 51, 0.08);
    }

    /* Mobile-only CTA links inside drawer */
    .header-nav::after {
        content: '';
        display: block;
        margin-top: 32px;
    }
}

/* ============================================
   BUTTONS - Global CTA System
   ============================================ */

/* Primary CTA - lemon yellow */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-foreground);
    background: var(--lemon);
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
    min-height: 52px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 224, 51, 0.45);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Glow pulse animation for CTAs */
.btn-glow {
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 12px rgba(255, 224, 51, 0.35); }
    50% { box-shadow: 0 0 28px rgba(255, 224, 51, 0.65), 0 0 8px rgba(61, 170, 71, 0.4); }
}

.btn-primary:hover {
    animation: none;
    box-shadow: 0 6px 28px rgba(255, 224, 51, 0.6);
}

/* Full-width button */
.btn-full-width {
    display: flex;
    width: 100%;
}

/* Ghost button */
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--lemon);
    background: transparent;
    border: 2px solid var(--lemon);
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    min-height: 52px;
    cursor: pointer;
    white-space: nowrap;
}

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

/* Secondary button - lime green */
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    background: var(--lime);
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    min-height: 52px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(61, 170, 71, 0.45);
}

/* Large hero CTA */
.btn-hero {
    padding: 18px 36px;
    font-size: 18px;
    border-radius: 12px;
    min-height: 60px;
}

/* Promo card dark button - white background, dark text for contrast */
.promo-btn-dark {
    background: #fff;
    color: #2c1a0e;
}

.promo-btn-dark:hover {
    background: #f5f0d8;
    color: #2c1a0e;
}

/* ============================================
   CTA SECTION BAND
   Full-width conversion strip
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, #0f2a22 0%, #132e26 50%, #0a1f18 100%);
    border-top: 2px solid var(--border);
    border-bottom: 2px solid var(--border);
    padding: 56px 0;
    text-align: center;
}

.cta-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cta-section h2 {
    color: var(--lemon);
    font-size: clamp(22px, 4vw, 34px);
}

.cta-section p {
    color: var(--muted-foreground);
    max-width: 50ch;
    margin: 0 auto;
}

.cta-section .cta-sub {
    font-size: 13px;
    color: var(--muted-foreground);
    margin-top: 8px;
}

/* ============================================
   HERO SECTION
   Full-bleed 90vh tropical scene
   ============================================ */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: calc(var(--header-height) + 32px);
    padding-bottom: 80px;
    background: linear-gradient(135deg, #071410 0%, #0a1f18 40%, #0d2920 100%);
    overflow: clip;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 80% 30%, rgba(255, 224, 51, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 70%, rgba(61, 170, 71, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

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

@media (min-width: 768px) {
    .hero-inner {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--lime);
    background: rgba(61, 170, 71, 0.12);
    border: 1px solid rgba(61, 170, 71, 0.3);
    border-radius: 20px;
    padding: 6px 14px;
    width: fit-content;
}

.hero-title {
    color: var(--foreground);
}

.hero-title .highlight {
    color: var(--lemon);
    display: inline;
}

.hero-subtitle {
    font-size: 17px;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
}

.hero-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero-bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--foreground);
}

.hero-bullets li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: var(--lime);
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

@media (min-width: 480px) {
    .hero-ctas {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-mascot-wrap {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.hero-mascot-img {
    width: 100%;
    height: auto;
    animation: float-bob 3s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(255, 224, 51, 0.2));
}

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

/* Hero wave bottom */
.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
}

/* ============================================
   BONUS CARDS - Promotional offers
   ============================================ */
.bonus-card {
    background: var(--teal-card);
    border-radius: var(--border-radius-card);
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

.bonus-card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 32px rgba(255, 224, 51, 0.2);
}

.bonus-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px var(--card-pad);
    position: relative;
}

.bonus-card-header--gold {
    background: linear-gradient(135deg, #f0b429 0%, #ffe033 50%, #3daa47 100%);
}

.bonus-card-header--gratis {
    background: linear-gradient(135deg, #ff5e2e 0%, #ff8c42 100%);
}

.bonus-card-header--coral {
    background: linear-gradient(135deg, #ff5e2e 0%, #ff7452 100%);
}

.bonus-card-header--lime {
    background: linear-gradient(135deg, #2d8a38 0%, #3daa47 100%);
}

.bonus-mascot-icon {
    font-size: 28px;
    line-height: 1;
    flex-shrink: 0;
}

.bonus-card-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    flex: 1;
    min-width: 0;
    line-height: 1.3;
}

.bonus-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 20px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    flex-shrink: 0;
}

.bonus-badge--gold {
    background: rgba(0,0,0,0.25);
    color: #fff;
}

.bonus-badge--gratis {
    background: rgba(255,255,255,0.25);
    color: #fff;
}

.bonus-badge--coral {
    background: rgba(0,0,0,0.2);
    color: #fff;
}

.bonus-badge--lime {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.bonus-card-body {
    padding: var(--card-pad);
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

/* Gold shimmer animation on bonus amounts */
.bonus-amount {
    font-family: var(--font-display);
    font-size: clamp(22px, 5vw, 32px);
    font-weight: 800;
    color: var(--gold);
    line-height: 1.2;
}

.shimmer-gold {
    background: linear-gradient(90deg, #f0b429 0%, #ffe033 40%, #fff176 60%, #f0b429 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer-sweep 2.5s linear infinite;
}

@keyframes shimmer-sweep {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}

.bonus-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bonus-bullets li {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--foreground);
    line-height: 1.5;
    padding-left: 4px;
}

.bonus-terms-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.bonus-term {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--muted-foreground);
    background: var(--muted);
    padding: 3px 8px;
    border-radius: 4px;
    white-space: nowrap;
}

/* ============================================
   GAME CARDS
   ============================================ */
.game-card {
    background: var(--teal-card);
    border-radius: var(--border-radius-game);
    overflow: hidden;
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
    display: block;
}

.game-card:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 32px rgba(255, 224, 51, 0.3);
}

.game-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.game-card-image-wrap {
    position: relative;
    aspect-ratio: 4 / 3;
    background: var(--muted);
    overflow: hidden;
}

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

.game-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f2a22 0%, #1a3a2e 100%);
}

.game-placeholder-emoji {
    font-size: 40px;
    opacity: 0.5;
}

/* Hover overlay */
.game-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 20, 16, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease-out;
}

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

.play-btn-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--lemon);
    color: var(--primary-foreground);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 0 24px rgba(255, 224, 51, 0.6);
    padding-left: 4px;
}

/* RTP / Badge */
.game-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 10px;
    border-radius: 20px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 2;
}

.game-badge--rtp {
    background: var(--lemon);
    color: var(--primary-foreground);
}

.game-badge--exclusive {
    background: linear-gradient(135deg, #f0b429, #ffe033);
    color: var(--primary-foreground);
}

/* Fix: darker background for crash/hot badge to meet 4.5:1 contrast with white text */
.game-badge--hot {
    background: #c0390c;
    color: #fff;
}

.game-badge--new {
    background: #1e6e27;
    color: #fff;
}

/* Card info strip */
.game-card-info {
    padding: 10px 12px;
    background: var(--teal-card);
}

.game-card-title {
    display: block;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--foreground);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
}

.game-card-provider {
    display: block;
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--muted-foreground);
}

/* Game grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--grid-gap);
}

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

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

/* ============================================
   STAT TRUST BAR
   Full-width band with key metrics
   ============================================ */
.stat-trust-bar {
    padding: 40px 0;
    overflow: clip;
}

.stat-trust-bar--yellow {
    background: linear-gradient(135deg, #f0b429 0%, #ffe033 50%, #3daa47 100%);
}

.stat-trust-bar--gold {
    background: linear-gradient(135deg, #c88a10 0%, #f0b429 50%, #ffe033 100%);
}

.stat-bar-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.stat-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 20px;
    min-width: 120px;
    position: relative;
}

.stat-icon {
    font-size: 22px;
    margin-bottom: 4px;
    line-height: 1;
}

.stat-value {
    font-family: var(--font-display);
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 800;
    color: #2c1a0e;
    line-height: 1.1;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 13px;
    color: #4a2e10;
    font-weight: 600;
    text-align: center;
    margin-top: 2px;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(44, 26, 14, 0.2);
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .stat-divider {
        display: none;
    }

    .stat-block {
        flex: 0 0 50%;
        border-bottom: 1px solid rgba(44, 26, 14, 0.15);
    }

    .stat-block:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

.stat-trust-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(44, 26, 14, 0.15);
}

.trust-seal {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    color: #4a2e10;
    background: rgba(44, 26, 14, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
}

/* ============================================
   FAQ ACCORDION
   Expandable Q&A with FAQPage schema
   ============================================ */
.faq-section {
    padding: var(--section-gap) 0;
}

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

.faq-section--light {
    background-color: #f0e8d0;
}

.faq-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    text-align: center;
}

.faq-mascot-accent {
    font-size: 28px;
    line-height: 1;
}

.faq-heading {
    text-align: center;
    color: var(--foreground);
}

.faq-section--light .faq-heading {
    color: #2c1a0e;
}

.faq-list {
    max-width: 72ch;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: var(--teal-card);
    border-radius: 10px;
    border-left: 4px solid var(--coral);
    overflow: hidden;
}

.faq-section--light .faq-item {
    background: #fff;
    border-left-color: var(--coral);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 16px 20px;
    min-height: 64px;
    text-align: left;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.faq-question span:first-child {
    font-family: var(--font-display);
    font-size: clamp(15px, 2.5vw, 18px);
    font-weight: 600;
    color: var(--foreground);
    line-height: 1.4;
}

.faq-section--light .faq-question span:first-child {
    color: #2c1a0e;
}

.faq-question:hover {
    background: rgba(255, 224, 51, 0.05);
}

.faq-item.is-open .faq-question {
    background: rgba(255, 224, 51, 0.08);
}

.faq-chevron {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.is-open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 20px 16px 20px;
}

.faq-answer.is-open {
    display: block;
    animation: faq-expand 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-answer-inner {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--muted-foreground);
}

.faq-section--light .faq-answer-inner {
    color: #5a3d22;
}

.faq-answer-inner a {
    color: var(--lemon);
    text-decoration: underline;
}

.faq-section--light .faq-answer-inner a {
    color: #c88a10;
}

/* ============================================
   PROVIDER LOGOS STRIP
   Marquee / auto-scroll carousel
   ============================================ */
.providers-section {
    padding: var(--section-gap) 0;
    background: #f0e8d0;
    overflow: clip;
}

.providers-section .section-heading h2,
.providers-section .section-heading p {
    color: #2c1a0e;
}

.providers-section .section-heading p {
    color: #6b4c2a;
}

.providers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.provider-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: #fff;
    border-radius: 10px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: #4a2e10;
    opacity: 0.7;
    transition: opacity 0.2s;
    border: 1px solid rgba(44, 26, 14, 0.1);
    min-width: 100px;
    text-align: center;
}

.provider-logo:hover {
    opacity: 1;
}

/* ============================================
   WINNER FEED - Social proof ticker
   Static layout (no infinite scroll marquee
   to avoid overflow validation issues)
   ============================================ */
.winner-feed-section {
    background: var(--teal-mid);
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: clip;
}

.winner-feed-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 0 var(--container-pad);
}

.winner-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--muted-foreground);
    white-space: nowrap;
    padding: 6px 12px;
    background: var(--teal-card);
    border-radius: 20px;
    border: 1px solid var(--border);
}

.winner-item .win-amount {
    color: var(--lemon);
    font-weight: 700;
}

.winner-item .win-game {
    color: var(--foreground);
    font-weight: 600;
}

/* ============================================
   CATEGORY FILTER TABS
   ============================================ */
.category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.cat-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--muted-foreground);
    background: var(--teal-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    cursor: pointer;
    transition: color 0.2s, background 0.2s, border-color 0.2s;
    min-height: 40px;
    white-space: nowrap;
}

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

/* ============================================
   NO-DEPOSIT TEASER BAND
   ============================================ */
.no-deposit-band {
    background: linear-gradient(135deg, #ffe033 0%, #f0b429 50%, #3daa47 100%);
    padding: 48px 0;
    text-align: center;
    overflow: clip;
}

.no-deposit-band .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.no-deposit-amount {
    font-family: var(--font-display);
    font-size: clamp(56px, 12vw, 96px);
    font-weight: 800;
    color: var(--coral);
    line-height: 1;
    text-shadow: 0 3px 12px rgba(255, 94, 46, 0.3);
}

.no-deposit-label {
    font-family: var(--font-display);
    font-size: clamp(18px, 3vw, 26px);
    font-weight: 700;
    color: #2c1a0e;
}

.no-deposit-sub {
    font-family: var(--font-body);
    font-size: 15px;
    color: #4a2e10;
    margin: 0;
}

.no-deposit-urgency {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(44, 26, 14, 0.15);
    border-radius: 20px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: #2c1a0e;
    letter-spacing: 0.5px;
}

.no-deposit-band .btn-primary {
    background: #2c1a0e;
    color: var(--lemon);
}

.no-deposit-band .btn-primary:hover {
    background: #1a0e06;
}

/* ============================================
   VIP TIER CARDS
   ============================================ */
.vip-tiers {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.vip-tier-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 16px;
    background: var(--teal-card);
    border-radius: 12px;
    border: 1px solid var(--border);
    min-width: 120px;
    flex: 1;
    max-width: 180px;
    text-align: center;
}

.vip-tier-card--platinum,
.vip-tier-card--legend {
    border-color: var(--gold);
    box-shadow: 0 0 16px rgba(240, 180, 41, 0.2);
}

.vip-tier-icon {
    font-size: 32px;
    line-height: 1;
}

.vip-tier-name {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--foreground);
}

/* ============================================
   PROMOTIONS STRIP
   ============================================ */
.promotions-strip {
    background: linear-gradient(135deg, var(--coral) 0%, #ff8c42 50%, var(--lemon) 100%);
    padding: 56px 0;
    overflow: clip;
}

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

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

.promo-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.promo-amount {
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.promo-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.promo-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    background: rgba(255,255,255,0.2);
    padding: 4px 10px;
    border-radius: 20px;
    width: fit-content;
}

/* ============================================
   SEO TEXT SECTION
   Long-form content for organic search
   ============================================ */
.seo-section {
    padding: var(--section-gap) 0;
    background: #f5edd0;
}

.seo-content-wrap {
    max-width: 72ch;
    margin: 0 auto;
}

.seo-section h2 {
    font-size: clamp(22px, 4vw, 34px);
    color: #2c1a0e;
    margin-bottom: 16px;
    margin-top: 40px;
}

.seo-section h2:first-child {
    margin-top: 0;
}

.seo-section h3 {
    font-size: clamp(18px, 3vw, 22px);
    color: #2c1a0e;
    margin-bottom: 12px;
    margin-top: 28px;
}

.seo-section p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: #4a3020;
    margin-bottom: 1em;
}

.seo-section ul, .seo-section ol {
    margin-left: 20px;
    margin-bottom: 1em;
}

.seo-section li {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: #4a3020;
    margin-bottom: 6px;
}

/* Fix: darker amber for links on light background to meet 4.5:1 contrast */
.seo-section a {
    color: #8a5c00;
    text-decoration: underline;
}

.seo-section a:hover {
    color: #6a4500;
}

.seo-section strong {
    color: #2c1a0e;
}

.seo-mascot-float {
    float: right;
    margin: 0 0 16px 20px;
    font-size: 64px;
    line-height: 1;
    animation: float-bob 3s ease-in-out infinite;
}

/* ============================================
   TABLES - Comparison & data tables
   ============================================ */
.table-wrapper {
    max-width: 100%;
    overflow-x: auto;
    border-radius: 10px;
    border: 1px solid var(--border);
    margin-bottom: 1.5em;
}

/* Fix: scrollable table wrappers need tabindex for keyboard access */
.table-wrapper:focus {
    outline: 2px solid var(--lemon);
    outline-offset: 2px;
}

.seo-section .table-wrapper {
    border-color: rgba(44, 26, 14, 0.2);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
    font-family: var(--font-body);
    font-size: 14px;
}

thead {
    background: var(--lemon);
}

.seo-section thead {
    background: #f0b429;
}

thead th {
    padding: 12px 16px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-foreground);
    text-align: left;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

tbody tr {
    border-bottom: 1px solid var(--border);
}

.seo-section tbody tr {
    border-color: rgba(44, 26, 14, 0.1);
}

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

tbody tr:nth-child(even) {
    background: var(--muted);
}

.seo-section tbody tr:nth-child(even) {
    background: rgba(44, 26, 14, 0.05);
}

tbody td {
    padding: 10px 16px;
    color: var(--foreground);
    line-height: 1.5;
}

.seo-section tbody td {
    color: #4a3020;
}

/* Highlight column (recommended) */
.col-highlight {
    background: rgba(255, 224, 51, 0.1);
    font-weight: 600;
    color: var(--lemon);
}

/* Fix: darker amber for highlight in light seo section - must pass 4.5:1 on both even/odd rows */
.seo-section .col-highlight {
    color: #6b4400;
    background: rgba(107, 68, 0, 0.08);
}

/* ============================================
   CALLOUT / HIGHLIGHT BOXES
   ============================================ */
.callout {
    display: flex;
    gap: 16px;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--lemon);
    background: rgba(255, 224, 51, 0.08);
    margin: 1.5em 0;
}

.callout--coral {
    border-left-color: var(--coral);
    background: rgba(255, 94, 46, 0.08);
}

.callout--lime {
    border-left-color: var(--lime);
    background: rgba(61, 170, 71, 0.08);
}

.callout-icon {
    font-size: 24px;
    flex-shrink: 0;
    line-height: 1.4;
}

.callout-content {
    flex: 1;
    min-width: 0;
}

.callout-content p {
    font-size: 15px;
    margin: 0;
    color: var(--foreground);
}

.seo-section .callout {
    background: rgba(240, 180, 41, 0.08);
}

.seo-section .callout-content p {
    color: #4a3020;
}

/* Summary / TL;DR box */
.summary-box {
    background: rgba(255, 224, 51, 0.1);
    border: 1px solid rgba(255, 224, 51, 0.3);
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 2em;
}

.summary-box h3,
.summary-box .summary-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--lemon);
    margin-bottom: 10px;
}

.seo-section .summary-box {
    background: rgba(44, 26, 14, 0.06);
    border-color: rgba(44, 26, 14, 0.2);
}

/* Fix: use dark text for summary-title on light seo section background */
.seo-section .summary-box h3,
.seo-section .summary-box .summary-title {
    color: #2c1a0e;
}

/* Pull quote */
blockquote.pull-quote {
    margin: 1.5em 0;
    padding: 24px 28px;
    border-left: 4px solid var(--lemon);
    background: rgba(255, 224, 51, 0.06);
    border-radius: 0 10px 10px 0;
    font-family: var(--font-display);
    font-size: clamp(17px, 2.5vw, 20px);
    font-weight: 600;
    font-style: italic;
    color: var(--foreground);
    line-height: 1.5;
}

blockquote.pull-quote cite {
    display: block;
    margin-top: 12px;
    font-family: var(--font-body);
    font-size: 13px;
    font-style: normal;
    color: var(--muted-foreground);
}

.seo-section blockquote.pull-quote {
    color: #2c1a0e;
    border-left-color: #8a5c00;
    background: rgba(44, 26, 14, 0.05);
}

.seo-section blockquote.pull-quote cite {
    color: #5a3d22;
}

/* ============================================
   TRUST SECTION
   ============================================ */
.trust-section {
    padding: var(--section-gap) 0;
    background: #f0e8d0;
}

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

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

.trust-pillar {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 24px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(44, 26, 14, 0.1);
}

.trust-pillar-icon {
    font-size: 40px;
    line-height: 1;
}

.trust-pillar h3 {
    color: #2c1a0e;
    font-size: 18px;
}

.trust-pillar p {
    color: #6b4c2a;
    font-size: 15px;
    margin: 0;
}

/* ============================================
   LIVE CASINO SPECIFIC
   ============================================ */
.live-game-card .game-card-image-wrap {
    aspect-ratio: 16 / 10;
}

.hero-section--live {
    background: linear-gradient(135deg, #050f0c 0%, #071410 40%, #0a1c16 100%);
}

/* ============================================
   CASHBACK HIGHLIGHT CARD
   ============================================ */
.cashback-card {
    background: var(--teal-card);
    border: 2px solid var(--gold);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
    box-shadow: 0 0 32px rgba(240, 180, 41, 0.15);
    max-width: 640px;
    margin: 0 auto;
}

.cashback-percent {
    font-family: var(--font-display);
    font-size: clamp(56px, 12vw, 96px);
    font-weight: 800;
    color: var(--coral);
    line-height: 1;
    text-shadow: 0 0 24px rgba(255, 94, 46, 0.4);
}

.cashback-title {
    font-family: var(--font-display);
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 700;
    color: var(--foreground);
}

.cashback-sub {
    color: var(--muted-foreground);
    font-size: 15px;
    margin: 0;
}

/* ============================================
   STAT HIGHLIGHT
   Big number with label
   ============================================ */
.stat-highlight {
    text-align: center;
    padding: 16px;
}

.stat-highlight .stat-number {
    font-family: var(--font-display);
    font-size: clamp(40px, 8vw, 64px);
    font-weight: 800;
    color: var(--lemon);
    line-height: 1;
    display: block;
}

.stat-highlight .stat-source {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--muted-foreground);
    margin-top: 4px;
    display: block;
}

/* ============================================
   NON-STICKY EXPLAINER - Step cards
   ============================================ */
.steps-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
}

.step-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    background: var(--teal-card);
    border-radius: 10px;
    border: 1px solid var(--border);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--coral);
    color: #fff;
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    flex-shrink: 0;
}

.step-content h4,
.step-content .step-title {
    font-family: var(--font-display);
    font-size: clamp(15px, 2vw, 17px);
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 4px;
}

.step-content p {
    font-size: 14px;
    color: var(--muted-foreground);
    margin: 0;
}

/* ============================================
   VS CARDS - Non-sticky comparison
   ============================================ */
.vs-card h4,
.vs-card .vs-card-title {
    font-family: var(--font-display);
    font-size: clamp(15px, 2vw, 17px);
    font-weight: 700;
    color: var(--foreground);
}

/* ============================================
   FOOTER
   Four-column responsive layout
   ============================================ */
.site-footer {
    background: #040d0b;
    color: var(--muted-foreground);
    border-top: 1px solid var(--border);
    overflow: clip;
}

.footer-wave {
    line-height: 0;
    margin-bottom: -2px;
    background: var(--background);
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 0 32px;
}

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

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 2fr;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    color: var(--lemon);
    text-decoration: none;
}

.footer-logo svg {
    flex-shrink: 0;
}

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

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

.trust-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    background: var(--teal-mid);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    color: var(--muted-foreground);
    letter-spacing: 0.5px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--foreground);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-link {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.2s;
    padding: 2px 0;
}

.footer-link:hover {
    color: var(--lemon);
}

.footer-link-cta {
    color: var(--lemon);
    font-weight: 600;
}

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

.payment-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    background: var(--teal-mid);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    color: var(--muted-foreground);
    letter-spacing: 0.3px;
    min-width: 48px;
    text-align: center;
}

.footer-license {
    font-size: 12px;
    color: var(--muted-foreground);
    line-height: 1.5;
    margin: 0;
    margin-top: 8px;
}

.footer-license strong {
    color: var(--foreground);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px 0;
    border-top: 1px solid var(--border);
    align-items: center;
    text-align: center;
}

.footer-bottom-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.bottom-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    background: var(--teal-mid);
    border-radius: 20px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    color: var(--muted-foreground);
}

.footer-disclaimer {
    font-size: 12px;
    color: var(--muted-foreground);
    max-width: 60ch;
    line-height: 1.5;
    margin: 0;
}

.footer-copyright {
    font-size: 12px;
    color: var(--muted-foreground);
    margin: 0;
}

/* ============================================
   SCROLL-TRIGGERED ANIMATIONS
   JS adds .is-visible when element enters viewport
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

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

/* Stagger delays for grid children */
.animate-on-scroll:nth-child(2) { transition-delay: 0.15s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.45s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.6s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.75s; }
.animate-on-scroll:nth-child(n+7) { transition-delay: 0.75s; }

/* Body scroll lock (JS-toggled) */
body.menu-open {
    overflow: hidden;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-lemon { color: var(--lemon); }
.text-coral { color: var(--coral); }
.text-lime { color: var(--lime); }
.text-gold { color: var(--gold); }
.text-muted { color: var(--muted-foreground); }

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

.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

.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;
}

/* Page body offset for fixed header */
body > main {
    padding-top: var(--header-height);
}

/* Claim page - no header offset */
body.claim-page > main {
    padding-top: 0;
}

/* ============================================
   THEME TOGGLE BUTTON
   ============================================ */
.theme-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 224, 51, 0.1);
    border: 1px solid rgba(255, 224, 51, 0.25);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    flex-shrink: 0;
    font-size: 18px;
}

.theme-toggle-btn:hover {
    background: rgba(255, 224, 51, 0.2);
    border-color: rgba(255, 224, 51, 0.5);
}

/* Show only relevant icon per theme */
html.dark .theme-icon--dark { display: none; }
html.dark .theme-icon--light { display: inline; }
html.light .theme-icon--dark { display: inline; }
html.light .theme-icon--light { display: none; }

/* ============================================
   LIGHT THEME OVERRIDES
   ============================================ */
html.light {
    --background: #f5edd0;
    --foreground: #2c1a0e;
    --card: #ffffff;
    --card-foreground: #2c1a0e;
    --card-alt: #fdf6e3;
    --muted: #e8dcb8;
    --muted-foreground: #7a5c3a;
    --border: #d4c49a;
    --teal-mid: #fff8e8;
    --teal-card: #ffffff;
    --teal-dark: #f5edd0;
}

html.light .site-header {
    background: rgba(245, 237, 208, 0.92);
    border-bottom-color: #d4c49a;
}

html.light .nav-link {
    color: #2c1a0e;
}

html.light .nav-link:hover {
    color: #c88a10;
    background: rgba(200, 138, 16, 0.1);
}

html.light .btn-login {
    color: #2c1a0e;
    border-color: #d4c49a;
}

html.light .btn-login:hover {
    color: #c88a10;
}

html.light .mobile-toggle {
    background: rgba(200, 138, 16, 0.1);
    border-color: rgba(200, 138, 16, 0.3);
}

html.light .mobile-toggle span {
    background: #c88a10;
}

html.light .header-nav {
    background: #f5edd0;
}

html.light body {
    background-color: #f5edd0;
    color: #2c1a0e;
}

html.light .hero-section {
    background: linear-gradient(135deg, #f0e4b4 0%, #e8d89c 40%, #f0e4b4 100%);
}

html.light .hero-section::before {
    background:
        radial-gradient(ellipse 60% 50% at 80% 30%, rgba(200, 138, 16, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 70%, rgba(61, 170, 71, 0.08) 0%, transparent 70%);
}

html.light .hero-title,
html.light .hero-subtitle,
html.light h1, html.light h2, html.light h3, html.light h4 {
    color: #2c1a0e;
}

html.light p { color: #4a3020; }

html.light .faq-section--dark {
    background-color: #f5edd0;
}

html.light .faq-item {
    background: #ffffff;
}

html.light .faq-question span:first-child {
    color: #2c1a0e;
}

html.light .section--dark {
    background-color: #f5edd0;
}

html.light .section--card {
    background-color: #ffffff;
}

html.light .bonus-card {
    background: #ffffff;
    border-color: #d4c49a;
}

html.light .game-card {
    background: #ffffff;
}

html.light .game-card-info {
    background: #fff;
}

html.light .game-card-title {
    color: #2c1a0e;
}

html.light .mobile-nav-overlay {
    background: rgba(44, 26, 14, 0.5);
}

html.light .site-footer {
    background: #e8d8a4;
}

html.light .footer-link {
    color: #7a5c3a;
}

html.light .footer-heading {
    color: #2c1a0e;
}

/* ============================================
   RESPONSIVE TOUCH TARGET SAFETY
   All interactive elements minimum 48px
   ============================================ */
a, button {
    min-height: unset; /* Don't force height on all elements */
}

.nav-link,
.cat-tab,
.faq-question,
.btn-primary,
.btn-ghost,
.btn-secondary,
.btn-register,
.btn-login,
.mobile-toggle {
    min-height: 44px;
}

/* ============================================
   HOMEPAGE SPECIFIC
   ============================================ */
.floating-coin {
    position: absolute;
    font-size: 22px;
    animation: float-bob 3s ease-in-out infinite;
    pointer-events: none;
}

.floating-coin:nth-child(2) { animation-delay: 0.8s; }
.floating-coin:nth-child(3) { animation-delay: 1.6s; }
.floating-coin:nth-child(4) { animation-delay: 0.4s; }

.live-casino-teaser { width: 100%; }

.live-teaser-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--grid-gap);
}

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

.live-teaser-card {
    position: relative;
    border-radius: var(--border-radius-game);
    overflow: hidden;
    background: var(--teal-card);
}

.live-teaser-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 5/3;
}

.live-teaser-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(7, 20, 16, 0.9));
    padding: 16px 14px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Fix: darken live badge background to meet 4.5:1 contrast with white text */
.live-badge {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 4px;
    background: #b91c1c;
    color: #fff;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 3px 8px;
    border-radius: 4px;
}

.live-badge--gold {
    background: linear-gradient(135deg, #f0b429, #ffe033);
    color: var(--primary-foreground);
}

.live-teaser-title {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.live-teaser-provider {
    font-family: var(--font-body);
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}

/* VIP Section */
.vip-mascot-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.vip-mascot-img-wrap {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
}

.vip-mascot-img {
    width: 100%;
    height: auto;
    animation: float-bob 3s ease-in-out infinite;
    filter: drop-shadow(0 12px 24px rgba(255, 224, 51, 0.25));
}

/* Cashback two-column layout */
.cashback-section-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

@media (min-width: 768px) {
    .cashback-section-inner {
        flex-direction: row;
        justify-content: center;
    }
    .cashback-section-inner > * {
        flex: 1;
        max-width: 460px;
    }
}

.cashback-mascot {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cashback-mascot img {
    max-width: 300px;
    width: 100%;
    height: auto;
    animation: float-bob 3s ease-in-out infinite;
    filter: drop-shadow(0 12px 24px rgba(255, 224, 51, 0.2));
}

/* CTA mascot */
.cta-mascot {
    animation: float-bob 3s ease-in-out infinite;
    filter: drop-shadow(0 8px 16px rgba(255, 224, 51, 0.3));
    margin-bottom: 8px;
}

/* ============================================
   BONUSES PAGE SPECIFIC
   ============================================ */
.bonus-mascot-bar {
    background: linear-gradient(135deg, #0f2a22 0%, #132e26 100%);
    padding: 48px 0;
    overflow: clip;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.bonus-mascot-bar-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
}

@media (min-width: 768px) {
    .bonus-mascot-bar-inner {
        flex-direction: row;
        text-align: left;
        gap: 40px;
    }
}

.bonus-mascot-bar-img {
    max-width: 260px;
    width: 100%;
    height: auto;
    flex-shrink: 0;
    animation: float-bob 3s ease-in-out infinite;
    filter: drop-shadow(0 8px 20px rgba(255, 224, 51, 0.2));
}

.bonus-mascot-bar-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bonus-mascot-bar-text h3 {
    color: var(--lemon);
    font-size: clamp(20px, 3vw, 28px);
}

.bonus-mascot-bar-text p {
    color: var(--muted-foreground);
    font-size: 16px;
    max-width: 52ch;
}

/* Non-sticky explainer */
.nonsticky-explainer {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.nonsticky-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

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

.vs-card {
    padding: 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vs-card--good {
    background: rgba(61, 170, 71, 0.1);
    border: 1px solid rgba(61, 170, 71, 0.3);
}

.vs-card--bad {
    background: rgba(255, 94, 46, 0.08);
    border: 1px solid rgba(255, 94, 46, 0.25);
}

.vs-icon {
    font-size: 28px;
    line-height: 1;
}

.vs-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.vs-card li {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--muted-foreground);
}

/* ============================================
   LIVE CASINO PAGE SPECIFIC
   ============================================ */
.live-provider-badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

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

.live-provider-card {
    background: var(--teal-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.live-provider-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 224, 51, 0.15);
}

.live-provider-icon {
    font-size: 40px;
    line-height: 1;
}

.live-provider-card h3 {
    color: var(--lemon);
    font-size: clamp(18px, 2.5vw, 22px);
}

.live-provider-card p {
    color: var(--muted-foreground);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.live-provider-games {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.live-provider-games li {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--muted-foreground);
}

.provider-count-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    background: rgba(255, 224, 51, 0.15);
    border: 1px solid rgba(255, 224, 51, 0.3);
    border-radius: 20px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    color: var(--lemon);
    width: fit-content;
}

.live-cashback-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.live-cashback-info h3 {
    color: var(--lemon);
    font-size: clamp(18px, 2.5vw, 24px);
}

/* ============================================
   CLAIM PAGE SPECIFIC
   ============================================ */
body.claim-page > main {
    padding-top: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #071410 0%, #0a1f18 50%, #0d2920 100%);
}

.claim-page-wrap {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 20px;
    background: linear-gradient(135deg, #071410 0%, #0a1f18 50%, #0d2920 100%);
}

.claim-card {
    background: var(--teal-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px 32px;
    max-width: 460px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 224, 51, 0.1);
}

.claim-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    justify-content: center;
}

.claim-logo-text {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    color: var(--lemon);
}

.claim-mascot-wrap {
    width: 100%;
    max-width: 200px;
}

.claim-mascot-img {
    width: 100%;
    height: auto;
    animation: float-bob 3s ease-in-out infinite;
    filter: drop-shadow(0 8px 20px rgba(255, 224, 51, 0.3));
}

.claim-message {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.claim-title {
    font-family: var(--font-display);
    font-size: clamp(22px, 4vw, 30px);
    font-weight: 800;
    color: var(--foreground);
    margin: 0;
}

.claim-subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--muted-foreground);
    margin: 0;
}

/* Spinner */
.claim-spinner {
    position: relative;
    width: 52px;
    height: 52px;
}

.spinner-ring {
    width: 52px;
    height: 52px;
    border: 4px solid rgba(255, 224, 51, 0.2);
    border-top-color: var(--lemon);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Bonus reminder */
.claim-bonus-reminder {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: rgba(255, 224, 51, 0.06);
    border: 1px solid rgba(255, 224, 51, 0.15);
    border-radius: 12px;
    padding: 16px;
}

.claim-bonus-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--foreground);
}

.claim-bonus-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.claim-fallback-text {
    font-size: 13px;
    color: var(--muted-foreground);
    margin: 0;
}

.claim-cta {
    width: 100%;
}

.claim-disclaimer {
    font-size: 11px;
    color: var(--muted-foreground);
    margin: 0;
    line-height: 1.4;
}

/* Claim page: hide main header and footer */
body.claim-page .site-header,
body.claim-page .site-footer {
    display: none;
}