/* ============================================
   BILLIONAIRESPIN CASINO - DESIGN SYSTEM
   Spy-Luxury Thriller Aesthetic
   Dark-only, Mobile-First
   ============================================ */

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

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

body {
    background-color: var(--background);
    color: var(--foreground);
    font-family: 'Rajdhani', sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

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

ul {
    list-style: none;
}

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

section {
    overflow: clip;
}

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

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

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

/* ============================================
   TYPOGRAPHY SYSTEM
   Bebas Neue: headings (classified document drama)
   Rajdhani: body (intelligence briefing quality)
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.05em;
    line-height: 1.1;
    color: var(--foreground);
}

/* H1: 36px mobile → 64px desktop */
h1 {
    font-size: clamp(2.25rem, 5vw + 1rem, 4rem);
    font-weight: 400;
}

/* H2: 28px mobile → 48px desktop */
h2 {
    font-size: clamp(1.75rem, 3vw + 1rem, 3rem);
    font-weight: 400;
}

/* H3: 22px mobile → 32px desktop */
h3 {
    font-size: clamp(1.375rem, 2vw + 0.75rem, 2rem);
    font-weight: 400;
}

/* H4 */
h4 {
    font-size: clamp(1.125rem, 1.5vw + 0.5rem, 1.5rem);
    font-weight: 400;
}

p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--foreground);
    max-width: 70ch;
}

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

.text-gold {
    color: var(--gold);
}

.text-emerald {
    color: var(--primary);
}

/* Links inside paragraph text get underline to distinguish from surrounding text */
p .text-emerald,
.section-desc .text-emerald,
.seo-content .text-emerald {
    text-decoration: underline;
    text-decoration-color: rgba(0, 230, 118, 0.5);
    text-underline-offset: 2px;
}

p .text-emerald:hover,
.section-desc .text-emerald:hover,
.seo-content .text-emerald:hover {
    text-decoration-color: var(--primary);
}

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

.text-center p {
    margin-left: auto;
    margin-right: auto;
}

/* Oversized stat/bonus numbers - 80px desktop / 48px mobile */
.display-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 6vw + 1rem, 5rem);
    color: var(--gold);
    line-height: 1;
    letter-spacing: 0.02em;
}

/* ============================================
   LAYOUT UTILITIES
   Container, grid system, spacing
   ============================================ */

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

@media (min-width: 768px) {
    .container {
        padding-left: 32px;
        padding-right: 32px;
    }
}

@media (min-width: 1280px) {
    .container {
        padding-left: 40px;
        padding-right: 40px;
    }
}

/* Section spacing: 64px mobile → 120px desktop */
.section {
    padding-top: clamp(4rem, 8vw, 7.5rem);
    padding-bottom: clamp(4rem, 8vw, 7.5rem);
}

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

.section--charcoal {
    background-color: #111118;
}

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

/* Grid utilities */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

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

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

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

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

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

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

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

.flex-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

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

.gap-sm { gap: 8px; }
.gap-md { gap: 16px; }
.gap-lg { gap: 24px; }

/* ============================================
   LASER SCAN LINE ANIMATION
   Signature visual element - sweeps every 4s
   ============================================ */

@keyframes laserSweep {
    0% { transform: translateX(-100%); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateX(100vw); opacity: 0; }
}

@keyframes laserSweepCard {
    0% { transform: translateY(-100%); opacity: 0; }
    10% { opacity: 0.7; }
    90% { opacity: 0.7; }
    100% { transform: translateY(100%); opacity: 0; }
}

@keyframes laserGlow {
    0%, 100% { box-shadow: 0 0 6px rgba(0, 230, 118, 0.3); }
    50% { box-shadow: 0 0 20px rgba(0, 230, 118, 0.7), 0 0 40px rgba(0, 230, 118, 0.3); }
}

@keyframes laserLineH {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes pulseCta {
    0%, 100% { box-shadow: 0 0 8px var(--emerald-glow), 0 4px 16px rgba(0, 230, 118, 0.2); }
    50% { box-shadow: 0 0 24px rgba(0, 230, 118, 0.8), 0 8px 32px rgba(0, 230, 118, 0.4); }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes progressFill {
    from { width: 0%; }
    to { width: 100%; }
}

/* Horizontal laser sweep across sections */
.section-laser {
    position: relative;
    overflow: hidden;
}

.section-laser::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -100%;
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    animation: laserSweep 4s linear infinite;
    pointer-events: none;
    z-index: 1;
}

/* Header laser line */
.header-laser-line {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary) 30%, var(--primary) 70%, transparent 100%);
    opacity: 0.4;
    z-index: 999;
    overflow: hidden;
}

.header-laser-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -200px;
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,230,118,0.9), transparent);
    animation: laserLineH 4s linear infinite;
}

/* ============================================
   BUTTONS
   Primary: neon-green glowing CTA
   Ghost: outline style
   Secondary: dark navy
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.25s ease;
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
    min-height: 48px;
    padding: 0 24px;
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
    box-shadow: 0 0 12px rgba(0, 230, 118, 0.3);
}

.btn-primary:hover {
    background: #00ff88;
    color: #000;
    box-shadow: 0 0 24px rgba(0, 230, 118, 0.6);
    transform: translateY(-1px);
}

.btn-glow {
    animation: pulseCta 2.5s ease-in-out infinite;
}

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

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

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

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

.btn-gold {
    background: var(--gold);
    color: #0D0D14;
    border-color: var(--gold);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    background: #e8c547;
    box-shadow: 0 0 24px rgba(212, 175, 55, 0.6);
    transform: translateY(-1px);
}

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

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

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

/* ============================================
   HEADER
   Fixed, dark semi-transparent with blur
   ============================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(13, 13, 20, 0.95);
    border-bottom: 1px solid rgba(42, 45, 62, 0.6);
    z-index: 1000;
    /* NO backdrop-filter here - causes CSS containing block trap on mobile nav */
}

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

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

.logo-icon svg {
    display: block;
}

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

.logo-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    letter-spacing: 0.08em;
    color: var(--foreground);
}

.logo-sub {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--primary);
    text-transform: uppercase;
}

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

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

.nav-link {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted-foreground);
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--primary);
    background: var(--emerald-dim);
}

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

.header-login {
    display: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    border-radius: 4px;
    background: transparent;
    border: 1px solid var(--border);
    cursor: pointer;
    z-index: 1001;
    position: relative;
    flex-shrink: 0;
}

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

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

