/* ============================================
   REALZ CASINO - Design System
   Egyptian Luxury Dark Aesthetic
   Mobile-first, glassmorphism, gold accents
   ============================================ */

/* ============================================
   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 {
    background-color: var(--background);
    color: var(--foreground);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
    opacity: 0.85;
}

ul, ol {
    list-style: none;
}

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

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

section {
    overflow: clip;
}

input, textarea, select {
    max-width: 100%;
    font-family: var(--font-body);
}

table {
    border-collapse: collapse;
    width: 100%;
}

/* ============================================
   LAYOUT - Container & Grid
   Max 1280px centered, 24px mobile gutters
   ============================================ */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

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

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

/* Section spacing */
.section {
    padding: var(--space-2xl) 0;
}

@media (min-width: 1024px) {
    .section {
        padding: var(--space-3xl) 0;
    }
}

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

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

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

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

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

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

@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(--space-sm);
}

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

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

/* ============================================
   TYPOGRAPHY - Display & Body
   Cinzel Decorative for headings
   Nunito Sans for body
   ============================================ */

/* Headings */
h1, .h1 {
    font-family: var(--font-display);
    font-size: clamp(28px, 6vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.04em;
    color: var(--foreground);
}

h2, .h2 {
    font-family: var(--font-display);
    font-size: clamp(22px, 4vw, 36px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.03em;
    color: var(--foreground);
}

h3, .h3 {
    font-family: var(--font-display);
    font-size: clamp(18px, 3vw, 26px);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0.02em;
    color: var(--foreground);
}

h4, .h4 {
    font-family: var(--font-display);
    font-size: clamp(16px, 2.5vw, 20px);
    font-weight: 600;
    color: var(--foreground);
}

/* Gold gradient text */
.gold-text {
    background: var(--gold-text-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--primary); /* fallback */
}

/* Section title with gold underline accent */
.section-title {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.section-title .gold-text {
    display: block;
}

.section-title__sub {
    font-family: var(--font-body);
    font-size: 17px;
    color: var(--muted-foreground);
    margin-top: var(--space-xs);
    text-align: center;
}

/* Large hero amounts */
.hero-amount {
    font-family: var(--font-display);
    font-size: clamp(42px, 10vw, 80px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.02em;
    background: var(--gold-text-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Bonus display amount (56px) */
.bonus-amount {
    font-family: var(--font-display);
    font-size: clamp(36px, 7vw, 56px);
    font-weight: 700;
    letter-spacing: 0.02em;
    background: var(--gold-text-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

/* ============================================
   GLASS CARDS - Glassmorphism Effect
   The signature "pyramid glass window" look
   ============================================ */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    position: relative;
    transition: transform 250ms ease-out, border-color 250ms ease-out, box-shadow 250ms ease-out;
    min-width: 0;
}

.glass-card:hover {
    transform: scale(1.02);
    border-color: rgba(245, 197, 24, 0.6);
    box-shadow: 0 0 24px rgba(245, 197, 24, 0.2);
}

/* Glassmorphism card padding variants */
.glass-card--padded {
    padding: var(--space-sm);
}

@media (min-width: 1024px) {
    .glass-card--padded {
        padding: var(--space-lg);
    }
}

/* ============================================
   HIEROGLYPH STRIPE - Animated Gold Ornament
   Thin animated stripe along card top/left edge
   ============================================ */
@keyframes hieroglyphScroll {
    0% { background-position: 0 0; }
    100% { background-position: 200px 0; }
}

.hieroglyph-stripe {
    height: 3px;
    background: repeating-linear-gradient(
        90deg,
        #f5c518 0px,
        #f5c518 4px,
        transparent 4px,
        transparent 8px,
        #d4a017 8px,
        #d4a017 10px,
        transparent 10px,
        transparent 14px,
        #f5c518 14px,
        #f5c518 16px,
        transparent 16px,
        transparent 24px,
        #ffd700 24px,
        #ffd700 26px,
        transparent 26px,
        transparent 32px
    );
    background-size: 200px 3px;
    animation: hieroglyphScroll 3s linear infinite;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* ============================================
   BUTTONS - CTA & Ghost
   ============================================ */

/* Gold CTA button */
.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 var(--space-lg);
    background: var(--gold-gradient);
    color: var(--primary-foreground);
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius-md);
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: transform 250ms ease-out, box-shadow 250ms ease-out, filter 250ms ease-out;
    position: relative;
    white-space: nowrap;
    min-width: 0;
}

.btn-gold:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 32px rgba(245, 197, 24, 0.5);
    filter: brightness(1.1);
    color: var(--primary-foreground);
    opacity: 1;
}

.btn-gold:active {
    transform: translateY(0) scale(0.98);
}

/* Gold pulse animation for CTA buttons */
@keyframes goldPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245, 197, 24, 0.7), 0 4px 16px rgba(245, 197, 24, 0.3); }
    50% { box-shadow: 0 0 0 12px rgba(245, 197, 24, 0), 0 4px 24px rgba(245, 197, 24, 0.5); }
}

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

.btn-gold--pulse:hover {
    animation: none;
    box-shadow: 0 8px 32px rgba(245, 197, 24, 0.5);
}

/* Ghost / outline button */
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 var(--space-md);
    background: transparent;
    color: var(--foreground);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    text-decoration: none;
    cursor: pointer;
    transition: border-color 250ms ease-out, background 250ms ease-out, color 250ms ease-out;
    white-space: nowrap;
}

.btn-ghost:hover {
    border-color: var(--primary);
    background: rgba(245, 197, 24, 0.1);
    color: var(--primary);
    opacity: 1;
}

/* Large CTA block button (full-width on mobile) */
.btn-gold--block {
    width: 100%;
    text-align: center;
}

@media (min-width: 768px) {
    .btn-gold--block {
        width: auto;
    }
}

/* ============================================
   HEADER - Fixed Sticky Navigation
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    z-index: 1000;
    background: rgba(10, 8, 6, 0.92);
    border-bottom: 1px solid var(--glass-border);
    transition: box-shadow 250ms ease-out, background 250ms ease-out;
    /* NOTE: backdrop-filter NOT applied here to prevent mobile nav drawer containment trap */
}

