/* ============================================
   BillionaireSpin Casino - Design System
   Mobile-first, dark luxury aesthetic
   Bebas Neue headlines + Nunito Sans body
   ============================================ */

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

/* ============================================
   BASE & TYPOGRAPHY
   ============================================ */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--background);
    color: var(--foreground);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

a:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ============================================
   TYPOGRAPHY SCALE
   H1: Bebas Neue 40px mobile / 72px desktop
   H2: Bebas Neue 32px mobile / 52px desktop
   H3: Bebas Neue 24px mobile / 36px desktop
   H4: Bebas Neue 20px mobile / 24px desktop
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: 0.04em;
    line-height: 1.1;
    color: var(--foreground);
}

h1 { font-size: clamp(40px, 8vw, 72px); }
h2 { font-size: clamp(32px, 5vw, 52px); }
h3 { font-size: clamp(24px, 3.5vw, 36px); }
h4 { font-size: clamp(20px, 2.5vw, 24px); }

p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: var(--foreground);
}

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

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

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

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

section {
    overflow: clip;
}

.section-gap {
    padding-top: var(--section-gap-mobile);
    padding-bottom: var(--section-gap-mobile);
}

/* Card grid: 2-col mobile → 4-col desktop */
.game-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

/* Bonus card grid */
.bonus-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
}

/* Generic 2-col grid */
.grid-2 {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
}

/* Generic 3-col grid */
.grid-3 {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
}

/* ============================================
   HEADER
   Fixed, frosted dark glass, z-index 1000
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height-mobile);
    z-index: 1000;
    background: rgba(13, 13, 20, 0.95);
    border-bottom: 1px solid var(--border);
    /* Note: backdrop-filter removed on mobile to avoid position:fixed trapping */
}

.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;
    color: var(--foreground);
    text-decoration: none;
    flex-shrink: 0;
}

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

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 22px;
    letter-spacing: 0.06em;
    color: var(--foreground);
    white-space: nowrap;
    display: none; /* Hidden on smallest screens */
}

/* Main Nav */
.main-nav {
    display: none; /* Hidden by default on mobile */
    position: fixed;
    top: var(--header-height-mobile);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--background);
    z-index: 999;
    overflow-y: auto;
    padding: 24px 20px;
    flex-direction: column;
}

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

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

.nav-link {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 0 16px;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: var(--foreground);
    text-decoration: none;
    border-radius: var(--card-radius);
    transition: background 0.2s, color 0.2s;
    border-bottom: 1px solid var(--border);
}

.nav-link:hover,
.nav-link:focus-visible {
    background: var(--secondary);
    color: var(--primary);
}

.nav-link.active {
    color: var(--primary);
}

/* Mobile CTAs inside nav (shown only when nav open) */
.nav-ctas-mobile {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

/* Header CTA buttons */
.header-ctas {
    display: none;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

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

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--foreground);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 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;
}
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
}

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    white-space: nowrap;
}

.btn:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    animation: btn-pulse 3s ease-in-out infinite;
}

.btn-primary:hover {
    background: #d4ff40;
    color: var(--primary-foreground);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(200, 241, 53, 0.4);
    animation: none;
}

.btn-outline {
    background: transparent;
    color: var(--foreground);
    border: 1px solid var(--border);
}

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

.btn-gold {
    background: var(--gold-gradient);
    color: var(--primary-foreground);
    font-weight: 700;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--gold-glow);
}

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

.btn-lg {
    min-height: 60px;
    padding: 0 32px;
    font-size: 17px;
}

.btn-full {
    width: 100%;
}

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

/* ============================================
   HERO SECTION
   90vh full-bleed with money-rain overlay
   ============================================ */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(160deg, #0d0d14 0%, #0f0f1e 50%, #121228 100%);
    padding-top: calc(var(--header-height-mobile) + 32px);
    padding-bottom: 56px;
    overflow: clip;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Money rain animated overlay */
.money-rain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.money-coin, .money-note {
    position: absolute;
    top: -60px;
    animation: fall linear infinite;
    opacity: 0.6;
}

@keyframes fall {
    0% { transform: translateY(-60px) rotate(0deg); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.4; }
    100% { transform: translateY(110vh) rotate(360deg); opacity: 0; }
}

/* Skyline silhouette at bottom */
.hero-skyline {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(13,13,20,0.9), transparent);
    pointer-events: none;
    z-index: 1;
}

.hero__headline {
    font-size: clamp(36px, 8vw, 72px);
    line-height: 1.0;
    margin-bottom: 16px;
}

.hero__subheadline {
    font-size: 16px;
    color: var(--muted-foreground);
    margin-bottom: 32px;
    max-width: 480px;
}

.hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: rgba(240, 180, 41, 0.12);
    border: 1px solid rgba(240, 180, 41, 0.3);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    white-space: nowrap;
}

/* Mascot image */
.hero__mascot {
    display: none; /* Hidden on mobile, shown on tablet+ */
    position: absolute;
    right: 0;
    bottom: 0;
    height: 80%;
    max-height: 600px;
    z-index: 2;
    object-fit: contain;
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section {
    padding-top: var(--section-gap-mobile);
    padding-bottom: var(--section-gap-mobile);
}

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

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

.section--secondary {
    background: var(--secondary);
}

.section-header {
    margin-bottom: 40px;
}

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

.section__eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 8px;
}

.section__subtitle {
    font-size: 16px;
    color: var(--muted-foreground);
    max-width: 640px;
    margin-top: 12px;
}

/* Links inside section subtitles need underline for contrast accessibility */
.section__subtitle a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

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

/* ============================================
   GAME CARD COMPONENT
   Dark slate, 12px radius, thumb + info + CTA
   ============================================ */
.game-card {
    background: var(--card);
    border-radius: var(--card-radius);
    overflow: hidden;
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
    min-height: 160px;
    position: relative;
}

.game-card:hover {
    transform: scale(1.04);
    box-shadow: var(--gold-glow);
}

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

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

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

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

.game-card__thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    flex-shrink: 0;
}