/* Mobile Nav Drawer - hidden by default */
.header-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--background);
    z-index: 999;
    overflow-y: auto;
    padding: 24px 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    display: none;
}

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

.header-nav .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--border);
    padding-bottom: 24px;
    margin-bottom: 24px;
}

.header-nav .nav-link {
    font-size: 1.375rem;
    min-height: 56px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(42,45,62,0.4);
    border-radius: 0;
    padding: 0 8px;
}

.nav-mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 8px;
}

.nav-mobile-cta .btn {
    min-height: 56px;
    font-size: 1.125rem;
    width: 100%;
}

/* Desktop: show nav inline, hide toggle */
@media (min-width: 1024px) {
    .site-header {
        -webkit-backdrop-filter: blur(12px);
        backdrop-filter: blur(12px);
    }

    .header-nav {
        position: static;
        display: flex !important;
        flex-direction: row;
        background: transparent;
        padding: 0;
        overflow: visible;
        flex: 1;
        justify-content: center;
        align-items: center;
    }

    .header-nav.is-open {
        /* Override mobile open state on desktop */
        position: static;
    }

    .header-nav .nav-list {
        flex-direction: row;
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .header-nav .nav-link {
        font-size: 1rem;
        min-height: auto;
        border-bottom: none;
        padding: 8px 16px;
    }

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

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

    .header-login {
        display: inline-flex;
    }
}

/* ============================================
   FOOTER
   Three-column layout, collapses to single on mobile
   ============================================ */

.site-footer {
    background: #090910;
    border-top: 1px solid var(--border);
    padding-top: 0;
}

.footer-laser-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary) 30%, var(--primary) 70%, transparent 100%);
    opacity: 0.3;
}

.footer-inner {
    padding-top: 48px;
    padding-bottom: 32px;
}

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

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 16px;
}

.footer-logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    letter-spacing: 0.08em;
    color: var(--foreground);
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.footer-logo-text span {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--primary);
    text-transform: uppercase;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--muted-foreground);
    margin-bottom: 16px;
    max-width: 30ch;
}

.footer-license {
    margin-bottom: 12px;
}

.license-badge {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.8rem;
    color: var(--primary);
    background: var(--emerald-dim);
    border: 1px solid rgba(0,230,118,0.2);
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
}

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

/* Fix: badge-18 contrast - use darker red for sufficient contrast with white text */
.badge-18 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    background: #c0392b;
    color: white;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    flex-shrink: 0;
}

.badge-rg {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    padding: 4px 10px;
    border-radius: 4px;
}

.footer-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.15em;
    color: var(--muted-foreground);
    margin-bottom: 16px;
    text-transform: uppercase;
}

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

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

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

.payment-logos-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.payment-logo {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    background: var(--gunmetal);
    color: var(--muted-foreground);
    padding: 6px 12px;
    border-radius: 4px;
    border: 1px solid var(--border);
}

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

.footer-trust-badge {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trust-stars {
    font-size: 1.1rem;
    color: var(--gold);
    letter-spacing: 2px;
}

.trust-guru {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--gold);
    line-height: 1;
}

.trust-label {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

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

.footer-disclaimer {
    font-size: 0.8rem;
    color: var(--muted-foreground);
    line-height: 1.5;
    max-width: 100%;
}

.footer-copyright {
    font-size: 0.8rem;
    color: var(--muted-foreground);
    max-width: 100%;
}

/* ============================================
   HERO SECTION
   Full-viewport dark scene with laser beams
   ============================================ */

.hero {
    min-height: 100svh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: var(--header-height);
    background: var(--background);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(0, 230, 118, 0.04) 0%, transparent 70%),
        radial-gradient(ellipse 60% 80% at 80% 60%, rgba(26, 26, 46, 0.8) 0%, transparent 60%);
    pointer-events: none;
}

/* Laser beams - left edge */
.hero::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent 0%, var(--primary) 30%, var(--primary) 70%, transparent 100%);
    opacity: 0.4;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--emerald-dim);
    border: 1px solid rgba(0,230,118,0.3);
    border-radius: 100px;
    padding: 6px 16px;
    margin-bottom: 24px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--primary);
    text-transform: uppercase;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    animation: livePulse 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

.hero-title {
    margin-bottom: 16px;
}

/* Cipher text - characters scramble then resolve */
.cipher-text {
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.375rem);
    color: var(--muted-foreground);
    margin-bottom: 32px;
    max-width: 52ch;
}

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

.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

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

/* Trustpilot badge */
.trustpilot-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(42,45,62,0.5);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 16px;
}

.tp-stars {
    color: #00b67a;
    font-size: 1.125rem;
    letter-spacing: 2px;
}

.tp-text {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.3;
}

.tp-text strong {
    color: var(--foreground);
    display: block;
    font-size: 0.95rem;
}

/* Mascot container */
.hero-mascot {
    position: absolute;
    right: -20px;
    bottom: 0;
    width: clamp(200px, 35vw, 480px);
    opacity: 0;
    pointer-events: none;
}

@media (min-width: 1024px) {
    .hero-mascot {
        right: 40px;
    }
}

/* Laser beam decorations */
.laser-beam {
    position: absolute;
    pointer-events: none;
    opacity: 0.15;
}

.laser-beam--h {
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.laser-beam--v {
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--primary), transparent);
}

/* ============================================
   SECTION HEADERS
   Centered section titles with cipher animation
   ============================================ */

.section-header {
    margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section-header--center {
    text-align: center;
}

.section-header--center p {
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 8px;
    display: block;
}

.section-desc {
    font-size: 1.0625rem;
    color: var(--muted-foreground);
    margin-top: 12px;
    max-width: 60ch;
}

/* ============================================
   BONUS MISSION CARD
   Spy-briefing style bonus cards
   ============================================ */

.bonus-card {
    position: relative;
    background: var(--navy);
    border: 1px solid var(--gunmetal);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

.bonus-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary);
    box-shadow: 0 0 8px var(--primary);
}

.bonus-card--gold::before {
    background: var(--gold);
    box-shadow: 0 0 8px var(--gold);
}

.bonus-card--gold {
    border-color: rgba(212, 175, 55, 0.3);
}

.bonus-card:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 40px rgba(0, 230, 118, 0.15), 0 0 0 1px rgba(0,230,118,0.3);
}