.site-header.is-scrolled {
    background: rgba(10, 8, 6, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: var(--space-sm);
}

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

.logo-icon {
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-display);
    font-size: clamp(14px, 3vw, 18px);
    font-weight: 700;
    letter-spacing: 0.04em;
    background: var(--gold-text-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--primary);
    white-space: nowrap;
}

/* Desktop Nav - hidden on mobile, visible on desktop */
.header-nav {
    display: none;
    flex: 1;
    justify-content: center;
}

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

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    list-style: none;
}

/* Hide mobile-only nav items on desktop */
.nav-item--mobile-only {
    display: none;
}

.nav-link {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--foreground);
    text-decoration: none;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    transition: color 250ms ease-out, background 250ms ease-out;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: rgba(245, 197, 24, 0.08);
    opacity: 1;
}

/* Header action buttons */
.header-actions {
    display: none;
    align-items: center;
    gap: var(--space-xs);
    flex-shrink: 0;
}

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

/* Mobile menu toggle (hamburger) */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    background: transparent;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    z-index: 1001;
    flex-shrink: 0;
    position: relative;
    transition: border-color 250ms ease-out;
}

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

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

/* X animation when expanded */
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background: var(--primary);
}

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

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

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

/* ============================================
   MOBILE NAVIGATION DRAWER
   Full-height fixed panel below header
   ============================================ */

/* Mobile nav overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    transition: opacity 300ms ease-out;
}

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

/* Mobile nav drawer (the main-nav element on mobile) */
@media (max-width: 1023px) {
    #main-nav {
        display: none;
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: #0f0a05;
        z-index: 999;
        overflow-y: auto;
        padding: var(--space-sm);
        flex-direction: column;
        border-top: 1px solid var(--glass-border);
    }

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

    #main-nav .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        width: 100%;
    }

    #main-nav .nav-item--mobile-only {
        display: block;
    }

    #main-nav .nav-link {
        display: flex;
        align-items: center;
        min-height: 56px;
        padding: var(--space-sm) var(--space-md);
        font-size: 16px;
        border-bottom: 1px solid rgba(245, 197, 24, 0.08);
        border-radius: var(--radius-sm);
        width: 100%;
    }

    #main-nav .nav-link:hover {
        background: rgba(245, 197, 24, 0.1);
    }

    /* Add CTA buttons inside mobile drawer */
    .mobile-nav-ctas {
        display: flex;
        flex-direction: column;
        gap: var(--space-xs);
        padding: var(--space-md) 0;
        margin-top: auto;
    }
}

@media (min-width: 1024px) {
    .mobile-nav-ctas {
        display: none;
    }
}

/* ============================================
   HERO SECTION
   Full-bleed dark background, particles canvas
   ============================================ */
.hero {
    position: relative;
    min-height: 100svh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    background: var(--background);
    overflow: hidden;
}

.hero__canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* When Three.js is active, canvas captures pointer events */
.hero__canvas--interactive {
    pointer-events: all;
}

.hero__content {
    position: relative;
    z-index: 1;
    width: 100%;
    opacity: 0;
    transition: opacity 600ms ease-out;
}

.hero__content.is-loaded {
    opacity: 1;
}

.hero__eyebrow {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted-foreground);
    margin-bottom: var(--space-sm);
}

.hero__title {
    margin-bottom: var(--space-sm);
}

.hero__subtitle {
    font-size: 18px;
    color: var(--muted-foreground);
    margin-bottom: var(--space-lg);
    max-width: 560px;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .hero__subtitle {
        font-size: 20px;
    }
}

.hero__ctas {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    align-items: stretch;
    margin-bottom: var(--space-lg);
}

@media (min-width: 480px) {
    .hero__ctas {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
    }
}

.hero__badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    align-items: center;
}

/* Hero background radial glow */
.hero::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(900px, 140vw);
    height: min(900px, 140vw);
    background: radial-gradient(circle at center, rgba(245, 197, 24, 0.08) 0%, transparent 65%);
    z-index: 0;
    pointer-events: none;
}

/* ============================================
   MASCOTS - Pharaoh & Bonus Crab
   Decorative illustrated characters
   ============================================ */
.mascot {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mascot__img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(245, 197, 24, 0.3));
}

/* Shimmer animation on mascot illustrations */
@keyframes mascotShimmer {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(245, 197, 24, 0.3)); }
    50% { filter: drop-shadow(0 0 36px rgba(245, 197, 24, 0.6)); }
}

.mascot__img--animated {
    animation: mascotShimmer 3s ease-in-out infinite;
}

/* Mascot speech bubble */
.mascot__bubble {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-sm) var(--space-md);
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--foreground);
    white-space: nowrap;
    z-index: 2;
}

/* ============================================
   BONUS CARDS - Component Styles
   Used by bonus_card macro
   ============================================ */
.bonus-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.bonus-card__ornament {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.bonus-card__inner {
    padding: var(--space-sm);
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: var(--space-sm);
    padding-top: calc(var(--space-sm) + 3px);
}

@media (min-width: 1024px) {
    .bonus-card__inner {
        padding: var(--space-lg);
        padding-top: calc(var(--space-lg) + 3px);
    }
}

.bonus-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary);
    color: var(--primary-foreground);
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 2;
}