.game-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.game-card__thumb-placeholder {
    width: 100%;
    height: 100%;
    min-height: 100px;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-card__info {
    padding: 10px 14px 6px;
    flex: 1;
}

.game-card__title {
    display: block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--foreground);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-card__provider {
    display: block;
    font-size: 12px;
    color: var(--muted-foreground);
    margin-top: 2px;
}

.game-card__cta {
    padding: 0 14px 12px;
}

.game-card__play-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    min-height: 44px;
    background: var(--primary);
    color: var(--primary-foreground);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background 0.2s;
}

.game-card:hover .game-card__play-btn {
    background: #d4ff40;
}

/* ============================================
   STAT HIGHLIGHT COMPONENT
   Bold metric callout with gold accent
   ============================================ */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.stat-card {
    background: var(--card);
    border-radius: var(--card-radius);
    padding: 20px 16px;
    text-align: center;
    position: relative;
    border-bottom: 2px solid var(--accent);
}

.stat-figure {
    font-family: var(--font-heading);
    font-size: clamp(36px, 6vw, 56px);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--foreground);
}

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

/* ============================================
   BONUS CARD COMPONENT
   Promo offer card with icon, value, terms
   ============================================ */
.bonus-card {
    background: var(--card);
    border-radius: var(--card-radius);
    padding: var(--card-padding);
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid var(--border);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bonus-card:hover {
    transform: scale(1.02);
    box-shadow: var(--gold-glow);
}

.bonus-card--highlighted {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px rgba(240, 180, 41, 0.3);
    position: relative;
    overflow: hidden;
}

.bonus-card--highlighted::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
}

.bonus-card__icon-area {
    background: var(--popover);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bonus-icon {
    width: 48px;
    height: 48px;
}

.bonus-card__title {
    font-family: var(--font-heading);
    font-size: 20px;
    letter-spacing: 0.04em;
    color: var(--foreground);
}

.bonus-card__value {
    font-family: var(--font-heading);
    font-size: clamp(28px, 5vw, 36px);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.bonus-card__subtitle {
    font-size: 14px;
    color: var(--foreground);
    margin-bottom: 0;
}

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

.bonus-card__terms li {
    font-size: 13px;
    color: var(--muted-foreground);
    padding-left: 16px;
    position: relative;
}

.bonus-card__terms li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* ============================================
   FAQ ACCORDION COMPONENT
   Collapsible Q&A with neon-lime left accent
   ============================================ */
.faq-accordion {
    display: flex;
    flex-direction: column;
    background: var(--card);
    border-radius: var(--card-radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

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

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

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 56px;
    padding: 16px 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 16px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--foreground);
    transition: background 0.2s;
}

.faq-question:hover {
    background: rgba(200, 241, 53, 0.04);
}

.faq-question:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: -2px;
}

.faq-chevron {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    overflow: hidden;
}

.faq-answer[hidden] {
    display: none;
}

.faq-answer__inner {
    padding: 0 20px 20px;
    background: var(--popover);
    font-size: 15px;
    line-height: 1.7;
    color: var(--foreground);
}

.faq-answer__inner p { margin-bottom: 12px; }
.faq-answer__inner p:last-child { margin-bottom: 0; }
.faq-answer__inner a { color: var(--primary); }

/* ============================================
   HOW-TO STEPS COMPONENT
   Numbered steps with gold numbers + lime connector
   ============================================ */
.how-to-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 48px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    width: 52px;
    text-align: center;
}

.step-connector {
    display: block;
    width: 2px;
    flex: 1;
    min-height: 32px;
    background: var(--primary);
    margin: 8px auto 8px;
}

.step-content {
    padding-bottom: 32px;
    flex: 1;
    min-width: 0;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--foreground);
    letter-spacing: 0.04em;
    margin-bottom: 6px;
}

.step-desc {
    font-size: 15px;
    color: var(--muted-foreground);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ============================================
   PROVIDER LOGO STRIP
   Full-bleed with CSS marquee / flex-wrap
   ============================================ */
.provider-strip {
    background: var(--background);
    padding: 40px 0;
    overflow: hidden;
}

.provider-strip__label {
    font-family: var(--font-heading);
    font-size: 20px;
    letter-spacing: 0.08em;
    color: var(--foreground);
    margin-bottom: 24px;
    text-align: center;
}

.provider-marquee-wrap {
    overflow: hidden;
    width: 100%;
}

.provider-marquee {
    display: flex;
    gap: 16px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.provider-marquee:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.provider-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card);
    border-radius: 100px;
    padding: 10px 20px;
    flex-shrink: 0;
    transition: background 0.2s, box-shadow 0.2s;
}

.provider-pill:hover {
    background: var(--secondary);
    box-shadow: var(--gold-glow);
}

.provider-name {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--muted-foreground);
    white-space: nowrap;
    transition: color 0.2s;
}

.provider-pill:hover .provider-name {
    color: var(--foreground);
}

/* ============================================
   BONUS HIERARCHY LADDER / VISUAL STEPS
   ============================================ */
.bonus-ladder {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ladder-step {
    background: var(--card);
    border-radius: var(--card-radius);
    padding: 24px;
    border-left: 4px solid var(--border);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.ladder-step:nth-child(1) { border-left-color: var(--primary); }
.ladder-step:nth-child(2) { border-left-color: var(--accent); }
.ladder-step:nth-child(3) {
    border-left-color: var(--accent);
    background: linear-gradient(135deg, var(--card) 0%, rgba(240,180,41,0.08) 100%);
    box-shadow: var(--gold-glow);
}

.ladder-step__icon {
    font-size: 32px;
    margin-bottom: 8px;
    display: block;
}

.ladder-step__title {
    font-family: var(--font-heading);
    font-size: 28px;
    letter-spacing: 0.04em;
    color: var(--foreground);
    margin-bottom: 6px;
}

.ladder-step:nth-child(3) .ladder-step__title {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ladder-step__desc {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-bottom: 16px;
}

/* ============================================
   PAYMENT METHODS
   Icon row on obsidian band
   ============================================ */
.payment-section {
    background: var(--background);
    padding: 40px 0;
    text-align: center;
}

.payment-icons-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.payment-icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    color: var(--muted-foreground);
    min-height: 40px;
    min-width: 60px;
    letter-spacing: 0.04em;
}

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

.payment-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(200, 241, 53, 0.08);
    border: 1px solid rgba(200, 241, 53, 0.2);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}

/* ============================================
   VIP TEASER / PANEL
   Dark slate with background image overlay
   ============================================ */
.vip-panel {
    position: relative;
    background: var(--card);
    border-radius: 16px;
    padding: 40px 24px;
    overflow: clip;
}

.vip-panel__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(240,180,41,0.06) 0%, rgba(13,13,20,0) 60%);
    pointer-events: none;
}