.bonus-card--gold:hover {
    box-shadow: 0 8px 40px rgba(212, 175, 55, 0.15), 0 0 0 1px rgba(212,175,55,0.3);
}

/* Laser glow border animation */
.bonus-card__laser {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px;
    pointer-events: none;
    animation: laserGlow 3s ease-in-out infinite;
    border: 1px solid rgba(0,230,118,0.08);
}

.bonus-card--gold .bonus-card__laser {
    border-color: rgba(212,175,55,0.08);
    animation: none;
}

.bonus-card__inner {
    padding: 28px 28px 28px 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 12px;
}

@media (max-width: 767px) {
    .bonus-card__inner {
        padding: 20px 20px 20px 24px;
    }
}

.bonus-card__label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    color: var(--primary);
    text-transform: uppercase;
    text-shadow: 0 0 8px rgba(0,230,118,0.5);
}

.bonus-card--gold .bonus-card__label {
    color: var(--gold);
    text-shadow: 0 0 8px rgba(212,175,55,0.5);
}

.bonus-card__amount {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 5rem);
    color: var(--gold);
    line-height: 1;
    letter-spacing: 0.02em;
}

.bonus-card__amount-sub {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--muted-foreground);
    letter-spacing: 0.05em;
    margin-top: -8px;
}

/* Classified code stamp */
.bonus-card__code-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border: 2px dashed rgba(0,230,118,0.3);
    border-radius: 4px;
    padding: 10px 14px;
    background: rgba(0,230,118,0.04);
}

.bonus-card--gold .bonus-card__code-block {
    border-color: rgba(212,175,55,0.3);
    background: rgba(212,175,55,0.04);
}

.bonus-card__code-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--muted-foreground);
    text-transform: uppercase;
}

.bonus-card__code {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.1em;
}

.bonus-card--gold .bonus-card__code {
    color: var(--gold);
}

.bonus-card__terms {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.bonus-card__terms span {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.8rem;
    color: var(--muted-foreground);
    background: rgba(42,45,62,0.6);
    padding: 3px 8px;
    border-radius: 3px;
    border: 1px solid var(--border);
}

.bonus-card__cta {
    margin-top: auto;
    padding-top: 4px;
}

/* ============================================
   GAME CARD
   Casino game tiles with hover laser effect
   ============================================ */

.game-card {
    background: var(--navy);
    border: 1px solid var(--gunmetal);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.game-card:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 32px rgba(0,230,118,0.15), 0 0 0 1px rgba(0,230,118,0.25);
}

.game-card__thumb {
    position: relative;
    aspect-ratio: 3/2;
    overflow: hidden;
    background: var(--gunmetal);
    flex-shrink: 0;
}

.game-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.game-card__thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gunmetal), var(--navy));
}

.game-card__thumb-icon {
    font-size: 2.5rem;
    opacity: 0.5;
}

/* Provider badge - top-left */
.game-card__provider-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--gold);
    background: rgba(13,13,20,0.85);
    padding: 3px 8px;
    border-radius: 100px;
    white-space: nowrap;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* RTP badge - top-right */
.game-card__rtp-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: #0D0D14;
    background: var(--primary);
    padding: 3px 8px;
    border-radius: 100px;
    white-space: nowrap;
}

/* LIVE badge */
.game-card__live-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: white;
    background: #ef4444;
    padding: 3px 10px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: white;
    animation: livePulse 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

/* Multiplier badge */
.game-card__multi-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--gold);
    background: rgba(13,13,20,0.85);
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid rgba(212,175,55,0.3);
}

/* Laser scan line on hover */
.game-card__scan-line {
    position: absolute;
    top: -4px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(0,230,118,0.8), transparent);
    opacity: 0;
    pointer-events: none;
}

.game-card:hover .game-card__scan-line {
    animation: laserSweepCard 1.5s linear infinite;
    opacity: 1;
}

/* Card info area */
.game-card__info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.game-card__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.125rem;
    letter-spacing: 0.05em;
    color: var(--foreground);
    line-height: 1.2;
}

.game-card__bet-range {
    font-size: 0.8rem;
    color: var(--muted-foreground);
    margin: 0;
    max-width: 100%;
}

.game-card__actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.game-card__demo,
.game-card__play {
    flex: 1;
    min-height: 48px;
    font-size: 0.875rem;
}

.game-card__demo {
    border-color: var(--gunmetal);
    color: var(--muted-foreground);
}

.game-card__demo:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ============================================
   STAT COUNTER ROW
   Full-width stats with gold numerals
   ============================================ */

.stat-row {
    position: relative;
    background: var(--background);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
}

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

/* Laser sweep over stat row */
.stat-row__laser {
    position: absolute;
    top: 0;
    left: -200px;
    width: 200px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,230,118,0.05), transparent);
    animation: laserSweep 4s linear infinite;
    pointer-events: none;
    z-index: 1;
}

.stat-item {
    padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1rem, 2vw, 1.5rem);
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.stat-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays */
.stat-item:nth-child(2) { transition-delay: 0.1s; }
.stat-item:nth-child(3) { transition-delay: 0.2s; }
.stat-item:nth-child(4) { transition-delay: 0.3s; }

/* Gunmetal divider */
.stat-item--divided::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: var(--gunmetal);
}

@media (max-width: 767px) {
    .stat-item--divided::after {
        display: none;
    }
    /* Mobile 2x2 - add borders differently */
    .stat-item {
        border-bottom: 1px solid var(--gunmetal);
    }
    .stat-item:nth-child(odd) {
        border-right: 1px solid var(--gunmetal);
    }
}

.stat-item__number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--gold);
    line-height: 1;
    letter-spacing: 0.02em;
    display: block;
}

.stat-item__label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted-foreground);
    display: block;
}

.stat-item__sub {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    opacity: 0.7;
    display: block;
}

/* ============================================
   FAQ ACCORDION
   Collapsible with FAQPage schema markup
   ============================================ */

.faq-accordion {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

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

.faq-item:last-child {
    border-bottom: none;
}

.faq-item.is-open {
    border-left: 3px solid var(--primary);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: var(--navy);
    color: var(--foreground);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.0625rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    min-height: 64px;
    border: none;
    border-radius: 0;
}

.faq-question:hover {
    background: rgba(26,26,46,0.8);
    color: var(--primary);
}

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

.faq-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    transition: transform 0.25s ease;
}