.bonus-card__badge.badge--hot { background: #e63946; }
.bonus-card__badge.badge--new { background: #2a9d8f; }

.bonus-card__icon {
    font-size: 36px;
    line-height: 1;
}

.bonus-card__title {
    font-family: var(--font-display);
    font-size: clamp(18px, 3vw, 26px);
    font-weight: 600;
    color: var(--foreground);
    line-height: 1.2;
}

.bonus-card__amount {
    font-family: var(--font-display);
    font-size: clamp(36px, 7vw, 56px);
    font-weight: 700;
    letter-spacing: 0.02em;
    background: var(--gold-text-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.bonus-card__subtitle {
    font-size: 16px;
    color: var(--muted-foreground);
    line-height: 1.4;
}

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

.bonus-card__feature {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 16px;
    color: var(--foreground);
    line-height: 1.4;
}

.feature-check {
    color: var(--primary);
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

.bonus-card__cta {
    margin-top: auto;
    width: 100%;
    text-align: center;
}

.bonus-card__terms {
    font-size: 13px;
    color: var(--muted-foreground);
    text-align: center;
    line-height: 1.4;
}

/* ============================================
   GAME CARDS - Component Styles
   Used by game_card macro
   ============================================ */
.game-card {
    overflow: hidden;
    cursor: pointer;
}

.game-card:hover {
    transform: scale(1.04);
    border-color: rgba(245, 197, 24, 0.6);
    box-shadow: 0 0 24px rgba(245, 197, 24, 0.25);
}

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

.game-card__link:hover {
    opacity: 1;
}

.game-card__thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 3/2;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    background: var(--muted);
}

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

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

.game-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--card) 0%, var(--muted) 100%);
}

.game-card__placeholder-icon {
    font-size: 48px;
    opacity: 0.5;
}

.game-card__badge {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    z-index: 2;
}

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

.game-card__badge--new {
    background: #2a9d8f;
    color: #fff;
}

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

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

.game-card__provider {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(10, 8, 6, 0.85);
    color: var(--muted-foreground);
    font-size: 11px;
    font-family: var(--font-body);
    padding: 3px 7px;
    border-radius: 4px;
    z-index: 2;
    backdrop-filter: blur(4px);
}

.game-card__hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(245, 197, 24, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    opacity: 0;
    transition: opacity 250ms ease-out;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

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

.game-card__play-icon {
    font-size: 32px;
    color: var(--primary);
    text-shadow: 0 0 12px rgba(245, 197, 24, 0.8);
}

.game-card__play-text {
    font-family: var(--font-display);
    font-size: 13px;
    color: #fff;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.game-card__info {
    padding: 10px var(--space-sm);
    background: var(--glass-bg);
}

.game-card__title {
    font-family: var(--font-display);
    font-size: clamp(13px, 2vw, 18px);
    font-weight: 600;
    color: var(--foreground);
    line-height: 1.2;
    letter-spacing: 0.02em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

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

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

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

/* ============================================
   FAQ ACCORDION - Component Styles
   ============================================ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.faq-item {
    overflow: hidden;
}

.faq-item--open {
    border-color: rgba(245, 197, 24, 0.5);
    box-shadow: 0 0 16px rgba(245, 197, 24, 0.15);
}

.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--space-sm) var(--space-sm);
    gap: var(--space-sm);
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    min-height: 56px;
}

@media (min-width: 1024px) {
    .faq-item__question {
        padding: var(--space-md) var(--space-md);
    }
}

.faq-item__question-text {
    font-family: var(--font-display);
    font-size: clamp(16px, 2.5vw, 20px);
    color: var(--foreground);
    line-height: 1.3;
    flex: 1;
    min-width: 0;
}

.faq-item__chevron {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 250ms ease-out;
    color: var(--primary);
}

.faq-item--open .faq-item__chevron,
.faq-item__question[aria-expanded="true"] .faq-item__chevron {
    transform: rotate(180deg);
}

.faq-item__answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 350ms ease-out;
}

.faq-item__answer:not([hidden]) {
    max-height: 600px;
}

.faq-item__answer[hidden] {
    display: block !important;
    max-height: 0;
    visibility: hidden;
}

.faq-item__answer-inner {
    padding: 0 var(--space-sm) var(--space-sm);
    font-size: 16px;
    color: var(--foreground);
    line-height: 1.6;
}

@media (min-width: 1024px) {
    .faq-item__answer-inner {
        padding: 0 var(--space-md) var(--space-md);
    }
}

.faq-item__answer-inner p {
    margin-bottom: var(--space-xs);
}

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

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

/* ============================================
   STAT BLOCKS - Component Styles
   ============================================ */
.stats-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-sm);
    text-align: center;
}

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

.stat-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: var(--space-sm);
}

.stat-block__number {
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 56px);
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1;
    background: var(--gold-text-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-block__label {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--foreground);
    text-align: center;
    line-height: 1.3;
}

.stat-block__source {
    font-size: 13px;
    color: var(--muted-foreground);
    text-align: center;
}

/* ============================================
   BADGE ELEMENTS
   ============================================ */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid var(--glass-border);
    background: rgba(30, 18, 5, 0.6);
    color: var(--foreground);
    white-space: nowrap;
}

.badge--license {
    border-color: rgba(245, 197, 24, 0.4);
    color: var(--primary);
}

.badge--age {
    background: rgba(120, 20, 28, 0.9);
    border-color: rgba(230, 57, 70, 0.5);
    color: #ffb3b3;
}

.badge--ssl {
    border-color: rgba(42, 157, 143, 0.4);
    color: #2a9d8f;
}

/* Fix: increased contrast from #ff8a8a on dark bg to white on darker bg */
.badge--18plus {
    background: rgba(140, 20, 28, 0.95);
    border-color: rgba(230, 57, 70, 0.5);
    color: #ffffff;
}

.badge--rng {
    border-color: rgba(42, 157, 143, 0.4);
    color: #2a9d8f;
}

.badge--trust {
    border-color: rgba(245, 197, 24, 0.3);
    color: var(--muted-foreground);
}

/* Trust badge row */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    align-items: center;
}

/* ============================================
   PROVIDERS STRIP
   Logo pill row
   ============================================ */
.providers-strip {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    justify-content: center;
    align-items: center;
}

.provider-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--muted-foreground);
    letter-spacing: 0.04em;
    transition: border-color 250ms ease-out, color 250ms ease-out, box-shadow 250ms ease-out;
    white-space: nowrap;
    min-height: 40px;
}

.provider-pill:hover {
    border-color: rgba(245, 197, 24, 0.5);
    color: var(--primary);
    box-shadow: 0 0 12px rgba(245, 197, 24, 0.15);
}

/* ============================================
   VIP PYRAMID SECTION
   ============================================ */
.vip-pyramid {
    display: flex;
    flex-direction: column;
    gap: 2px;
    max-width: 600px;
    margin: 0 auto var(--space-lg);
}

.vip-tier {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    transition: transform 250ms ease-out, border-color 250ms ease-out;
    gap: var(--space-sm);
}

.vip-tier:hover {
    transform: translateX(4px);
    border-color: rgba(245, 197, 24, 0.4);
}