.vip-perks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vip-perks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--foreground);
}

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

/* ============================================
   VIP TIER BADGES
   Horizontal tier display
   ============================================ */
.tier-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tier-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Fixed contrast: bronze text lightened to pass 4.5:1 on its dark background */
.tier-badge--bronze { background: rgba(205,127,50,0.2); color: #e8a050; border: 1px solid #cd7f32; }
.tier-badge--silver { background: rgba(192,192,192,0.2); color: #c0c0c0; border: 1px solid #c0c0c0; }
.tier-badge--gold   { background: rgba(240,180,41,0.2); color: var(--accent); border: 1px solid var(--accent); }
.tier-badge--platinum { background: rgba(229,228,226,0.15); color: #e5e4e2; border: 1px solid #e5e4e2; }
.tier-badge--elite  { background: var(--gold-gradient); color: var(--primary-foreground); }

/* ============================================
   SEO TEXT BLOCK
   Two-column on desktop, single on mobile
   ============================================ */
.seo-block {
    background: var(--background);
    padding-top: var(--section-gap-mobile);
    padding-bottom: var(--section-gap-mobile);
}

.seo-block h2 { margin-bottom: 32px; }

.seo-block h3 {
    font-size: clamp(20px, 3vw, 28px);
    margin: 32px 0 12px;
    color: var(--foreground);
}

.seo-block p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--foreground);
    margin-bottom: 20px;
}

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

.seo-block ul, .seo-block ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.seo-block li {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
}

/* ============================================
   COMPARISON TABLE
   GGL vs BillionaireSpin
   ============================================ */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--card-radius);
    overflow: hidden;
}

.comparison-table thead th {
    padding: 14px 16px;
    font-family: var(--font-heading);
    font-size: 18px;
    letter-spacing: 0.04em;
    text-align: left;
}

.comparison-table thead th:first-child {
    background: rgba(239,68,68,0.15);
    color: #ff8080;
}

.comparison-table thead th:last-child {
    background: rgba(200,241,53,0.12);
    color: var(--primary);
}

.comparison-table tbody td {
    padding: 12px 16px;
    font-size: 14px;
    color: var(--foreground);
    border-top: 1px solid var(--border);
}

.comparison-table tbody tr:nth-child(even) td {
    background: rgba(255,255,255,0.02);
}

.comparison-table .check-fail { color: #ff6b6b; }
.comparison-table .check-pass { color: var(--primary); font-weight: 700; }

/* Generic data table */
.data-table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--card-radius);
    /* Fix: keyboard-accessible scrollable region */
    tabindex: 0;
}

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

.data-table {
    width: 100%;
    min-width: 480px;
    border-collapse: collapse;
    background: var(--card);
    border-radius: var(--card-radius);
    overflow: hidden;
}

.data-table thead th {
    background: rgba(200,241,53,0.12);
    color: var(--primary);
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: left;
    border-bottom: 2px solid var(--primary);
}

.data-table tbody td {
    padding: 12px 16px;
    font-size: 14px;
    color: var(--foreground);
    border-top: 1px solid var(--border);
    vertical-align: middle;
}

.data-table tbody tr:nth-child(even) td {
    background: rgba(255,255,255,0.02);
}

.data-table .code-badge {
    display: inline-block;
    background: rgba(200,241,53,0.12);
    border: 1px solid rgba(200,241,53,0.3);
    color: var(--primary);
    font-family: monospace;
    font-size: 13px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 6px;
    letter-spacing: 0.04em;
}

/* ============================================
   LIVE CASINO TEASER
   ============================================ */
.live-teaser {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.live-dealer-visual {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 200px;
    background: linear-gradient(135deg, #0d1a0d, #0d0d14);
    display: flex;
    align-items: center;
    justify-content: center;
}

.live-dealer-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(200,241,53,0.04) 0%, transparent 60%);
    pointer-events: none;
}

/* ============================================
   NO-DEPOSIT CODES TABLE
   Bonus code badges
   ============================================ */
.code-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.code-chip {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 20px;
    background: rgba(200,241,53,0.08);
    border: 1px solid rgba(200,241,53,0.25);
    border-radius: 10px;
    cursor: default;
}

.code-chip__code {
    font-family: monospace;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.08em;
}

.code-chip__desc {
    font-size: 11px;
    color: var(--muted-foreground);
    text-align: center;
}

/* ============================================
   CTA BAND
   Full-width conversion section
   ============================================ */
.cta-band {
    background: linear-gradient(135deg, rgba(200,241,53,0.06) 0%, rgba(240,180,41,0.06) 100%);
    border-top: 1px solid rgba(200,241,53,0.15);
    border-bottom: 1px solid rgba(200,241,53,0.15);
    padding: 56px 0;
    text-align: center;
}

.cta-band h2 {
    margin-bottom: 12px;
}

.cta-band p {
    font-size: 16px;
    color: var(--muted-foreground);
    margin-bottom: 32px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   FOOTER
   4-col desktop / stacked mobile
   ============================================ */
.site-footer {
    background: var(--popover);
    border-top: 1px solid var(--border);
    padding-top: 56px;
    padding-bottom: 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--foreground);
    margin-bottom: 12px;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 20px;
    letter-spacing: 0.06em;
}

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

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

.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.badge-18 {
    background: rgba(239,68,68,0.15);
    color: #ff6b6b;
    border: 1px solid rgba(239,68,68,0.3);
}

.badge-license {
    background: rgba(200,241,53,0.08);
    color: var(--primary);
    border: 1px solid rgba(200,241,53,0.25);
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted-foreground);
    margin-bottom: 16px;
}

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

.footer-links a {
    font-size: 14px;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.2s;
    display: inline-block;
}

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

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.payment-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    color: var(--muted-foreground);
    min-width: 44px;
    min-height: 28px;
}