.faq-item.is-open .faq-icon .faq-icon-plus-v {
    opacity: 0;
    transform: scaleY(0);
}

.faq-icon-plus-v {
    transition: opacity 0.2s ease, transform 0.2s ease;
    transform-origin: center;
}

.faq-answer {
    background: rgba(13,13,20,0.7);
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s ease;
}

.faq-answer[hidden] {
    display: block;
    max-height: 0;
    opacity: 0;
}

.faq-answer:not([hidden]) {
    max-height: 1000px;
    opacity: 1;
}

.faq-answer__inner {
    padding: 20px 24px 24px;
    font-size: 1.0625rem;
    color: var(--muted-foreground);
    line-height: 1.7;
}

.faq-answer__inner p {
    color: var(--muted-foreground);
    max-width: 100%;
}

.faq-answer__inner strong {
    color: var(--foreground);
}

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

/* ============================================
   CTA SECTION BANDS
   Full-width contrasting CTA blocks
   ============================================ */

.cta-band {
    padding: clamp(3rem, 6vw, 5rem) 0;
    text-align: center;
    background: linear-gradient(135deg, var(--navy) 0%, #0f0f1e 100%);
    position: relative;
    overflow: hidden;
}

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

.cta-band::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.5;
}

.cta-band__title {
    margin-bottom: 12px;
}

.cta-band__sub {
    color: var(--muted-foreground);
    font-size: 1rem;
    margin-bottom: 28px;
    margin-left: auto;
    margin-right: auto;
    max-width: 52ch;
}

.cta-band__disclaimer {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-top: 12px;
    max-width: 100%;
}

/* ============================================
   PROVIDERS STRIP
   Horizontal logo scrolling strip
   ============================================ */

.providers-strip {
    background: var(--navy);
}

.providers-scroll {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.provider-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    color: var(--muted-foreground);
    background: var(--gunmetal);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 8px 16px;
    white-space: nowrap;
    transition: color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.provider-logo:hover {
    color: var(--primary);
    border-color: rgba(0,230,118,0.4);
    box-shadow: 0 0 12px rgba(0,230,118,0.1);
}

/* ============================================
   VIP TIER CARDS
   Horizontal staircase ladder layout
   ============================================ */

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

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

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

.vip-tier-card:hover {
    transform: translateY(-4px);
}

.vip-tier-card--bronze { border-color: rgba(205,127,50,0.4); }
.vip-tier-card--silver { border-color: rgba(192,192,192,0.4); }
.vip-tier-card--gold { border-color: rgba(212,175,55,0.5); }
.vip-tier-card--platinum {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0,230,118,0.15);
}

.vip-tier-badge {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    padding: 4px 12px;
    border-radius: 100px;
}

/* Fix: Bronze badge contrast - use darker background for sufficient contrast with bronze text */
.vip-tier-card--bronze .vip-tier-badge { background: rgba(80,40,0,0.7); color: #e09040; }
.vip-tier-card--silver .vip-tier-badge { background: rgba(192,192,192,0.15); color: #c0c0c0; }
.vip-tier-card--gold .vip-tier-badge { background: rgba(212,175,55,0.15); color: var(--gold); }
.vip-tier-card--platinum .vip-tier-badge { background: var(--emerald-dim); color: var(--primary); }

.vip-tier-cashback {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--gold);
    line-height: 1;
}

.vip-tier-card--platinum .vip-tier-cashback {
    color: var(--primary);
}

.vip-tier-perks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
    width: 100%;
}

.vip-tier-perks li {
    font-size: 0.85rem;
    color: var(--muted-foreground);
    padding-left: 16px;
    position: relative;
}

.vip-tier-perks li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* ============================================
   TOURNAMENT CARDS
   Prize pool + countdown timer
   ============================================ */

.tournament-card {
    background: var(--navy);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}

.tournament-card--featured {
    border-color: rgba(0,230,118,0.4);
    box-shadow: 0 0 20px rgba(0,230,118,0.08);
}

.tournament-card--featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.tournament-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.tournament-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted-foreground);
}

.tournament-card--featured .tournament-label {
    color: var(--primary);
}

.tournament-prize {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--gold);
    line-height: 1;
    letter-spacing: 0.02em;
}

.tournament-countdown {
    display: flex;
    gap: 8px;
}

.countdown-unit {
    flex: 1;
    text-align: center;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 8px 4px;
}

.countdown-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--foreground);
    display: block;
    line-height: 1;
}

.countdown-label {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted-foreground);
    display: block;
}

/* ============================================
   PAYMENT LOGOS ROW
   ============================================ */

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

.payment-method-badge {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--muted-foreground);
    background: var(--navy);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 10px 16px;
    transition: color 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}

.payment-method-badge:hover {
    color: var(--foreground);
    border-color: var(--muted);
}

/* ============================================
   SCROLL ANIMATION UTILITY
   Elements reveal on viewport entry
   ============================================ */

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

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

.animate-on-scroll--left {
    transform: translateX(-50px);
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Stagger delays for grids */
.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.1s; }
.stagger-3 { transition-delay: 0.15s; }
.stagger-4 { transition-delay: 0.2s; }
.stagger-5 { transition-delay: 0.25s; }
.stagger-6 { transition-delay: 0.3s; }
.stagger-7 { transition-delay: 0.35s; }
.stagger-8 { transition-delay: 0.4s; }

/* ============================================
   ENGAGEMENT / CRO PATTERNS
   Reusable across all pages
   ============================================ */

/* Summary / TL;DR box */
.summary-box {
    background: var(--emerald-dim);
    border: 1px solid rgba(0,230,118,0.25);
    border-left: 4px solid var(--primary);
    border-radius: 0 8px 8px 0;
    padding: 20px 24px;
    margin: 24px 0;
}

.summary-box__label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    color: var(--primary);
    margin-bottom: 8px;
    display: block;
}

.summary-box p {
    font-size: 1rem;
    color: var(--foreground);
    max-width: 100%;
}

/* Callout / highlight box */
.callout-box {
    background: rgba(26,26,46,0.7);
    border: 1px solid var(--border);
    border-left: 4px solid var(--gold);
    border-radius: 0 8px 8px 0;
    padding: 20px 24px;
    margin: 24px 0;
}

.callout-box--warning {
    border-left-color: var(--destructive);
    background: rgba(239,68,68,0.05);
}