.vip-tier--bronze { border-left: 3px solid #cd7f32; }
.vip-tier--silver { border-left: 3px solid #c0c0c0; }
.vip-tier--gold { border-left: 3px solid #ffd700; }
.vip-tier--platinum { border-left: 3px solid #e5e4e2; }
.vip-tier--diamond { border-left: 3px solid #b9f2ff; }

.vip-tier__name {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--foreground);
}

.vip-tier__cashback {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--primary);
    font-weight: 700;
}

.vip-tier__limit {
    font-size: 14px;
    color: var(--muted-foreground);
}

/* ============================================
   CTA SECTION - Full-width conversion band
   ============================================ */
.cta-section {
    padding: var(--space-2xl) 0;
    background: linear-gradient(135deg, rgba(245, 197, 24, 0.06) 0%, rgba(212, 160, 23, 0.03) 100%);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    text-align: center;
}

.cta-section__title {
    margin-bottom: var(--space-sm);
}

.cta-section__sub {
    font-size: 17px;
    color: var(--muted-foreground);
    margin-bottom: var(--space-lg);
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section__actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    align-items: center;
}

.cta-section__note {
    font-size: 13px;
    color: var(--muted-foreground);
}

/* ============================================
   TABLES - Data tables with glass styling
   ============================================ */
.table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Keyboard focus style for scrollable table wrappers */
.table-wrapper:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 480px;
}

.data-table thead th {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary);
    padding: var(--space-sm) var(--space-md);
    border-bottom: 1px solid var(--glass-border);
    background: rgba(245, 197, 24, 0.05);
    text-align: left;
    white-space: nowrap;
}

.data-table tbody td {
    padding: 12px var(--space-md);
    font-size: 15px;
    color: var(--foreground);
    border-bottom: 1px solid rgba(107, 78, 35, 0.2);
    vertical-align: middle;
}

.data-table tbody tr:last-child td {
    border-bottom: none;
}

.data-table tbody tr:nth-child(even) td {
    background: rgba(26, 18, 8, 0.4);
}

.data-table tbody tr:hover td {
    background: rgba(245, 197, 24, 0.05);
}

/* Payment icon in table */
.payment-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ============================================
   CALLOUT / HIGHLIGHT BOX
   Attention-grabbing inline block
   ============================================ */
.callout {
    border-left: 3px solid var(--primary);
    background: rgba(245, 197, 24, 0.06);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: var(--space-sm) var(--space-md);
    margin: var(--space-md) 0;
}

.callout--warning {
    border-left-color: #e8a020;
    background: rgba(232, 160, 32, 0.06);
}

.callout--info {
    border-left-color: #2a9d8f;
    background: rgba(42, 157, 143, 0.06);
}

.callout__title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.callout--warning .callout__title { color: #e8a020; }
.callout--info .callout__title { color: #2a9d8f; }

.callout a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ============================================
   SUMMARY / TL;DR BOX
   ============================================ */
.tldr-box {
    background: rgba(245, 197, 24, 0.04);
    border: 1px solid rgba(245, 197, 24, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-lg) 0;
}

.tldr-box__label {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: var(--space-xs);
}

/* Pros/Cons two-column layout */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-sm);
}

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

.pros-list, .cons-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pros-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 15px;
    color: var(--foreground);
    line-height: 1.4;
}

.cons-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 15px;
    color: var(--foreground);
    line-height: 1.4;
}

.pros-list li::before {
    content: '✓';
    color: #2a9d8f;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.cons-list li::before {
    content: '⚠';
    color: #e8a020;
    flex-shrink: 0;
    margin-top: 1px;
}

.pros-cons__heading {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.pros-cons__heading--pro { color: #2a9d8f; }
.pros-cons__heading--con { color: #e8a020; }

/* ============================================
   PULL QUOTE
   ============================================ */
blockquote.pull-quote {
    border-left: 3px solid var(--primary);
    padding: var(--space-sm) var(--space-md);
    margin: var(--space-md) 0;
    background: rgba(245, 197, 24, 0.04);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

blockquote.pull-quote p {
    font-size: 18px;
    color: var(--foreground);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 8px;
}

blockquote.pull-quote cite {
    font-size: 14px;
    color: var(--muted-foreground);
    font-style: normal;
}

/* ============================================
   TESTIMONIAL CARDS
   ============================================ */
.testimonial-card {
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    border-left: 3px solid var(--glass-border);
}

.testimonial-card__stars {
    color: var(--primary);
    font-size: 18px;
    letter-spacing: 2px;
}

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

.testimonial-card__author {
    font-size: 14px;
    color: var(--muted-foreground);
}

/* ============================================
   STEPPER - Registration steps
   ============================================ */
.stepper {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    position: relative;
}

@media (min-width: 768px) {
    .stepper {
        flex-direction: row;
        align-items: flex-start;
    }
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-sm);
    flex: 1;
    min-width: 0;
}

.step__number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: var(--primary-foreground);
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(245, 197, 24, 0.3);
}

.step__title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--foreground);
}

.step__desc {
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.4;
}

/* Connector line between steps (desktop) */
@media (min-width: 768px) {
    .stepper::before {
        content: '';
        position: absolute;
        top: 28px;
        left: calc(16.66% + 28px);
        right: calc(16.66% + 28px);
        height: 1px;
        background: linear-gradient(90deg, var(--primary), transparent, var(--primary));
        opacity: 0.3;
        pointer-events: none;
    }
}

/* ============================================
   SECTION TITLE & DECORATIVE PYRAMID WATERMARK
   ============================================ */
.pyramid-watermark {
    position: relative;
}

.pyramid-watermark::after {
    content: '▲';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(200px, 30vw, 400px);
    color: rgba(245, 197, 24, 0.025);
    pointer-events: none;
    z-index: 0;
    line-height: 1;
    user-select: none;
}

.pyramid-watermark > * {
    position: relative;
    z-index: 1;
}

/* ============================================
   SEO TEXT BLOCK
   Long-form content section
   ============================================ */
.seo-text {
    font-size: 17px;
    color: var(--foreground);
    line-height: 1.7;
}

.seo-text h3 {
    margin-top: var(--space-md);
    margin-bottom: var(--space-xs);
    color: var(--primary);
}

.seo-text p {
    margin-bottom: var(--space-sm);
}

.seo-text a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.seo-text ul, .seo-text ol {
    list-style: disc;
    padding-left: var(--space-md);
    margin-bottom: var(--space-sm);
}

.seo-text ul li, .seo-text ol li {
    margin-bottom: 4px;
}

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

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

/* ============================================
   TAB NAVIGATION
   Category filter tabs for game grids
   ============================================ */
.tab-bar {
    display: flex;
    gap: var(--space-xs);
    flex-wrap: wrap;
    margin-bottom: var(--space-md);
}