.responsible-link {
    font-size: 13px;
    color: var(--muted-foreground);
    text-decoration: underline;
    text-underline-offset: 3px;
}

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

.footer-disclaimer {
    font-size: 12px;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-disclaimer a {
    color: var(--muted-foreground);
    text-decoration: underline;
}

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

/* ============================================
   SCROLL ANIMATIONS
   Intersection Observer driven
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition-delay: calc(var(--stagger, 0) * 80ms);
}

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

/* ============================================
   JACKPOT / PRIZE POOL DISPLAY
   ============================================ */
.jackpot-display {
    text-align: center;
    padding: 48px 24px;
    background: linear-gradient(135deg, var(--card) 0%, rgba(240,180,41,0.05) 100%);
    border-radius: 16px;
    position: relative;
    overflow: clip;
}

.jackpot-display__label {
    font-family: var(--font-heading);
    font-size: 18px;
    letter-spacing: 0.12em;
    color: var(--muted-foreground);
    margin-bottom: 8px;
}

.jackpot-display__amount {
    font-family: var(--font-heading);
    font-size: clamp(48px, 10vw, 80px);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
}

/* ============================================
   CATEGORY FILTER TABS
   For games.html
   ============================================ */
.category-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

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

.category-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--muted-foreground);
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    text-decoration: none;
}

.category-tab:hover,
.category-tab.is-active {
    background: rgba(200,241,53,0.1);
    border-color: var(--primary);
    color: var(--primary);
}

/* ============================================
   CALLOUT / HIGHLIGHT BOX
   ============================================ */
.callout-box {
    background: rgba(200,241,53,0.06);
    border: 1px solid rgba(200,241,53,0.2);
    border-left: 4px solid var(--primary);
    border-radius: var(--card-radius);
    padding: 20px 24px;
    margin-bottom: 24px;
}

.callout-box--gold {
    background: rgba(240,180,41,0.06);
    border-color: rgba(240,180,41,0.2);
    border-left-color: var(--accent);
}

.callout-box p {
    margin-bottom: 0;
    font-size: 15px;
}

/* Links inside callout boxes must be underlined for distinguishability */
.callout-box a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* TL;DR Summary box */
.tldr-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: var(--card-radius);
    padding: 24px;
    margin-bottom: 32px;
}

.tldr-box__title {
    font-family: var(--font-heading);
    font-size: 20px;
    letter-spacing: 0.04em;
    color: var(--primary);
    margin-bottom: 12px;
}

.tldr-box ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tldr-box li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--foreground);
}

.tldr-box .check-icon { color: var(--primary); font-weight: 700; }

/* ============================================
   SPINOLEAGUE PRESTIGE SECTION
   ============================================ */
.spinoleague-section {
    background: linear-gradient(135deg, var(--card) 0%, rgba(240,180,41,0.08) 100%);
    border: 1px solid rgba(240,180,41,0.2);
    border-radius: 16px;
    padding: 48px 24px;
    text-align: center;
    position: relative;
    overflow: clip;
}

.spinoleague-section__trophy {
    font-size: 80px;
    display: block;
    margin-bottom: 16px;
    animation: trophy-bounce 3s ease-in-out infinite;
}

@keyframes trophy-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.spinoleague-section__amount {
    font-family: var(--font-heading);
    font-size: clamp(48px, 10vw, 80px);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
}

/* ============================================
   VIP HERO
   ============================================ */
.vip-hero {
    min-height: 90vh;
}

.vip-hero__bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.18;
    pointer-events: none;
    z-index: 0;
}

.vip-hero__mascot {
    display: none;
    position: absolute;
    right: 2%;
    bottom: 0;
    height: 88%;
    max-height: 680px;
    z-index: 2;
    object-fit: contain;
}

@media (min-width: 768px) {
    .vip-hero__mascot {
        display: block;
    }
}

/* ============================================
   VIP TIER STACK
   ============================================ */