.callout-box--info {
    border-left-color: var(--primary);
    background: var(--emerald-dim);
}

.callout-box p {
    font-size: 1rem;
    color: var(--foreground);
    max-width: 100%;
    margin: 0;
}

/* Stat highlight */
.stat-highlight {
    text-align: center;
    padding: 24px;
}

.stat-highlight__number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--gold);
    display: block;
    line-height: 1;
}

.stat-highlight__label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-top: 4px;
}

.stat-highlight__source {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    opacity: 0.7;
    display: block;
    margin-top: 4px;
}

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

.pull-quote__text {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-style: italic;
    color: var(--foreground);
    line-height: 1.5;
    max-width: 100%;
    margin: 0;
}

.pull-quote__attribution {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-top: 8px;
    display: block;
}

/* Details/summary expandable */
details.expandable {
    background: var(--navy);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 8px;
    overflow: hidden;
}

details.expandable summary {
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    color: var(--foreground);
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
}

details.expandable summary::after {
    content: '+';
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 300;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

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

details.expandable .expandable-content {
    padding: 0 20px 20px;
    font-size: 1rem;
    color: var(--muted-foreground);
    line-height: 1.7;
}

/* Comparison table */
.comparison-table-wrapper {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: 8px;
}

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

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 400px;
}

.comparison-table thead {
    background: var(--navy);
}

.comparison-table th {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    padding: 16px 20px;
    text-align: left;
    color: var(--muted-foreground);
    border-bottom: 1px solid var(--border);
    font-weight: 400;
}

.comparison-table th.col-recommended {
    color: var(--primary);
}

.comparison-table td {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(42,45,62,0.5);
    font-size: 0.95rem;
    color: var(--foreground);
}

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

.comparison-table tbody tr:hover {
    background: rgba(26,26,46,0.5);
}

.col-recommended {
    background: rgba(0,230,118,0.04);
}

/* Social proof / testimonials */
.testimonial-card {
    background: var(--navy);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.testimonial-stars {
    color: #00b67a;
    font-size: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-style: italic;
    color: var(--foreground);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 100%;
}

.testimonial-author {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    font-weight: 600;
}

/* Trust badges row */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

.trust-badge-item {
    background: var(--navy);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.trust-badge-item__icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* ============================================
   SEO TEXT SECTION
   Editorial content block below fold
   ============================================ */

.seo-section {
    background: var(--background);
    padding: clamp(3rem, 6vw, 6rem) 0;
}

.seo-content {
    max-width: 880px;
}

.seo-content h2 {
    margin-bottom: 24px;
    margin-top: 48px;
}

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

.seo-content h3 {
    margin-top: 32px;
    margin-bottom: 16px;
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    color: var(--foreground);
}

.seo-content p {
    margin-bottom: 20px;
    color: var(--muted-foreground);
    max-width: 100%;
    font-size: 17px;
    line-height: 1.7;
}

.seo-content strong {
    color: var(--foreground);
}

.seo-content a {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-color: rgba(0,230,118,0.3);
}

.seo-content a:hover {
    text-decoration-color: var(--primary);
}

.seo-content ul,
.seo-content ol {
    padding-left: 24px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.seo-content ul li,
.seo-content ol li {
    color: var(--muted-foreground);
    font-size: 17px;
    line-height: 1.6;
    list-style: disc;
}

.seo-content ol li {
    list-style: decimal;
}

.seo-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.seo-content th {
    background: var(--navy);
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.08em;
    font-weight: 400;
    font-size: 0.9rem;
    padding: 14px 16px;
    text-align: left;
    color: var(--muted-foreground);
    border-bottom: 1px solid var(--border);
}

.seo-content td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(42,45,62,0.5);
    font-size: 0.95rem;
    color: var(--foreground);
}

.seo-content tbody tr:last-child td {
    border-bottom: none;
}

/* Scrollable table wrappers inside seo-content need keyboard access */
.seo-content .comparison-table-wrapper {
    overflow-x: auto;
}

/* ============================================
   HOMEPAGE - HERO INNER GRID
   Two-column: content left, mascot right
   ============================================ */

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

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

.hero-bg-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(0, 230, 118, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-mascot-img {
    width: 100%;
    max-height: 600px;
    object-fit: contain;
    filter: drop-shadow(0 0 40px rgba(0, 230, 118, 0.25));
}

/* Hero trust row */
.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
}

.hero-trust-icon {
    font-size: 1rem;
}

/* Scroll hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--muted-foreground);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-family: 'Rajdhani', sans-serif;
    z-index: 2;
    animation: fadeInUp 1s ease 1.5s both;
}

.scroll-hint-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(180deg, transparent, var(--primary));
    animation: laserGlow 2s ease-in-out infinite;
}

/* ============================================
   HOMEPAGE - BONUS VAULT
   ============================================ */

.bonus-vault-section {
    overflow: visible;
}

.vault-scene-img {
    display: block;
    margin: 0 auto 2.5rem;
    max-width: 480px;
    width: 100%;
    filter: drop-shadow(0 0 30px rgba(0, 230, 118, 0.2));
}

.bonus-cards-grid {
    perspective: 1000px;
}

/* ============================================
   HOMEPAGE - LIVE CASINO SECTION
   ============================================ */

.live-casino-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
}

@media (min-width: 768px) {
    .live-casino-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (min-width: 1024px) {
    .live-casino-grid {
        grid-template-columns: 1.2fr 1fr;
    }
}

.live-preview-card {
    background: var(--navy);
    border: 1px solid rgba(0, 230, 118, 0.3);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 24px rgba(0, 230, 118, 0.08);
}

.live-preview-img-wrap {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.live-preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.live-preview-card:hover .live-preview-img {
    transform: scale(1.04);
}

.live-preview-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: #ef4444;
    color: white;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    padding: 4px 12px;
    border-radius: 100px;
}

.live-preview-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,26,46,0.6) 0%, transparent 50%);
    pointer-events: none;
}

.live-preview-meta {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.live-meta-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.875rem;
    letter-spacing: 0.15em;
    color: var(--primary);
}

.live-meta-players {
    font-size: 0.8rem;
    color: var(--muted-foreground);
    font-family: 'Rajdhani', sans-serif;
}

/* Live game list */
.live-game-items {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.live-game-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    background: var(--navy);
    transition: background 0.2s ease;
}

.live-game-item:last-child {
    border-bottom: none;
}