.tab-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 8px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 22px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted-foreground);
    cursor: pointer;
    transition: background 250ms ease-out, border-color 250ms ease-out, color 250ms ease-out;
    white-space: nowrap;
}

.tab-btn:hover {
    border-color: rgba(245, 197, 24, 0.5);
    color: var(--foreground);
}

.tab-btn.is-active,
.tab-btn[aria-selected="true"] {
    background: var(--gold-gradient);
    border-color: var(--primary);
    color: var(--primary-foreground);
}

.tab-panel {
    display: none;
}

.tab-panel.is-active {
    display: block;
}

/* ============================================
   RATING DISPLAY
   Star ratings for review pages
   ============================================ */
.rating-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
}

.rating-score {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 700;
    background: var(--gold-text-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.rating-stars {
    display: flex;
    gap: 4px;
    font-size: 28px;
    color: var(--primary);
    letter-spacing: 2px;
}

.rating-max {
    font-size: 14px;
    color: var(--muted-foreground);
}

/* ============================================
   COMPARISON TABLE - Highlighted column
   ============================================ */
.comparison-table .highlighted-col {
    background: rgba(245, 197, 24, 0.06) !important;
    border-left: 2px solid rgba(245, 197, 24, 0.4);
    border-right: 2px solid rgba(245, 197, 24, 0.4);
}

.comparison-table thead .highlighted-col {
    border-top: 2px solid rgba(245, 197, 24, 0.4);
}

/* ============================================
   TOURNAMENT BANNER
   Full-width prize showcase
   ============================================ */
.tournament-banner {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: linear-gradient(135deg, rgba(30, 18, 5, 0.9) 0%, rgba(10, 8, 6, 0.95) 100%);
    border: 1px solid rgba(245, 197, 24, 0.3);
    padding: var(--space-lg) var(--space-md);
    text-align: center;
}

@media (min-width: 768px) {
    .tournament-banner {
        padding: var(--space-2xl) var(--space-xl);
    }
}

.tournament-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(245, 197, 24, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* ============================================
   FOOTER
   Three-column responsive layout
   ============================================ */
.site-footer {
    background: var(--card);
    border-top: 1px solid var(--glass-border);
    padding: var(--space-2xl) 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

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

.footer-col--brand .footer-logo {
    margin-bottom: var(--space-sm);
}

.footer-tagline {
    font-size: 15px;
    color: var(--muted-foreground);
    line-height: 1.5;
    margin-bottom: var(--space-sm);
    max-width: 320px;
}

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

.footer-heading {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

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

.footer-link {
    font-size: 15px;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 250ms ease-out;
    display: inline-flex;
    align-items: center;
    min-height: 36px;
}

.footer-link:hover {
    color: var(--primary);
    opacity: 1;
}

.footer-link-inline {
    color: var(--muted-foreground);
    text-decoration: underline;
    font-size: 14px;
}

.footer-link-inline:hover {
    color: var(--primary);
    opacity: 1;
}

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

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

/* Payment logos row */
.footer-payments {
    border-top: 1px solid rgba(107, 78, 35, 0.3);
    padding: var(--space-md) 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

@media (min-width: 768px) {
    .footer-payments {
        flex-direction: row;
        justify-content: center;
    }
}

.footer-payments__label {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted-foreground);
    white-space: nowrap;
}

.footer-payments__logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.payment-badge {
    display: inline-flex;
    border-radius: 4px;
    overflow: hidden;
    opacity: 0.85;
    transition: opacity 250ms ease-out;
}

.payment-badge:hover {
    opacity: 1;
}

/* Footer bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(107, 78, 35, 0.3);
    padding: var(--space-md) 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

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

/* Fix: was rgba(107,78,35,0.8) = #5b421e on #1a1208 = 1.97:1. Changed to var(--muted-foreground) = #c8a96e which achieves ~5.6:1 */
.footer-legal {
    font-size: 12px;
    color: var(--muted-foreground);
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
}

/* ============================================
   SCROLL ANIMATION CLASSES
   Used by IntersectionObserver in script.js
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms ease-out, transform 700ms ease-out;
}

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

/* Tomb-wall reveal variants */
.animate-from-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 700ms ease-out, transform 700ms ease-out;
}

.animate-from-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 700ms ease-out, transform 700ms ease-out;
}

.animate-from-left.is-visible,
.animate-from-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered children animation */
.animate-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 600ms ease-out, transform 600ms ease-out;
}

.animate-stagger.is-visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0ms; }
.animate-stagger.is-visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 80ms; }
.animate-stagger.is-visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 160ms; }
.animate-stagger.is-visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 240ms; }
.animate-stagger.is-visible > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 320ms; }
.animate-stagger.is-visible > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 400ms; }
.animate-stagger.is-visible > *:nth-child(n+7) { opacity: 1; transform: translateY(0); transition-delay: 480ms; }

/* ============================================
   THEME TOGGLE BUTTON
   ============================================ */
.btn-theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--glass-border);
    background: transparent;
    cursor: pointer;
    transition: border-color 250ms ease-out, background 250ms ease-out;
    position: relative;
    flex-shrink: 0;
    font-size: 18px;
}

.btn-theme-toggle:hover {
    border-color: var(--primary);
    background: rgba(245, 197, 24, 0.1);
}

.theme-toggle__icon {
    position: absolute;
    transition: opacity 200ms ease-out, transform 200ms ease-out;
    line-height: 1;
}

/* Dark theme (default): show moon, hide sun */
html.dark .theme-toggle__icon--dark { opacity: 1; transform: scale(1); }
html.dark .theme-toggle__icon--light { opacity: 0; transform: scale(0.5); }

/* Light theme: show sun, hide moon */
html.light .theme-toggle__icon--dark { opacity: 0; transform: scale(0.5); }
html.light .theme-toggle__icon--light { opacity: 1; transform: scale(1); }

/* Light theme CSS variable overrides */
html.light {
    --background: #f5f0e8;
    --foreground: #1a1208;
    --card: #fffdf5;
    --card-foreground: #1a1208;
    --popover: #fff8e8;
    --popover-foreground: #1a1208;
    --secondary: #e8dfc8;
    --secondary-foreground: #1a1208;
    --muted: #d4c9a8;
    --muted-foreground: #6b5030;
    --border: #c8a96e;
    --input: #fffdf5;
    --glass-bg: rgba(255, 248, 230, 0.75);
    --glass-border: rgba(180, 130, 30, 0.35);
}