.vip-tier-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.vip-tier-card {
    background: var(--card);
    border-radius: var(--card-radius);
    padding: 24px;
    border: 2px solid var(--border);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.vip-tier-card--bronze { border-color: #cd7f32; }
.vip-tier-card--silver { border-color: #c0c0c0; }
.vip-tier-card--gold {
    border-color: var(--accent);
    box-shadow: 0 0 16px rgba(240,180,41,0.15);
}
.vip-tier-card--platinum {
    border-color: #e5e4e2;
    background: linear-gradient(135deg, var(--card) 0%, rgba(229,228,226,0.04) 100%);
}
.vip-tier-card--elite {
    border-color: var(--accent);
    background: linear-gradient(135deg, var(--card) 0%, rgba(240,180,41,0.1) 100%);
    box-shadow: var(--gold-glow);
    position: relative;
    overflow: hidden;
}

.vip-tier-card--elite::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.vip-tier-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.vip-tier-badge-wrap {
    display: flex;
    align-items: center;
}

.vip-tier-badge-lg {
    font-size: 14px !important;
    padding: 6px 16px !important;
}

.vip-tier-card__req {
    font-size: 13px;
    color: var(--muted-foreground);
    font-weight: 600;
}

.vip-tier-card__body {
    flex: 1;
}

/* ============================================
   VIP MANAGER LAYOUT
   ============================================ */
.vip-manager-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.vip-manager-visual {
    display: flex;
    justify-content: center;
    flex-shrink: 0;
}

.vip-manager-mascot-wrap {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

.vip-manager-mascot-img {
    max-height: 280px;
    object-fit: contain;
}

.vip-speech-bubble {
    position: relative;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 16px;
    margin-top: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--foreground);
    text-align: center;
    max-width: 220px;
}

.vip-speech-bubble::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--border);
}

.vip-speech-bubble::after {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid var(--card);
}

.vip-manager-content {
    flex: 1;
    width: 100%;
}

.vip-manager-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vip-manager-features li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.vip-feat-icon {
    font-size: 24px;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(200, 241, 53, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vip-manager-features li strong {
    font-size: 15px;
    color: var(--foreground);
    display: block;
    margin-bottom: 4px;
}

.vip-manager-features li p {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-bottom: 0;
    line-height: 1.5;
}

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

    .vip-manager-mascot-img {
        max-height: 360px;
    }
}

/* ============================================
   VIP PAYMENT TABLE
   Gold-highlighted VIP column
   ============================================ */
.vip-payment-table .vip-col-highlight {
    background: rgba(240, 180, 41, 0.06);
    border-left: 2px solid rgba(240, 180, 41, 0.4);
    font-weight: 600;
}

.vip-payment-table thead .vip-col-highlight {
    background: rgba(240, 180, 41, 0.15);
    color: var(--accent);
    border-left: 2px solid var(--accent);
}

/* ============================================
   VIP SPINOLEAGUE PARTICLES
   ============================================ */
.vip-spino-particles {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(240,180,41,0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(200,241,53,0.03) 0%, transparent 40%);
    pointer-events: none;
}

/* ============================================
   BENEFIT GRID (VIP page)
   3-col desktop / 2-col mobile
   ============================================ */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.benefit-tile {
    background: var(--card);
    border-radius: var(--card-radius);
    padding: 20px 16px;
    text-align: center;
    border: 1px solid var(--border);
    transition: box-shadow 0.2s;
}

.benefit-tile:hover {
    box-shadow: var(--gold-glow);
}

.benefit-tile__icon {
    font-size: 32px;
    display: block;
    margin-bottom: 8px;
}

.benefit-tile__title {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--foreground);
    margin-bottom: 6px;
}

.benefit-tile__desc {
    font-size: 13px;
    color: var(--muted-foreground);
    margin-bottom: 0;
    line-height: 1.5;
}

/* ============================================
   PROVIDER HIGHLIGHT BLOCKS
   ============================================ */
.provider-feature-block {
    background: var(--card);
    border-radius: var(--card-radius);
    padding: 24px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.provider-feature-block__logo {
    font-family: var(--font-heading);
    font-size: 24px;
    letter-spacing: 0.04em;
    color: var(--foreground);
}

.provider-feature-block ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.provider-feature-block li {
    font-size: 14px;
    color: var(--muted-foreground);
    padding-left: 16px;
    position: relative;
}

.provider-feature-block li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* ============================================
   BONUSES PAGE - HERO ENHANCEMENTS
   ============================================ */
.bonuses-hero {
    min-height: 80vh;
}

.bonuses-hero__mascot {
    display: none;
    position: absolute;
    right: 36%;
    bottom: 0;
    height: 85%;
    max-height: 620px;
    z-index: 2;
    object-fit: contain;
}

.fortune-wheel-decoration {
    display: none;
    position: absolute;
    right: 2%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    opacity: 0.85;
    animation: wheel-spin 20s linear infinite;
}

@keyframes wheel-spin {
    0% { transform: translateY(-50%) rotate(0deg); }
    100% { transform: translateY(-50%) rotate(360deg); }
}

/* Deposit steps indicator */
.deposit-steps-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 8px;
}

.deposit-step-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--card);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--muted-foreground);
    flex-shrink: 0;
}

.deposit-step-dot--active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--primary-foreground);
}

.deposit-step-line {
    flex: 1;
    max-width: 80px;
    height: 2px;
    background: var(--border);
}

/* ============================================
   NO-DEPOSIT PAGE - HERO MASCOT
   ============================================ */
.nd-hero__mascot {
    display: none;
    position: absolute;
    right: 2%;
    bottom: 0;
    height: 85%;
    max-height: 640px;
    z-index: 2;
    object-fit: contain;
}

@media (min-width: 768px) {
    .nd-hero__mascot {
        display: block;
    }
}

/* ============================================
   NO-DEPOSIT PANEL
   ============================================ */
.no-deposit-panel {
    display: flex;
    flex-direction: column;
    gap: 32px;
    background: var(--card);
    border-radius: 16px;
    padding: 32px 24px;
    border: 1px solid var(--border);
}

.no-deposit-mascot-wrap {
    display: flex;
    justify-content: center;
}

.no-deposit-mascot {
    max-height: 260px;
    object-fit: contain;
}

.no-deposit-content h3 {
    font-size: clamp(20px, 3vw, 28px);
    margin-bottom: 20px;
    color: var(--foreground);
}

/* ============================================
   DAILY MISSIONS FLOW
   ============================================ */
.missions-flow {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
}

.missions-flow__arrow {
    display: none;
    font-size: 32px;
    color: var(--primary);
    font-weight: 700;
    text-align: center;
    flex-shrink: 0;
}

.mission-step {
    background: var(--card);
    border-radius: var(--card-radius);
    padding: 24px;
    border: 1px solid var(--border);
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mission-step__icon {
    width: 56px;
    height: 56px;
    background: rgba(200, 241, 53, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-step__title {
    font-family: var(--font-heading);
    font-size: clamp(20px, 2.5vw, 26px);
    color: var(--foreground);
    letter-spacing: 0.04em;
}

.mission-step__desc {
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 0;
}

.mission-example-card {
    background: var(--popover);
    border-radius: 8px;
    padding: 14px 16px;
    border: 1px solid var(--border);
    margin-top: auto;
}

.mission-example-card--star {
    border-color: rgba(240, 180, 41, 0.3);
    background: rgba(240, 180, 41, 0.04);
}

.mission-example-card--complete {
    border-color: rgba(200, 241, 53, 0.3);
    background: rgba(200, 241, 53, 0.04);
}

.mission-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(200, 241, 53, 0.1);
    border-radius: 4px;
    padding: 2px 8px;
    margin-bottom: 8px;
}

.mission-tag--gold {
    color: var(--accent);
    background: rgba(240, 180, 41, 0.1);
}

.mission-tag--complete {
    color: var(--primary);
    background: rgba(200, 241, 53, 0.15);
}

.mission-example-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 10px;
}

.mission-progress-bar {
    height: 6px;
    background: var(--border);
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 6px;
}

.mission-progress-fill {
    height: 100%;
    background: var(--gold-gradient);
    border-radius: 100px;
    transition: width 0.3s ease;
}

.mission-progress-label {
    font-size: 12px;
    color: var(--muted-foreground);
}

/* ============================================
   SPINOLEAGUE PRESTIGE SECTION (bonuses page)
   ============================================ */
.spinoleague-prestige {
    position: relative;
    background: linear-gradient(135deg, var(--card) 0%, rgba(240, 180, 41, 0.1) 100%);
    border: 1px solid rgba(240, 180, 41, 0.3);
    border-radius: 20px;
    padding: 48px 24px;
    text-align: center;
    overflow: clip;
}

.spinoleague-prestige__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(240, 180, 41, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.spinoleague-prestige__mascot {
    display: none;
    position: absolute;
    right: 24px;
    bottom: 0;
    max-height: 380px;
    object-fit: contain;
    z-index: 2;
}

.spinoleague-prestige__content {
    position: relative;
    z-index: 2;
}

.spinoleague-prestige__title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 44px);
    color: var(--foreground);
    letter-spacing: 0.04em;
    margin-bottom: 16px;
}