.live-game-item:hover {
    background: rgba(26,26,46,0.9);
}

.live-game-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.live-game-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.05em;
    color: var(--foreground);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.live-game-provider {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    font-family: 'Rajdhani', sans-serif;
}

.live-game-stats {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    flex-shrink: 0;
}

.live-game-multiplier {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.875rem;
    color: var(--gold);
    letter-spacing: 0.05em;
}

.live-game-range {
    font-size: 0.7rem;
    color: var(--muted-foreground);
    white-space: nowrap;
}

.live-game-cta {
    flex-shrink: 0;
}

/* ============================================
   HOMEPAGE - VIP TEASER MASCOT
   ============================================ */

.vip-mascot-wrap {
    text-align: center;
    margin-bottom: 2rem;
}

.vip-mascot-img {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    filter: drop-shadow(0 0 24px rgba(212, 175, 55, 0.2));
}

/* ============================================
   HOMEPAGE - TOURNAMENTS SECTION
   ============================================ */

.tournaments-section {
    background: linear-gradient(135deg, #0a0a15 0%, var(--navy) 50%, #0a0a15 100%);
}

.tournament-cards-grid {
    margin-bottom: 0;
}

.tournament-secondary-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.tournament-mini-card {
    background: rgba(26,26,46,0.7);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
    min-width: 150px;
    max-width: 220px;
    text-align: center;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.tournament-mini-card:hover {
    border-color: rgba(0,230,118,0.3);
    transform: translateY(-2px);
}

.tournament-mini-label {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
}

.tournament-mini-prize {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    color: var(--gold);
    line-height: 1;
}

.tournament-mini-tag {
    font-size: 0.7rem;
    color: var(--primary);
    background: var(--emerald-dim);
    padding: 2px 8px;
    border-radius: 100px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
}

/* ============================================
   HOMEPAGE - PAYMENT METHODS
   ============================================ */

.payment-method-badge-full {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: var(--navy);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px 20px;
    min-width: 80px;
    text-align: center;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.payment-method-badge-full:hover {
    border-color: rgba(0,230,118,0.3);
    transform: translateY(-2px);
}

.payment-method-badge-full--crypto {
    border-color: rgba(212,175,55,0.2);
}

.payment-method-badge-full--crypto:hover {
    border-color: rgba(212,175,55,0.5);
}

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

.payment-method-badge-full span {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--muted-foreground);
    font-family: 'Rajdhani', sans-serif;
}

.payment-promise-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

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

.payment-promise-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--navy);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px;
}

.payment-promise-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.payment-promise-item > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.payment-promise-item strong {
    font-size: 0.875rem;
    color: var(--foreground);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
}

.payment-promise-item span {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

/* ============================================
   HOMEPAGE - GAMES CTA ROW
   ============================================ */

.games-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 2.5rem;
}

/* ============================================
   BONUSES PAGE - SPECIFIC COMPONENTS
   ============================================ */

/* How-to steps (No-Deposit section) */
.bonus-howto-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
}

@media (min-width: 768px) {
    .bonus-howto-grid {
        flex-direction: row;
        justify-content: center;
        gap: 0;
    }
}

.bonus-howto-step {
    background: var(--navy);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    flex: 1;
    max-width: 280px;
    position: relative;
}

.bonus-howto-step h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    margin-top: 8px;
    color: var(--foreground);
}

.bonus-howto-step p {
    font-size: 0.9rem;
    color: var(--muted-foreground);
    max-width: 100%;
}

.bonus-howto-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.8;
    line-height: 1;
    display: block;
}

.bonus-howto-connector {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, var(--primary), transparent);
    opacity: 0.4;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .bonus-howto-connector {
        width: 48px;
        height: 2px;
        background: linear-gradient(90deg, var(--primary), transparent);
    }
}

/* Welcome timeline */
.welcome-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

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

.welcome-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    flex: 1;
    position: relative;
}

.welcome-step__number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 5vw, 5rem);
    color: var(--gold);
    line-height: 1;
    opacity: 0.9;
}

.welcome-step__card {
    width: 100%;
}

.welcome-step__connector {
    display: none;
}

@media (min-width: 1024px) {
    .welcome-step {
        padding: 0 8px;
    }

    .welcome-step__connector {
        display: block;
        position: absolute;
        right: -4px;
        top: 50px;
        width: 8px;
        height: 2px;
        background: linear-gradient(90deg, var(--primary), transparent);
        opacity: 0.5;
    }
}

/* Total banner */
.welcome-total-banner {
    background: linear-gradient(135deg, var(--navy) 0%, rgba(0,230,118,0.05) 100%);
    border: 1px solid rgba(0, 230, 118, 0.25);
    border-radius: 8px;
    padding: 32px 24px;
    text-align: center;
}

.welcome-total-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* High Roller layout */
.high-roller-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .high-roller-layout {
        grid-template-columns: 3fr 2fr;
        align-items: start;
    }
}

/* Cashback scale */
.cashback-scale {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

@media (min-width: 768px) {
    .cashback-scale {
        flex-direction: row;
        justify-content: center;
        gap: 8px;
    }
}

.cashback-tier-item {
    background: var(--navy);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px 24px;
    text-align: center;
    flex: 1;
    max-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s ease;
    width: 100%;
}

@media (max-width: 767px) {
    .cashback-tier-item {
        max-width: 100%;
        flex-direction: row;
        justify-content: space-between;
        padding: 16px 20px;
    }
}

.cashback-tier-item:hover {
    transform: translateY(-3px);
}

.cashback-tier--bronze { border-color: rgba(205,127,50,0.4); }
.cashback-tier--silver { border-color: rgba(192,192,192,0.3); }
.cashback-tier--gold { border-color: rgba(212,175,55,0.4); }
.cashback-tier--platinum {
    border-color: var(--primary);
    box-shadow: 0 0 16px rgba(0,230,118,0.12);
}

.cashback-tier-badge {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    color: var(--muted-foreground);
}

.cashback-tier--bronze .cashback-tier-badge { color: #e09040; }
.cashback-tier--silver .cashback-tier-badge { color: #c0c0c0; }
.cashback-tier--gold .cashback-tier-badge { color: var(--gold); }
.cashback-tier--platinum .cashback-tier-badge { color: var(--primary); }

.cashback-tier-percent {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.25rem;
    color: var(--gold);
    line-height: 1;
}

.cashback-tier--platinum .cashback-tier-percent {
    color: var(--primary);
}

.cashback-tier-limit {
    font-size: 0.78rem;
    color: var(--muted-foreground);
    font-family: 'Rajdhani', sans-serif;
}

.cashback-arrow {
    font-size: 1.5rem;
    color: var(--primary);
    opacity: 0.5;
    flex-shrink: 0;
}

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

/* Cashback progress bar */
.cashback-bar-wrap {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.cashback-bar-track {
    position: relative;
    height: 8px;
    background: var(--gunmetal);
    border-radius: 100px;
    overflow: hidden;
}

.cashback-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, rgba(205,127,50,0.7), var(--gold), var(--primary));
    border-radius: 100px;
    box-shadow: 0 0 8px rgba(0,230,118,0.4);
    transition: width 1.5s ease;
}

.cashback-bar-fill.is-filled {
    width: 100%;
}

.cashback-bar-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 0.75rem;
    color: var(--muted-foreground);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
}

/* Wagering grid */
.wagering-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 1024px) {
    .wagering-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

/* ============================================
   PROGRESS BAR (claim.html)
   ============================================ */

.progress-track {
    height: 4px;
    background: var(--gunmetal);
    border-radius: 100px;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), #00ff88);
    border-radius: 100px;
    width: 0%;
    box-shadow: 0 0 8px rgba(0,230,118,0.6);
}