html.light body {
    background-color: var(--background);
    color: var(--foreground);
}

html.light .site-header {
    background: rgba(245, 240, 232, 0.95);
    border-bottom-color: rgba(180, 130, 30, 0.25);
}

html.light #main-nav {
    background: #f0e8d5;
}

html.light .site-footer {
    background: var(--card);
}

/* ============================================
   PARTICLE CANVAS OVERLAY STYLING
   CSS-only floating particles for claim.html
   ============================================ */
@keyframes floatUp {
    0% { transform: translateY(0) rotate(0deg); opacity: 0; }
    10% { opacity: 0.8; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}

.particle-field {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: floatUp linear infinite;
    opacity: 0;
}

.particle:nth-child(1) { left: 10%; animation-duration: 8s; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-duration: 11s; animation-delay: 1s; width: 4px; height: 4px; }
.particle:nth-child(3) { left: 35%; animation-duration: 9s; animation-delay: 2s; }
.particle:nth-child(4) { left: 50%; animation-duration: 12s; animation-delay: 0.5s; width: 8px; height: 8px; }
.particle:nth-child(5) { left: 65%; animation-duration: 10s; animation-delay: 3s; width: 4px; height: 4px; }
.particle:nth-child(6) { left: 75%; animation-duration: 7s; animation-delay: 1.5s; }
.particle:nth-child(7) { left: 85%; animation-duration: 13s; animation-delay: 0.8s; width: 5px; height: 5px; }
.particle:nth-child(8) { left: 92%; animation-duration: 9s; animation-delay: 4s; }
.particle:nth-child(9) { left: 5%; animation-duration: 11s; animation-delay: 2.5s; width: 3px; height: 3px; }
.particle:nth-child(10) { left: 45%; animation-duration: 8s; animation-delay: 3.5s; }

/* Diamond shape particles */
.particle--diamond {
    border-radius: 2px;
    transform: rotate(45deg);
    background: linear-gradient(135deg, #ffd700, #f5c518);
}

/* ============================================
   LOADING / SPINNER
   For claim.html redirect page
   ============================================ */
@keyframes spinPyramid {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

.pyramid-spinner {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.pyramid-spinner__ring {
    position: absolute;
    inset: 0;
    border: 3px solid transparent;
    border-top-color: var(--primary);
    border-right-color: rgba(245, 197, 24, 0.4);
    border-radius: 50%;
    animation: spinPyramid 1.5s linear infinite;
}

.pyramid-spinner__ring:nth-child(2) {
    inset: 10px;
    border-top-color: rgba(245, 197, 24, 0.7);
    border-left-color: rgba(245, 197, 24, 0.3);
    animation-duration: 2s;
    animation-direction: reverse;
}

.pyramid-spinner__icon {
    font-size: 28px;
    z-index: 1;
    animation: mascotShimmer 2s ease-in-out infinite;
}

/* ============================================
   DETAILS/SUMMARY - Expandable content
   ============================================ */
details.expandable {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

details.expandable summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-sm) var(--space-md);
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--foreground);
    list-style: none;
    min-height: 52px;
    user-select: none;
}

details.expandable summary::-webkit-details-marker {
    display: none;
}

details.expandable summary::after {
    content: '▾';
    color: var(--primary);
    font-size: 18px;
    transition: transform 250ms ease-out;
    flex-shrink: 0;
}

details[open].expandable summary::after {
    transform: rotate(180deg);
}

details.expandable .expandable__body {
    padding: 0 var(--space-md) var(--space-sm);
    font-size: 15px;
    color: var(--foreground);
    line-height: 1.6;
}

/* ============================================
   HERO VARIANTS
   Homepage, sub-pages
   ============================================ */
.hero--sub {
    min-height: 60vh;
    padding-top: var(--header-height);
}

@media (min-width: 768px) {
    .hero--sub {
        min-height: 70vh;
    }
}

.hero__bg-pyramid {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 50%, rgba(245, 197, 24, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse at 30% 80%, rgba(212, 160, 23, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Hero layout: content + mascot side by side */
.hero__layout {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    padding: var(--space-lg) 0;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .hero__layout {
        flex-direction: row;
        align-items: center;
        gap: var(--space-2xl);
        padding: var(--space-2xl) 0;
    }

    .hero__layout .hero__content {
        flex: 1;
        max-width: 580px;
    }

    .hero__mascots,
    .hero__mascot-bonus,
    .hero__mascot-games,
    .hero__mascot-review {
        flex-shrink: 0;
        max-width: 360px;
    }
}

@media (min-width: 1024px) {
    .hero__mascots,
    .hero__mascot-bonus,
    .hero__mascot-games,
    .hero__mascot-review {
        max-width: 440px;
    }
}

/* Hero home: mascots container with overlap */
.hero__mascots {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    min-height: 400px;
    flex-shrink: 0;
}

.hero-pharaoh {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.hero-pharaoh__img {
    width: clamp(200px, 35vw, 320px);
    height: auto;
}

.hero-crab {
    position: absolute;
    left: 0;
    bottom: 20%;
    z-index: 3;
}

.hero-crab__img {
    width: clamp(100px, 18vw, 160px);
    height: auto;
}

.hero-crab__bubble {
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
    white-space: nowrap;
}

@media (max-width: 767px) {
    .hero__mascots {
        min-height: 200px;
        align-self: center;
    }

    .hero-pharaoh__img { width: 160px; }
    .hero-crab__img { width: 80px; }
    .hero-crab__bubble { display: none; }
}

/* Bonus badges row in hero */
.hero__bonus-badges {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-md);
}

.hero-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 10px 18px;
    min-width: 72px;
}

.hero-badge__value {
    font-family: var(--font-display);
    font-size: clamp(20px, 4vw, 28px);
    font-weight: 700;
    background: var(--gold-text-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.hero-badge__label {
    font-size: 12px;
    color: var(--muted-foreground);
    text-align: center;
    margin-top: 2px;
}

.hero-badge--crab {
    border-color: rgba(245, 197, 24, 0.4);
}

/* Large gold button variant */
.btn-gold--lg {
    min-height: 60px;
    padding: 0 var(--space-xl);
    font-size: 16px;
}

/* Scroll hint arrow */
.hero__scroll-hint {
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary);
    opacity: 0.5;
    font-size: 20px;
    animation: scrollBounce 2s ease-in-out infinite;
    z-index: 1;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* text-gold utility */
.text-gold {
    color: var(--primary);
    background: var(--gold-text-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* text-center + margin helpers */
.text-center { text-align: center; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }

/* ============================================
   MASCOT SHOWCASE SECTION
   ============================================ */
.mascot-showcase__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    align-items: center;
}

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

.mascot-showcase__pharaoh,
.mascot-showcase__crab {
    display: flex;
    justify-content: center;
}

.mascot-showcase__text {
    text-align: center;
}

@media (min-width: 768px) {
    .mascot-showcase__text {
        text-align: left;
    }
}

.mascot-showcase__text h2 {
    margin-bottom: var(--space-sm);
}

.mascot-showcase__text p {
    color: var(--muted-foreground);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.mascot-showcase__features {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.mascot-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.mascot-feature__icon {
    font-size: 28px;
    flex-shrink: 0;
    line-height: 1.2;
}

.mascot-feature strong {
    display: block;
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 2px;
}

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

/* ============================================
   HUB LINK CARDS (Homepage navigation)
   ============================================ */
.hub-link-card {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    color: inherit;
    padding: var(--space-md);
    transition: transform 250ms ease-out, border-color 250ms ease-out;
}

.hub-link-card:hover {
    transform: translateX(4px);
    border-color: rgba(245, 197, 24, 0.5);
    opacity: 1;
}

.hub-link-card--cta {
    border-color: rgba(245, 197, 24, 0.3);
}

.hub-link-card__icon {
    font-size: 32px;
    flex-shrink: 0;
}

.hub-link-card__title {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--foreground);
    margin-bottom: 4px;
}

.hub-link-card__desc {
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.4;
    margin: 0;
}

.hub-link-card__arrow {
    margin-left: auto;
    font-size: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

/* ============================================
   TOURNAMENT BANNER INNER CONTENT
   ============================================ */
.tournament-banner__content {
    position: relative;
    z-index: 1;
}

.tournament-banner__title {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 36px);
    margin-bottom: var(--space-sm);
    line-height: 1.2;
}

.tournament-banner__desc {
    font-size: 16px;
    color: var(--muted-foreground);
    max-width: 560px;
    margin: 0 auto var(--space-md);
    line-height: 1.6;
}

.tournament-banner__img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
}

.tournament-stats {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-lg);
}

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

.tournament-stat__value {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    background: var(--gold-text-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.tournament-stat__label {
    font-size: 14px;
    color: var(--muted-foreground);
}

/* CTA mascot image */
.cta-mascot-img {
    max-width: 360px;
    width: 100%;
    margin: 0 auto var(--space-md);
    display: block;
}

/* ============================================
   BONUSES PAGE - Welcome Bonus Layout
   ============================================ */
.welcome-bonus-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    align-items: start;
}

@media (min-width: 1024px) {
    .welcome-bonus-layout {
        grid-template-columns: 1fr 1.5fr;
    }
}

.welcome-bonus__visual {
    padding: var(--space-lg);
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.welcome-bonus__amounts {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.welcome-bonus__amount-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.welcome-bonus__label {
    font-size: 13px;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

.welcome-bonus__divider {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--primary);
    font-weight: 700;
    align-self: center;
}

.welcome-bonus__details h3 {
    margin-bottom: var(--space-sm);
}

/* Coin shop layout */
.coin-shop-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    align-items: center;
}

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

.coin-shop__mascot {
    display: flex;
    justify-content: center;
}

.coin-shop__content h2 {
    margin-bottom: var(--space-sm);
}

.coin-shop__content > p {
    color: var(--muted-foreground);
    margin-bottom: var(--space-md);
}

/* ============================================
   GAMES PAGE - Jackpot Pool Bar
   ============================================ */
.jackpot-pool {
    text-align: center;
    padding: var(--space-md);
}

.jackpot-pool__label {
    font-size: 14px;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-xs);
}

.jackpot-pool-bar {
    height: 6px;
    background: rgba(107, 78, 35, 0.3);
    border-radius: 3px;
    margin: var(--space-sm) auto;
    max-width: 400px;
    overflow: hidden;
}

.jackpot-pool-bar__fill {
    height: 100%;
    background: var(--gold-gradient);
    border-radius: 3px;
    transition: width 1.5s ease-out;
}

.jackpot-pool__note {
    font-size: 13px;
    color: var(--muted-foreground);
    margin-top: var(--space-xs);
}

/* ============================================
   GAMES PAGE - Sportsbook Banner
   ============================================ */
.sportsbook-banner__content h2 {
    margin-bottom: var(--space-sm);
}

.sportsbook-banner__content p {
    color: var(--muted-foreground);
    margin-bottom: var(--space-md);
    max-width: 640px;
}

.sports-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
}

/* Provider featured pill */
.provider-pill--featured {
    border-color: rgba(245, 197, 24, 0.4);
    color: var(--primary);
    font-weight: 700;
}

.providers-mosaic {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    justify-content: center;
}

/* Demo note */
.demo-note__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    align-items: center;
}

@media (min-width: 768px) {
    .demo-note__grid {
        grid-template-columns: 2fr 1fr;
    }
}

.demo-note h3 {
    margin-bottom: var(--space-xs);
}

.demo-note p {
    color: var(--muted-foreground);
}

.demo-note__mascot {
    display: flex;
    justify-content: center;
}

/* ============================================
   ERFAHRUNGEN PAGE
   ============================================ */
.review-hero__rating {
    margin: var(--space-md) 0;
    align-items: flex-start;
}

.trust-overview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
}

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

.trust-badge-big {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
}

.trust-badge-big__icon {
    font-size: 32px;
}

.trust-badge-big__label {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--foreground);
    font-weight: 600;
}

.trust-badge-big__status {
    font-size: 13px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 12px;
}

.trust-badge-big__status--ok {
    background: rgba(42, 157, 143, 0.15);
    color: #2a9d8f;
    border: 1px solid rgba(42, 157, 143, 0.3);
}

.schnellanmeldung-highlight {
    margin-top: var(--space-lg);
}

.schnellanmeldung__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    align-items: center;
}

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

.schnellanmeldung__text h3 {
    margin-bottom: var(--space-sm);
}

.schnellanmeldung__text p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Support cards */
.support-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-sm);
}

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