.spinoleague-prestige__desc {
    font-size: 16px;
    color: var(--muted-foreground);
    max-width: 640px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

/* ============================================
   TOURNAMENT INFO LIST
   ============================================ */
.tournament-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tournament-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.tournament-info-icon {
    font-size: 24px;
    flex-shrink: 0;
    width: 40px;
    text-align: center;
}

.tournament-info-item strong {
    font-size: 15px;
    color: var(--foreground);
    display: block;
    margin-bottom: 4px;
}

/* ============================================
   VIP BONUS LAYOUT (bonuses page)
   ============================================ */
.vip-bonus-layout {
    max-width: 900px;
    margin: 0 auto;
}

.vip-bonus-card {
    background: var(--card);
    border: 1px solid rgba(240, 180, 41, 0.3);
    border-radius: 16px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    box-shadow: 0 0 0 1px rgba(240, 180, 41, 0.15);
}

.vip-bonus-mascot {
    max-height: 200px;
    object-fit: contain;
}

.vip-bonus-info {
    width: 100%;
}

/* ============================================
   TABLET - 768px+ (BONUSES PAGE)
   ============================================ */
@media (min-width: 768px) {
    .games-hero__mascot {
        display: block;
    }

    .games-hero__mosaic {
        opacity: 0.15;
    }

    .live-hero__mascot {
        display: block;
        right: 3%;
        height: 85%;
    }

    .bonuses-hero__mascot {
        display: block;
        right: 38%;
        height: 80%;
    }

    .fortune-wheel-decoration {
        display: block;
        right: 0%;
        width: 280px;
        height: 280px;
    }

    .no-deposit-panel {
        flex-direction: row;
        align-items: center;
    }

    .no-deposit-mascot-wrap {
        flex-shrink: 0;
    }

    .no-deposit-mascot {
        max-height: 320px;
    }

    .missions-flow {
        flex-direction: row;
        align-items: flex-start;
    }

    .missions-flow__arrow {
        display: flex;
        align-items: center;
        padding-top: 80px;
    }

    .spinoleague-prestige__mascot {
        display: block;
    }

    .spinoleague-prestige {
        text-align: center;
        padding-right: 360px;
    }

    .vip-bonus-card {
        flex-direction: row;
        align-items: flex-start;
    }

    .vip-bonus-mascot {
        max-height: 260px;
    }
}

/* ============================================
   DESKTOP - 1024px+ (BONUSES PAGE)
   ============================================ */
@media (min-width: 1024px) {
    .games-tabs-bar {
        top: var(--header-height-desktop);
    }

    .games-hero__mascot {
        right: 4%;
        height: 88%;
    }

    .live-hero__mascot {
        right: 2%;
        height: 90%;
        max-height: 660px;
    }

    .bonuses-hero__mascot {
        right: 32%;
        height: 90%;
    }

    .roulette-variants-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .bj-layout {
        gap: 48px;
    }

    .live-mobile-phone img {
        max-height: 400px;
    }

    .fortune-wheel-decoration {
        right: 2%;
        width: 340px;
        height: 340px;
    }

    .spinoleague-prestige {
        padding: 64px 48px;
        padding-right: 420px;
    }
}

/* ============================================
   GAMES PAGE - HERO MOSAIC
   ============================================ */
.games-hero {
    min-height: 80vh;
}

.games-hero__mosaic {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 4px;
    opacity: 0.12;
    pointer-events: none;
    overflow: hidden;
}

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

.games-hero__mascot {
    display: none;
    position: absolute;
    right: 2%;
    bottom: 0;
    height: 85%;
    max-height: 600px;
    z-index: 2;
    object-fit: contain;
}

/* ============================================
   GAMES PAGE - TABS STICKY BAR
   ============================================ */
.games-tabs-bar {
    position: sticky;
    top: var(--header-height-mobile);
    z-index: 90;
    background: rgba(13, 13, 20, 0.97);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* ============================================
   GAMES PAGE - JACKPOT BAND
   ============================================ */
.jackpot-band {
    position: relative;
    overflow: clip;
}

.jackpot-gold-particles {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center top, rgba(240,180,41,0.08) 0%, transparent 60%);
    pointer-events: none;
}

#jackpot-counter {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(48px, 10vw, 80px);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
}

/* ============================================
   GAMES PAGE - CRASH GAME EXPLAINER
   ============================================ */
.crash-explainer {
    background: var(--card);
    border-radius: var(--card-radius);
    padding: 24px;
    border: 1px solid var(--border);
}

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

.crash-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: var(--secondary);
    border-radius: 10px;
    padding: 14px 18px;
    min-width: 80px;
}

.crash-step--win {
    background: rgba(200,241,53,0.1);
    border: 1px solid rgba(200,241,53,0.25);
}

.crash-step__num {
    font-family: var(--font-heading);
    font-size: 28px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.crash-step--win .crash-step__num {
    -webkit-text-fill-color: var(--primary);
    background: none;
    color: var(--primary);
}

.crash-step__text {
    font-size: 12px;
    font-weight: 600;
    color: var(--muted-foreground);
    text-align: center;
    white-space: nowrap;
}

.crash-step__arrow {
    font-size: 18px;
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
}

/* ============================================
   GAMES PAGE - 2-COL GAME GRID VARIANT
   ============================================ */
.game-grid--2col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.game-grid--centered {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   GAMES PAGE - TABLE COLUMN HEADERS
   ============================================ */
.tables-col-header h3 {
    font-size: clamp(20px, 3vw, 28px);
    color: var(--foreground);
    margin-top: 8px;
}

.stat-chips-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* ============================================
   LIVE CASINO - HERO MASCOT
   ============================================ */
.live-hero__mascot {
    display: none;
    position: absolute;
    right: 2%;
    bottom: 0;
    height: 85%;
    max-height: 620px;
    z-index: 2;
    object-fit: contain;
}

/* Live Casino provider badges in hero */
.live-provider-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.live-provider-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--foreground);
    letter-spacing: 0.04em;
}