/* ============================================
   FILTER TABS (games.html)
   Mobile-swipeable horizontal tab bar
   ============================================ */

.filter-tabs-wrapper {
    background: rgba(13, 13, 20, 0.97);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: var(--header-height);
    z-index: 100;
}

.filter-tabs {
    display: flex;
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

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

.filter-tab {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted-foreground);
    padding: 16px 20px;
    white-space: nowrap;
    border: none;
    background: transparent;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
    min-height: 48px;
    flex-shrink: 0;
}

.filter-tab:hover {
    color: var(--foreground);
}

.filter-tab.is-active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

/* ============================================
   GAMES PAGE - SPECIFIC COMPONENTS
   ============================================ */

/* Games hero */
.games-hero .hero-mascot {
    right: -10px;
}

/* Games mascot escape scene */
.games-mascot-scene {
    text-align: center;
    margin-bottom: 2rem;
    overflow: hidden;
}

.games-mascot-escape {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    filter: drop-shadow(0 0 20px rgba(0, 230, 118, 0.15));
}

/* Jackpot Live Display */
.jackpot-live-display {
    text-align: center;
    background: linear-gradient(135deg, var(--navy) 0%, rgba(0,230,118,0.05) 100%);
    border: 1px solid rgba(0, 230, 118, 0.3);
    border-radius: 12px;
    padding: clamp(2rem, 4vw, 3.5rem) 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 230, 118, 0.06);
}

.jackpot-live-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.jackpot-live-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.jackpot-live-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.jackpot-live-amount {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 10vw, 6rem);
    color: var(--gold);
    line-height: 1;
    letter-spacing: 0.02em;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    animation: laserGlow 3s ease-in-out infinite;
}

.jackpot-live-note {
    font-size: 0.8rem;
    color: var(--muted-foreground);
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 0.05em;
}

/* Live Table Count Badges */
.live-table-counts {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 1rem;
}

.live-count-badge {
    background: var(--navy);
    border: 1px solid rgba(0, 230, 118, 0.25);
    border-radius: 8px;
    padding: 16px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
    min-width: 120px;
    max-width: 200px;
}

.live-count-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary);
    line-height: 1;
    text-shadow: 0 0 12px rgba(0, 230, 118, 0.3);
}

.live-count-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted-foreground);
}

/* Drops & Wins Banner */
.drops-wins-banner {
    background: linear-gradient(135deg, #0a0a18 0%, rgba(0,230,118,0.06) 50%, #0a0a18 100%);
    border: 1px solid rgba(0, 230, 118, 0.25);
    border-radius: 12px;
    padding: clamp(1.5rem, 3vw, 2.5rem);
}

.drops-wins-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

@media (min-width: 768px) {
    .drops-wins-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.drops-wins-prize-pool {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.drops-wins-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--muted-foreground);
    display: block;
}

.drops-wins-amount {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--gold);
    line-height: 1;
    letter-spacing: 0.02em;
    display: block;
}

.drops-wins-note {
    font-size: 0.85rem;
    color: var(--muted-foreground);
    font-family: 'Rajdhani', sans-serif;
    display: block;
}

/* Scratch Cards Strip */
.scratch-cards-strip {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--gunmetal) transparent;
}

.scratch-cards-strip::-webkit-scrollbar {
    height: 4px;
}

.scratch-cards-strip::-webkit-scrollbar-track {
    background: transparent;
}

.scratch-cards-strip::-webkit-scrollbar-thumb {
    background: var(--gunmetal);
    border-radius: 2px;
}

.scratch-card-item {
    background: var(--navy);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    width: 140px;
    text-align: center;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.scratch-card-item:hover {
    border-color: rgba(0, 230, 118, 0.4);
    transform: translateY(-3px);
}

.scratch-card-thumb {
    font-size: 2rem;
    line-height: 1;
}

.scratch-card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    color: var(--foreground);
    line-height: 1.2;
}

.scratch-card-provider {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.7rem;
    color: var(--muted-foreground);
}

/* Table Games Grid */
.table-games-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

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

.table-game-card {
    background: var(--navy);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.table-game-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 230, 118, 0.4);
    box-shadow: 0 8px 24px rgba(0, 230, 118, 0.08);
}

.table-game-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.table-game-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    color: var(--foreground);
    line-height: 1.1;
    margin: 0;
}

.table-game-desc {
    font-size: 0.85rem;
    color: var(--muted-foreground);
    margin: 0;
    max-width: 100%;
    line-height: 1.4;
}