.support-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-xs);
}

.support-card__icon {
    font-size: 36px;
}

.support-card__title {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--foreground);
}

.support-card__desc {
    font-size: 15px;
    color: var(--muted-foreground);
    line-height: 1.5;
}

.support-card__rating {
    color: var(--primary);
    font-size: 16px;
    margin-top: 4px;
}

/* Mobile review layout */
.mobile-review-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    align-items: center;
}

@media (min-width: 768px) {
    .mobile-review-layout {
        grid-template-columns: 1.5fr 1fr;
    }
}

.mobile-review__img {
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    display: block;
}

/* Responsible gambling note and link */
.responsible-gambling-note {
    font-size: 14px;
    color: var(--foreground);
}

.responsible-gambling-link {
    color: var(--foreground);
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 600;
}

.responsible-gambling-link:hover {
    color: var(--primary);
    opacity: 1;
}

/* ============================================
   CLAIM PAGE
   ============================================ */
.claim-page {
    position: fixed;
    inset: 0;
    background: var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    overflow: hidden;
}

.claim-page__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: var(--space-lg);
    max-width: 480px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    animation: fadeInUp 0.6s ease-out;
}

.claim-page__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: var(--space-xs);
}

.claim-page__brand {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    background: var(--gold-text-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.claim-page__mascot img {
    max-width: 240px;
    margin: 0 auto;
}

.claim-page__title {
    font-family: var(--font-display);
    font-size: clamp(22px, 5vw, 32px);
    line-height: 1.2;
    margin: 0;
}

.claim-page__subtitle {
    font-size: 16px;
    color: var(--muted-foreground);
    line-height: 1.5;
    max-width: 360px;
    margin: 0;
}

.claim-page__fallback {
    font-size: 14px;
    color: var(--muted-foreground);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
}

.claim-page__fallback-btn {
    min-height: 48px;
    padding: 0 var(--space-lg);
}

.claim-page__bonus-reminder {
    width: 100%;
    max-width: 380px;
    padding: 0;
    overflow: hidden;
}

.claim-page__bonus-inner {
    padding: var(--space-sm) var(--space-md);
    padding-top: calc(var(--space-sm) + 3px);
}

.claim-page__bonus-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted-foreground);
    display: block;
    margin-bottom: 6px;
}