.live-provider-badge--pp {
    border-color: rgba(200,241,53,0.25);
    color: var(--primary);
}

/* ============================================
   LIVE CASINO - PROVIDER FEATURE BLOCK EXTENDED
   ============================================ */
.provider-feature-block--evolution {
    border-color: rgba(240,180,41,0.25);
}

.provider-feature-block--pp {
    border-color: rgba(200,241,53,0.2);
}

.provider-feature-block__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}

.provider-feature-block__logo-wrap {
    display: flex;
    align-items: center;
}

.provider-logo-img {
    max-height: 36px;
    object-fit: contain;
    filter: brightness(0.9);
}

.provider-badge-label {
    font-size: 11px;
    color: var(--muted-foreground);
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.provider-stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 4px 0;
}

.provider-stat-chip {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    background: rgba(200,241,53,0.08);
    border: 1px solid rgba(200,241,53,0.2);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    white-space: nowrap;
}

/* ============================================
   LIVE CASINO - BLACKJACK LAYOUT
   ============================================ */
.bj-layout {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.bj-games {
    flex: 1;
}

.bj-strategy {
    flex: 1;
}

.bj-strategy__inner {
    background: var(--card);
    border-radius: var(--card-radius);
    padding: 28px 24px;
    border: 1px solid var(--border);
    height: 100%;
}

.bj-strategy-tip {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.bj-strategy-tip:last-of-type {
    border-bottom: none;
}

.bj-tip-num {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    background: var(--gold-gradient);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--primary-foreground);
    font-weight: 700;
    flex-shrink: 0;
}

/* ============================================
   LIVE CASINO - ROULETTE VARIANTS GRID
   ============================================ */
.roulette-variants-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.roulette-variant-card {
    background: var(--card);
    border-radius: var(--card-radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.roulette-variant-card:hover {
    transform: scale(1.02);
    box-shadow: var(--gold-glow);
}

.roulette-variant-card--featured {
    border-color: rgba(240,180,41,0.4);
    box-shadow: 0 0 0 1px rgba(240,180,41,0.15);
}

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

.roulette-variant-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.roulette-variant-card:hover .roulette-variant-card__img img {
    transform: scale(1.05);
}

.roulette-variant-card__body {
    padding: 16px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.roulette-variant-card__title {
    font-family: var(--font-heading);
    font-size: clamp(18px, 2.5vw, 22px);
    color: var(--foreground);
    letter-spacing: 0.04em;
    margin: 0;
}

.roulette-edge-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    width: fit-content;
}

.roulette-edge-badge--green {
    background: rgba(200,241,53,0.1);
    border: 1px solid rgba(200,241,53,0.3);
    color: var(--primary);
}

.roulette-edge-badge--red {
    background: rgba(239,68,68,0.1);
    border: 1px solid rgba(239,68,68,0.3);
    color: #ff7070;
}

.roulette-edge-badge--gold {
    background: rgba(240,180,41,0.1);
    border: 1px solid rgba(240,180,41,0.3);
    color: var(--accent);
}

.roulette-variant-card__desc {
    font-size: 13px;
    color: var(--muted-foreground);
    line-height: 1.5;
    margin: 0;
    flex: 1;
}

.roulette-variant-card__key {
    font-size: 12px;
    font-weight: 600;
    color: var(--foreground);
    padding-top: 4px;
}

/* ============================================
   LIVE CASINO - MOBILE LIVE PANEL
   ============================================ */
.live-mobile-panel {
    background: linear-gradient(135deg, var(--card) 0%, rgba(200,241,53,0.04) 50%, rgba(240,180,41,0.04) 100%);
    border: 1px solid rgba(200,241,53,0.15);
}

.live-mobile-layout {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

.live-mobile-phone {
    display: flex;
    justify-content: center;
    flex-shrink: 0;
}

.live-mobile-phone img {
    max-height: 280px;
    object-fit: contain;
}

.live-mobile-content {
    flex: 1;
    text-align: left;
}

/* ============================================
   MOBILE ONLY - Live Casino CTA
   ============================================ */
.mobile-cta-panel {
    background: linear-gradient(135deg, var(--card) 0%, rgba(200,241,53,0.04) 100%);
    border-radius: 16px;
    padding: 40px 24px;
    text-align: center;
}

.mobile-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
    text-align: left;
}

.mobile-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--foreground);
}

.mobile-features-list .feat-icon {
    width: 32px;
    height: 32px;
    background: rgba(200,241,53,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

/* ============================================
   LEADERBOARD MOCKUP
   ============================================ */
.leaderboard {
    background: var(--card);
    border-radius: var(--card-radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.leaderboard-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
}

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

.leaderboard-row--first {
    background: rgba(240,180,41,0.08);
    border-left: 3px solid var(--accent);
}

.leaderboard-row:hover { background: rgba(255,255,255,0.02); }

.lb-rank {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--accent);
    min-width: 36px;
    text-align: center;
}

.lb-rank--gold { color: var(--accent); }
.lb-rank--silver { color: #c0c0c0; }
.lb-rank--bronze { color: #cd7f32; }

.lb-player {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    color: var(--foreground);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lb-prize {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--accent);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

/* ============================================
   BLOCKQUOTE / PULL QUOTE
   ============================================ */
blockquote.pull-quote {
    border-left: 4px solid var(--accent);
    padding: 20px 24px;
    background: rgba(240,180,41,0.04);
    border-radius: 0 var(--card-radius) var(--card-radius) 0;
    margin: 32px 0;
}

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

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

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

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

.hidden { display: none; }
.block { display: block; }

/* ============================================
   HERO TEXT COLUMN - mobile full width, tablet left
   ============================================ */
.hero__text-col {
    max-width: 560px;
    width: 100%;
}

/* ============================================
   INDEX PAGE - STAT GRID COLS-3 OVERRIDE
   ============================================ */
@media (min-width: 1024px) {
    .stat-grid--cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* ============================================
   TABLET - 768px+
   ============================================ */
@media (min-width: 768px) {
    :root {
        --container-padding: 32px;
    }

    .logo-text { display: block; }

    .header-ctas { display: flex; }
    .mobile-menu-toggle { display: none; }

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

    .nav-list {
        flex-direction: row;
        gap: 2px;
    }

    .nav-link {
        font-size: 14px;
        min-height: 40px;
        padding: 0 12px;
        border-bottom: none;
        border-radius: 6px;
    }

    .game-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .bonus-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

    .stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .benefit-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hero__mascot {
        display: block;
    }

    .live-teaser {
        flex-direction: row;
    }

    .live-hero__mascot {
        display: block;
    }

    .bj-layout {
        flex-direction: row;
        align-items: flex-start;
    }

    .roulette-variants-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .live-mobile-layout {
        flex-direction: row;
        align-items: center;
    }

    .live-mobile-phone img {
        max-height: 340px;
    }

    .provider-marquee {
        flex-wrap: wrap;
        animation: none;
        justify-content: center;
    }

    /* Show only first set on desktop (no duplicate) */
    .provider-marquee .provider-pill[aria-hidden] {
        display: none;
    }
}

/* ============================================
   DESKTOP - 1024px+
   ============================================ */
@media (min-width: 1024px) {
    :root {
        --section-gap-mobile: 96px; /* Reuse var for desktop too */
        --container-padding: 40px;
    }

    .site-header {
        height: var(--header-height-desktop);
        /* backdrop-filter safe on desktop (no fixed nav trapping) */
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        background: rgba(13, 13, 20, 0.85);
    }

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

    .bonus-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

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

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

    .stat-grid--cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 48px;
    }

    .nav-link {
        font-size: 15px;
        padding: 0 14px;
    }

    p {
        font-size: 17px;
    }

    .seo-block p {
        font-size: 17px;
    }
}

/* ============================================
   MAX WIDTH - 1280px
   ============================================ */
@media (min-width: 1280px) {
    :root {
        --container-padding: 48px;
    }
}

/* ============================================
   PLAY.HTML - REDIRECT STUB PAGE
   Full-viewport centered layout, no header/footer nav
   ============================================ */
.play-redirect-page {
    min-height: 100vh;
    background: var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 40px 20px;
}

.play-redirect-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 480px;
    width: 100%;
    gap: 0;
}

/* Logo */
.play-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--foreground);
    margin-bottom: 32px;
}

.play-logo-link:hover {
    color: var(--foreground);
}

.play-logo-img {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    object-fit: cover;
}

.play-logo-text {
    font-family: var(--font-heading);
    font-size: 28px;
    letter-spacing: 0.06em;
    color: var(--foreground);
}

/* Mascot */
.play-mascot-wrap {
    margin-bottom: 28px;
}

.play-mascot-img {
    max-height: 240px;
    width: auto;
    object-fit: contain;
    animation: play-mascot-float 3s ease-in-out infinite;
}

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

/* Headline */
.play-headline {
    font-family: var(--font-heading);
    font-size: clamp(32px, 8vw, 48px);
    letter-spacing: 0.04em;
    color: var(--foreground);
    margin-bottom: 12px;
}

/* Subtext */
.play-subtext {
    font-size: 16px;
    color: var(--muted-foreground);
    line-height: 1.6;
    max-width: 360px;
    margin: 0 auto 32px;
}

/* Animated loading dots */
.play-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.play-dot {
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gold-gradient);
    background: var(--accent);
    animation: play-dot-bounce 1.2s ease-in-out infinite;
}

.play-dot--1 { animation-delay: 0s; }
.play-dot--2 { animation-delay: 0.2s; }
.play-dot--3 { animation-delay: 0.4s; }

@keyframes play-dot-bounce {
    0%, 80%, 100% { transform: scale(0.7); opacity: 0.5; background: var(--accent); }
    40% { transform: scale(1.2); opacity: 1; background: var(--primary); }
}

/* Fallback text */
.play-fallback-text {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-bottom: 14px;
}

/* Fallback CTA button */
.play-fallback-btn {
    width: 100%;
    max-width: 400px;
    margin-bottom: 20px;
    font-size: 14px;
    padding: 0 20px;
    white-space: normal;
    text-align: center;
    line-height: 1.4;
    min-height: 56px;
}

/* Back link */
.play-back-link {
    font-size: 14px;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.2s;
    margin-top: 8px;
}

.play-back-link:hover {
    color: var(--primary);
}

/* Background coin decorations */
.play-coin-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.play-coin {
    position: absolute;
    animation: play-coin-fall linear infinite;
    opacity: 0;
}

.play-coin--1 { left: 8%;  animation-duration: 6s;  animation-delay: 0s;   top: -50px; }
.play-coin--2 { left: 22%; animation-duration: 8s;  animation-delay: 1.5s; top: -40px; }
.play-coin--3 { left: 40%; animation-duration: 7s;  animation-delay: 0.5s; top: -30px; }
.play-coin--4 { left: 60%; animation-duration: 5s;  animation-delay: 2s;   top: -50px; }
.play-coin--5 { left: 78%; animation-duration: 9s;  animation-delay: 0.8s; top: -35px; }
.play-coin--6 { left: 90%; animation-duration: 6.5s;animation-delay: 3s;   top: -40px; }

@keyframes play-coin-fall {
    0%   { transform: translateY(-60px) rotate(0deg);   opacity: 0; }
    10%  { opacity: 0.35; }
    90%  { opacity: 0.25; }
    100% { transform: translateY(110vh) rotate(540deg); opacity: 0; }
}

/* Hide site header/footer on play page for minimal experience */
.play-redirect-page ~ * { display: none; }

/* Override main padding since there's no visible header on this page */
body:has(.play-redirect-page) .site-header { display: none; }
body:has(.play-redirect-page) .site-footer { display: none; }
body:has(.play-redirect-page) #main-content { padding-top: 0; }