.table-game-limits {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    background: var(--emerald-dim);
    border: 1px solid rgba(0, 230, 118, 0.2);
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

/* Providers Wall - denser than strip */
.providers-wall {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin-bottom: 2.5rem;
}

.provider-logo--featured {
    color: var(--foreground);
    border-color: rgba(0, 230, 118, 0.2);
    background: var(--navy);
}

.provider-logo--featured:hover {
    border-color: var(--primary);
}

/* RTP Fairness Strip */
.rtp-fairness-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

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

.rtp-badge-item {
    background: var(--navy);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.rtp-badge-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.rtp-badge-item > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.rtp-badge-item strong {
    font-size: 0.875rem;
    color: var(--foreground);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.rtp-badge-item span {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

/* ============================================
   MASCOT ELEMENTS
   Decorative mascot/character containers
   ============================================ */

.mascot-container {
    position: relative;
    display: flex;
    justify-content: center;
}

.mascot-img {
    max-width: 100%;
    filter: drop-shadow(0 0 30px rgba(0,230,118,0.2));
}

/* ============================================
   SECTION ANCHOR (smooth scroll targets)
   ============================================ */

.scroll-target {
    scroll-margin-top: calc(var(--header-height) + 80px);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

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

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 40px; }
.mb-6 { margin-bottom: 48px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

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

.w-full { width: 100%; }

/* Highlighted text */
.highlight-emerald { color: var(--primary); }
.highlight-gold { color: var(--gold); }

/* ============================================
   VIP PAGE - SPECIFIC STYLES
   ============================================ */

/* VIP Hero background */
.vip-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 70% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse 80% 60% at 30% 60%, rgba(0, 230, 118, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

/* VIP trust row in hero */
.vip-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
}

.vip-trust-badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(42,45,62,0.5);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 16px;
    flex: 1;
    min-width: 140px;
}

.vip-trust-badge-item .trust-stars {
    font-size: 1.1rem;
    letter-spacing: 1px;
    line-height: 1;
}

.vip-trust-badge-item .trust-guru {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    line-height: 1;
    color: var(--primary);
}

.vip-trust-badge-item > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.vip-trust-badge-item strong {
    font-size: 0.95rem;
    color: var(--foreground);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
}

.vip-trust-badge-item span {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.vip-trust-icon {
    font-size: 1.5rem;
    line-height: 1;
}

/* VIP Tiers Ladder */
.vip-tiers-ladder {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

@media (min-width: 768px) {
    .vip-tiers-ladder {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        align-items: end; /* staircase effect */
    }
}

/* Staircase height progression */
.vip-tier-card--stair-1 { padding-bottom: 28px; }
.vip-tier-card--stair-2 { padding-bottom: 36px; }
.vip-tier-card--stair-3 { padding-bottom: 44px; }
.vip-tier-card--stair-4 { padding-bottom: 52px; }

@media (max-width: 767px) {
    .vip-tier-card--stair-1,
    .vip-tier-card--stair-2,
    .vip-tier-card--stair-3,
    .vip-tier-card--stair-4 {
        padding-bottom: 24px;
    }
}

/* VIP tier mascot image */
.vip-tier-mascot {
    display: flex;
    justify-content: center;
    margin-bottom: 4px;
}

.vip-tier-mascot img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.vip-tier-crown {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 4px;
    animation: laserGlow 2s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.5));
}

/* MOST EXCLUSIVE label on Platinum */
.vip-most-exclusive-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--primary);
    background: var(--emerald-dim);
    border: 1px solid rgba(0,230,118,0.3);
    padding: 3px 10px;
    border-radius: 100px;
    text-align: center;
    display: block;
    margin-bottom: 4px;
}

/* High Roller layout */
.high-roller-vip-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
}

@media (min-width: 768px) {
    .high-roller-vip-layout {
        grid-template-columns: 1fr 2fr;
        gap: 40px;
        align-items: center;
    }
}

.high-roller-mascot-wrap {
    display: flex;
    justify-content: center;
}

.high-roller-bonus-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.high-roller-note {
    font-size: 0.9rem;
    color: var(--muted-foreground);
    text-align: center;
    max-width: 100%;
    margin: 0;
}

/* Tournament banner image */
.tournament-banner-img {
    width: 100%;
    object-fit: contain;
    max-height: 140px;
    border-radius: 6px;
    opacity: 0.9;
}

/* Featured egg tournament card - gold variant */
.tournament-card--egg {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.06);
}

.tournament-card--egg::before {
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.tournament-card--egg .tournament-label {
    color: var(--gold);
}

/* Drops & Wins section */
.drops-wins-section .drops-wins-banner {
    margin-top: 0;
}

.drops-wins-columns {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 480px) {
    .drops-wins-columns {
        flex-direction: row;
        gap: 24px;
    }
}

.drops-wins-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: rgba(13,13,20,0.5);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px 20px;
    flex: 1;
    text-align: center;
}

.drops-wins-col-icon {
    font-size: 1.75rem;
    line-height: 1;
    margin-bottom: 4px;
}

.drops-wins-col-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted-foreground);
}

.drops-wins-col-amount {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--gold);
    line-height: 1;
}

.drops-wins-col-note {
    font-size: 0.78rem;
    color: var(--muted-foreground);
    font-family: 'Rajdhani', sans-serif;
    line-height: 1.4;
}

/* Withdrawal crypto row highlight */
.withdrawal-row-crypto {
    background: rgba(0, 230, 118, 0.03);
}

.withdrawal-row-crypto td {
    border-left: 2px solid rgba(0, 230, 118, 0.3);
}

.withdrawal-row-crypto td:first-child {
    border-left: 2px solid var(--primary);
}

/* VIP Trust Scores */
.vip-trust-scores {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 2rem;
}

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

.vip-trust-score-card {
    background: var(--navy);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vip-trust-score-card:hover {
    transform: translateY(-3px);
}

.vip-trust-score-card--tp { border-color: rgba(0, 183, 122, 0.3); }
.vip-trust-score-card--guru { border-color: rgba(0, 230, 118, 0.3); }
.vip-trust-score-card--license { border-color: rgba(212, 175, 55, 0.3); }

.vip-trust-score-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vip-trust-score-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted-foreground);
}

.vip-trust-score-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: var(--gold);
    line-height: 1;
    letter-spacing: 0.02em;
}

.vip-trust-score-number span {
    font-size: 1.5rem;
    color: var(--muted-foreground);
}

.vip-trust-score-sub {
    font-size: 0.85rem;
    color: var(--muted-foreground);
    font-family: 'Rajdhani', sans-serif;
}

.vip-trust-score-bar {
    height: 4px;
    background: var(--gunmetal);
    border-radius: 100px;
    overflow: hidden;
}

.vip-trust-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), #e8c547);
    border-radius: 100px;
    transition: width 1.2s ease;
}

.vip-trust-score-breakdown {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.78rem;
    color: var(--muted-foreground);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
}