.claim-page__bonus-amounts {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.claim-page__bonus-amount {
    font-family: var(--font-display);
    font-size: clamp(22px, 5vw, 32px);
    font-weight: 700;
    background: var(--gold-text-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.claim-page__bonus-sep {
    color: var(--primary);
    font-size: 20px;
    font-weight: 700;
}

.claim-page__legal {
    font-size: 11px;
    color: var(--muted-foreground);
    text-align: center;
    line-height: 1.4;
    max-width: 340px;
    margin: 0;
    opacity: 0.7;
}

/* ============================================
   JACKPOT COUNTER DISPLAY
   Progressive jackpot animation
   ============================================ */
.jackpot-counter {
    font-family: var(--font-display);
    font-size: clamp(32px, 6vw, 64px);
    font-weight: 700;
    background: var(--gold-text-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    letter-spacing: 0.04em;
    text-align: center;
}

/* Pool bar */
.jackpot-pool-bar {
    height: 8px;
    background: rgba(107, 78, 35, 0.3);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 8px;
}

.jackpot-pool-bar__fill {
    height: 100%;
    background: var(--gold-gradient);
    border-radius: 4px;
    transition: width 1.5s ease-out;
}

/* ============================================
   CRASH GAME VISUAL
   Trajectory line decoration
   ============================================ */
.crash-trajectory {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.crash-trajectory::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), rgba(245, 197, 24, 0.3));
    transform-origin: bottom left;
    transform: rotate(-20deg) scaleX(1.5);
}

/* ============================================
   MOBILE PHONE MOCKUP
   CSS-drawn phone frame for review pages
   ============================================ */
.phone-mockup {
    width: 200px;
    height: 360px;
    border: 3px solid rgba(245, 197, 24, 0.4);
    border-radius: 28px;
    background: rgba(10, 8, 6, 0.8);
    position: relative;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 32px rgba(245, 197, 24, 0.1);
    overflow: hidden;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: rgba(245, 197, 24, 0.3);
    border-radius: 3px;
}

.phone-mockup__screen {
    width: calc(100% - 16px);
    height: calc(100% - 40px);
    background: linear-gradient(180deg, var(--card) 0%, var(--background) 100%);
    border-radius: 20px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-gold { color: var(--primary); }
.text-muted { color: var(--muted-foreground); }
.text-small { font-size: 14px; }
.text-italic { font-style: italic; }

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

.w-full { width: 100%; }
.min-w-0 { min-width: 0; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.flex-wrap { flex-wrap: wrap; }

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

/* Main content top padding to account for fixed header */
#main-content {
    padding-top: 0;
}

/* First section after header */
.page-top {
    padding-top: calc(var(--header-height) + var(--space-lg));
}

/* Gold separator line */
.gold-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    margin: var(--space-md) 0;
    opacity: 0.4;
}

/* Coin shop flow badges */
.flow-steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    align-items: flex-start;
}

@media (min-width: 768px) {
    .flow-steps {
        flex-direction: row;
        align-items: center;
    }
}

.flow-step-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px var(--space-md);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--foreground);
    min-height: 48px;
}

.flow-step-badge__num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: var(--primary-foreground);
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.flow-arrow {
    color: var(--primary);
    font-size: 20px;
    padding: 0 4px;
}

@media (max-width: 767px) {
    .flow-arrow {
        transform: rotate(90deg);
    }
}

/* Responsive visibility helpers */
.hide-mobile {
    display: none;
}

@media (min-width: 768px) {
    .hide-mobile {
        display: initial;
    }
}

.hide-desktop {
    display: initial;
}

@media (min-width: 1024px) {
    .hide-desktop {
        display: none;
    }
}

/* Focus styles for accessibility */
:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Skip link for keyboard users */
.skip-link {
    position: absolute;
    top: -100px;
    left: var(--space-sm);
    z-index: 9999;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-weight: 700;
    text-decoration: none;
    transition: top 200ms ease-out;
}

.skip-link:focus {
    top: var(--space-sm);
}