/*
 * TOTAL CASINO - Design System
 * Dark luxury aesthetic: obsidian background, imperial gold, royal sapphire
 * Fonts: Bebas Neue (display) + Manrope (body)
 * Mobile-first, 320px base
 */

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

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

body {
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.65;
    color: var(--foreground);
    background-color: var(--background);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

ul, ol {
    list-style: none;
}

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

/* ============================================
   TYPOGRAPHY - Bebas Neue display + Manrope body
   H1: 44px mobile / 72px desktop
   H2: 32px / 52px
   H3: 24px / 34px
   Body: 17px / 1.65
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.15;
    color: var(--foreground);
}

h1 {
    font-size: clamp(2.75rem, 5vw + 1rem, 4.5rem);
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(2rem, 3vw + 0.75rem, 3.25rem);
    margin-bottom: 0.75rem;
}

h3 {
    font-size: clamp(1.5rem, 2vw + 0.5rem, 2.125rem);
    margin-bottom: 0.5rem;
}

h4 {
    font-size: clamp(1.25rem, 1.5vw + 0.5rem, 1.5rem);
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1.75rem;
    overflow-wrap: break-word;
}

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

strong, b {
    font-weight: 600;
}

/* Golden gradient text utility */
.text-gold {
    background: linear-gradient(135deg, #d4a017 0%, #f7d76b 50%, #d4a017 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Champagne secondary text */
.text-champagne {
    color: var(--muted-foreground);
}

/* Large stat number */
.stat-number {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(3rem, 5vw + 1rem, 5rem);
    background: linear-gradient(135deg, #d4a017 0%, #f7d76b 40%, #d4a017 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: 0.02em;
}

/* ============================================
   LAYOUT - Max 1240px, full-bleed sections
   Section spacing: 80px mobile, 140px desktop
   ============================================ */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.section {
    padding: 80px 0;
}

@media (min-width: 1024px) {
    .section {
        padding: 140px 0;
    }
}

.section--compact {
    padding: 48px 0;
}

@media (min-width: 1024px) {
    .section--compact {
        padding: 80px 0;
    }
}

.section--full {
    padding: 0;
}

/* ============================================
   BUTTONS - Gold primary, outline, sizes
   .btn - base
   .btn-primary - solid gold
   .btn-outline - gold border
   .btn-sm / .btn-lg - sizes
   .btn-pulse - continuous golden aura animation
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-size: 1.125rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    min-height: 48px;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #d4a017 0%, #f0c850 100%);
    color: var(--primary-foreground);
    border-color: #d4a017;
    box-shadow: 0 4px 20px rgba(212, 160, 23, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e0b020 0%, #ffd860 100%);
    color: var(--primary-foreground);
    box-shadow: 0 6px 30px rgba(212, 160, 23, 0.5);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: rgba(212, 160, 23, 0.1);
    color: var(--foreground);
    border-color: var(--foreground);
}

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

.btn-lg {
    padding: 18px 48px;
    font-size: 1.375rem;
}

.btn-card {
    width: 100%;
    padding: 10px 16px;
    font-size: 1rem;
}

.btn-pulse {
    animation: cta-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes cta-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(212, 160, 23, 0.5), 0 4px 20px rgba(212, 160, 23, 0.3);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(212, 160, 23, 0), 0 6px 30px rgba(212, 160, 23, 0.4);
    }
}

/* ============================================
   HEADER - Fixed translucent with blur
   Logo left, nav center, actions right
   z-index: header 1000, toggle 1001, nav 999
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(11, 16, 32, 0.88);
    border-bottom: 1px solid var(--border);
    height: 64px;
}

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

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 16px;
    height: 100%;
}

@media (min-width: 768px) {
    .header-inner {
        padding: 0 32px;
    }
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--foreground);
    flex-shrink: 0;
    z-index: 1001;
}

.header-logo .logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.header-logo .logo-text {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.04em;
    background: linear-gradient(135deg, #d4a017, #f7d76b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Desktop navigation */
.main-nav .nav-list {
    display: none;
}

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

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

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

    .nav-link {
        font-family: "Manrope", sans-serif;
        font-weight: 600;
        font-size: 0.9375rem;
        color: var(--foreground);
        padding: 8px 16px;
        border-radius: 6px;
        text-decoration: none;
        transition: all 0.3s ease;
        white-space: nowrap;
    }

    .nav-link:hover {
        color: var(--primary);
        background: rgba(212, 160, 23, 0.08);
    }

    .nav-link--mobile-only {
        display: none;
    }
}

/* Header actions (desktop) */
.header-actions {
    display: none;
}

@media (min-width: 1024px) {
    .header-actions {
        display: flex;
        align-items: center;
        gap: 10px;
    }
}

/* Mobile toggle button */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    gap: 5px;
    z-index: 1001;
    padding: 10px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--foreground);
    border-radius: 2px;
    transition: all 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
}

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

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

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

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

/* Mobile nav drawer */
@media (max-width: 1023px) {
    .main-nav {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--background);
        z-index: 999;
        display: none;
        flex-direction: column;
        overflow-y: auto;
        padding: 24px 20px 100px;
    }

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

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

    .nav-link {
        display: flex;
        align-items: center;
        font-family: "Manrope", sans-serif;
        font-weight: 600;
        font-size: 1.125rem;
        color: var(--foreground);
        padding: 16px 20px;
        min-height: 56px;
        border-radius: 8px;
        text-decoration: none;
        transition: background 0.2s ease;
    }

    .nav-link:hover {
        background: rgba(212, 160, 23, 0.08);
        color: var(--primary);
    }

    .nav-actions-mobile {
        display: flex;
        padding: 24px 0;
        margin-top: auto;
    }

    .nav-actions-mobile .btn {
        width: 100%;
    }

    .btn-nav {
        font-size: 1.25rem;
        padding: 16px 32px;
    }
}

/* Body offset for fixed header */
main {
    padding-top: 64px;
}

/* ============================================
   GAME CARD - Casino game display with thumbnail
   Deep sapphire bg, golden border, hover lift
   1 col mobile, 2 tablet, 3-4 desktop
   ============================================ */
.game-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

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

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

.game-grid--4col {
    grid-template-columns: 1fr;
}

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

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

.game-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.32s ease;
    min-width: 0;
}

.game-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 40px rgba(212, 160, 23, 0.2);
    border-color: var(--primary);
}

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

.game-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.game-card__thumb-icon {
    font-size: 3rem;
}

.game-card__badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #d4a017, #f0c850);
    color: var(--primary-foreground);
    font-family: "Bebas Neue", sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 20px;
    clip-path: polygon(8% 0%, 92% 0%, 100% 50%, 92% 100%, 8% 100%, 0% 50%);
    padding: 6px 16px;
}

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

.game-card__title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.25rem;
    color: var(--foreground);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 0;
}

.game-card__provider {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    margin-bottom: 4px;
}

.game-card__rtp {
    display: inline-flex;
    align-items: center;
    font-family: "Bebas Neue", sans-serif;
    font-size: 0.8125rem;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, #d4a017, #f0c850);
    color: var(--primary-foreground);
    padding: 3px 12px;
    border-radius: 20px;
    clip-path: polygon(8% 0%, 92% 0%, 100% 50%, 92% 100%, 8% 100%, 0% 50%);
    padding: 4px 14px;
    align-self: flex-start;
    margin-bottom: 8px;
}

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

/* ============================================
   CTA BANNER - Full-width conversion band
   Obsidian bg, golden radial glow, pulsing CTA
   80px mobile / 140px desktop padding
   ============================================ */
.cta-banner {
    position: relative;
    padding: 80px 20px;
    text-align: center;
    background: var(--background);
    overflow: clip;
}

@media (min-width: 1024px) {
    .cta-banner {
        padding: 140px 32px;
    }
}

.cta-banner__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(212, 160, 23, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner__content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-banner__headline {
    font-size: clamp(2rem, 4vw + 0.5rem, 3.25rem);
    margin-bottom: 1rem;
    color: var(--foreground);
}

.cta-banner__subtext {
    font-size: 1.0625rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.65;
}

.cta-banner__btn {
    margin-bottom: 1rem;
}

.cta-banner__micro {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    margin-bottom: 0;
}

/* ============================================
   FAQ ACCORDION - Expandable Q&A
   Dark sapphire panel, golden hex bullets
   Only one open at a time (JS controlled)
   ============================================ */
.faq-accordion {
    background: var(--card);
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
}

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

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

.faq-accordion__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease;
    min-height: 48px;
}

@media (min-width: 1024px) {
    .faq-accordion__trigger {
        padding: 24px 32px;
    }
}

.faq-accordion__trigger:hover {
    background: rgba(212, 160, 23, 0.05);
}

.faq-accordion__bullet {
    flex-shrink: 0;
    font-size: 1.25rem;
    color: var(--primary);
    line-height: 1;
}

.faq-accordion__question {
    flex: 1;
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--foreground);
    min-width: 0;
}

.faq-accordion__icon {
    flex-shrink: 0;
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    line-height: 1;
    width: 24px;
    text-align: center;
}

.faq-accordion__trigger[aria-expanded="true"] .faq-accordion__icon {
    transform: rotate(45deg);
}

.faq-accordion__panel {
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.3s ease;
    max-height: 0;
    opacity: 0;
}

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

.faq-accordion__panel.is-open {
    opacity: 1;
    visibility: visible;
}

.faq-accordion__answer {
    padding: 0 20px 20px 52px;
    font-size: 1rem;
    color: var(--muted-foreground);
    line-height: 1.65;
}

@media (min-width: 1024px) {
    .faq-accordion__answer {
        padding: 0 32px 24px 68px;
    }
}

.faq-accordion__answer p {
    margin-bottom: 1rem;
}

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

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

/* ============================================
   INFO TABLE - Structured comparison data
   Golden header, alternating rows, scroll mobile
   ============================================ */
.info-table-wrapper {
    position: relative;
    margin: 1.5rem 0;
}

.table-scroll-indicator {
    display: flex;
    justify-content: center;
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .table-scroll-indicator {
        display: none;
    }
}

.table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
    border: 1px solid rgba(212, 160, 23, 0.3);
}

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

.info-table__caption {
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-align: left;
    padding: 12px 16px;
    caption-side: top;
}

.info-table thead tr {
    background: var(--secondary);
    border-bottom: 2px solid var(--primary);
}

.info-table th {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--foreground);
    padding: 14px 16px;
    text-align: left;
    white-space: nowrap;
}

.info-table td {
    font-family: "Manrope", sans-serif;
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    padding: 12px 16px;
    overflow-wrap: break-word;
}

.info-table tbody tr:nth-child(odd) {
    background: var(--card);
}

.info-table tbody tr:nth-child(even) {
    background: rgba(15, 30, 61, 0.6);
}

.info-table tbody tr:hover {
    background: rgba(212, 160, 23, 0.05);
}

.info-table__highlight {
    background: rgba(212, 160, 23, 0.1) !important;
    border-left: 3px solid var(--primary);
}

/* Golden numbers in table */
.info-table .gold {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.0625rem;
    background: linear-gradient(135deg, #d4a017, #f7d76b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.02em;
}

/* ============================================
   HERO SECTION - Full-bleed 3D hero area
   Three.js canvas backdrop, centered text
   ============================================ */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 80px;
    overflow: clip;
}

@media (min-width: 1024px) {
    .hero {
        min-height: 90vh;
        padding: 120px 32px 100px;
    }
}

.hero--compact {
    min-height: 50vh;
}

@media (min-width: 1024px) {
    .hero--compact {
        min-height: 50vh;
    }
}

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

.hero__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 30%, var(--background) 80%);
    z-index: 1;
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero__title {
    margin-bottom: 1.25rem;
}

.hero__subtitle {
    font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.65;
}

.hero__cta {
    margin-bottom: 1rem;
}

.hero__micro {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
}

.hero__mascot {
    max-width: 280px;
    margin: 0 auto 2rem;
}

@media (min-width: 768px) {
    .hero__mascot {
        max-width: 360px;
    }
}

/* ============================================
   SECTION VARIANTS - Content sections
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header p {
    color: var(--muted-foreground);
    font-size: 1.0625rem;
}

/* Golden hex divider */
.hex-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 3rem 0;
    color: var(--primary);
    font-size: 1.5rem;
}

.hex-divider::before,
.hex-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    max-width: 200px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* ============================================
   SEO CONTENT BLOCK - Long-form text styling
   Readable width, proper heading hierarchy
   ============================================ */
.seo-content {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .seo-content {
        padding: 0 32px;
    }
}

.seo-content h2 {
    margin-top: 3rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.seo-content h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.seo-content ul,
.seo-content ol {
    margin-bottom: 1.75rem;
    padding-left: 1.5rem;
}

.seo-content ul {
    list-style: none;
    padding-left: 0;
}

.seo-content ul li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
}

.seo-content ul li::before {
    content: '⬡';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 0.875rem;
}

.seo-content ol {
    list-style: decimal;
    padding-left: 1.5rem;
}

.seo-content ol li {
    margin-bottom: 0.75rem;
}

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

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

.seo-content blockquote {
    border-left: 3px solid var(--primary);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    background: rgba(212, 160, 23, 0.05);
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

.seo-content blockquote cite {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    font-style: normal;
}

/* ============================================
   ENGAGEMENT PATTERNS - Reusable UI blocks
   ============================================ */

/* TL;DR / Summary box */
.summary-box {
    background: rgba(212, 160, 23, 0.08);
    border: 1px solid rgba(212, 160, 23, 0.25);
    border-radius: 12px;
    padding: 24px;
    margin: 2rem 0;
}

.summary-box__title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.25rem;
    color: var(--primary);
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

/* Callout box */
.callout {
    border-left: 3px solid var(--primary);
    background: var(--card);
    padding: 20px 24px;
    border-radius: 0 12px 12px 0;
    margin: 2rem 0;
}

.callout--info {
    border-left-color: var(--accent);
}

.callout--warning {
    border-left-color: var(--destructive);
}

.callout__title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.125rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.callout--info .callout__title {
    color: var(--accent);
}

.callout--warning .callout__title {
    color: var(--destructive);
}

/* Stat highlight */
.stat-highlight {
    text-align: center;
    padding: 2rem;
    margin: 2rem 0;
}

.stat-highlight__number {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    background: linear-gradient(135deg, #d4a017 0%, #f7d76b 40%, #d4a017 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.stat-highlight__label {
    font-size: 1rem;
    color: var(--muted-foreground);
    margin-top: 0.5rem;
}

.stat-highlight__source {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    opacity: 0.7;
    margin-top: 0.25rem;
}

/* Pull quote */
.pull-quote {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    text-align: center;
    color: var(--foreground);
    padding: 2rem 1rem;
    margin: 3rem 0;
    position: relative;
}

.pull-quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary);
    position: absolute;
    top: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.5;
}

.pull-quote__attribution {
    display: block;
    font-family: "Manrope", sans-serif;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-top: 1rem;
    font-weight: 400;
}

/* Details/summary */
details {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin: 1rem 0;
    overflow: hidden;
}

details summary {
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 600;
    color: var(--foreground);
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
}

details summary::before {
    content: '▸';
    color: var(--primary);
    transition: transform 0.3s ease;
}

details[open] summary::before {
    transform: rotate(90deg);
}

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

details > div,
details > p {
    padding: 0 20px 16px;
    color: var(--muted-foreground);
}

/* ============================================
   CRO PATTERNS - Conversion optimization
   ============================================ */

/* Trust badges row */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 2rem 0;
}

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

.age-badge {
    background: #dc2626;
    color: #ffffff;
    border-color: #dc2626;
    font-weight: 700;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
}

/* Comparison table highlight */
.info-table__highlight td {
    font-weight: 600;
    color: var(--foreground);
}

/* Provider card */
.provider-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: border-color 0.3s ease;
}

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

.provider-card__logo {
    max-width: 200px;
    margin: 0 auto 1rem;
}

/* Step card */
.step-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

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

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

.step-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    position: relative;
}

.step-card__number {
    font-family: "Bebas Neue", sans-serif;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #d4a017, #f7d76b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.step-card__title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

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

/* ============================================
   ANIMATIONS - GSAP scroll reveals + pulse
   .animate-on-scroll starts hidden, .is-visible reveals
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.slide-left {
    transform: translateX(-50px);
}

.animate-on-scroll.slide-right {
    transform: translateX(50px);
}

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

/* Staggered reveal for grid children */
.game-grid .game-card.is-visible:nth-child(1) { transition-delay: 0ms; }
.game-grid .game-card.is-visible:nth-child(2) { transition-delay: 80ms; }
.game-grid .game-card.is-visible:nth-child(3) { transition-delay: 160ms; }
.game-grid .game-card.is-visible:nth-child(4) { transition-delay: 240ms; }
.game-grid .game-card.is-visible:nth-child(5) { transition-delay: 320ms; }
.game-grid .game-card.is-visible:nth-child(6) { transition-delay: 400ms; }

/* Live indicator pulse */
.live-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ef4444;
    border-radius: 50%;
    margin-right: 8px;
    animation: live-pulse 1.5s ease-in-out infinite;
}

@keyframes live-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.5); }
    50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
}

/* ============================================
   PAYMENT LOGOS - Footer and content
   ============================================ */
.payment-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.payment-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--muted-foreground);
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 6px 12px;
    white-space: nowrap;
}

/* ============================================
   FOOTER - Four-column, payment row, legal
   ============================================ */
.site-footer {
    background: var(--secondary);
    border-top: 1px solid var(--border);
    padding: 48px 0 24px;
}

.footer-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .footer-inner {
        padding: 0 32px;
    }
}

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

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

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

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

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.footer-logo .logo-text {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.25rem;
    background: linear-gradient(135deg, #d4a017, #f7d76b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

.footer-heading {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.125rem;
    color: var(--foreground);
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

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

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

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

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.footer-legal {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

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

.footer-copyright {
    font-size: 0.75rem;
    color: #a89b7e;
    opacity: 1;
}

/* ============================================
   SPIN PAGE - Centered loading/redirect
   ============================================ */
.spin-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: var(--background);
    text-align: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.spin-page__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(212, 160, 23, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.spin-page__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.spin-page__logo {
    width: 80px;
    height: 80px;
    border-radius: 16px;
}

.spin-page__spinner {
    width: 48px;
    height: 48px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.spin-page__text {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    color: var(--foreground);
    margin-bottom: 0;
}

.spin-page__subtext {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
}

.spin-page__age {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--destructive);
    color: #0b1020;
    font-weight: 700;
    font-size: 1rem;
}

/* No header offset when spin page uses no_chrome */
.spin-page {
    margin-top: -64px;
}

/* ============================================
   RESPONSIBLE GAMING - Subdued technical page
   ============================================ */
.rg-content {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .rg-content {
        padding: 0 32px;
    }
}

.rg-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
}

.rg-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

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

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

.warning-list {
    list-style: none;
    padding: 0;
}

.warning-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    color: var(--muted-foreground);
}

.warning-list li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.warning-sign-item::before {
    content: '⚠' !important;
}

.support-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 1rem;
}

.support-card__name {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.25rem;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.support-card__info {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* ============================================
   JACKPOT TICKER - Horizontal scrolling numbers
   ============================================ */
.jackpot-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

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

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

.jackpot-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.jackpot-card__title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.125rem;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.jackpot-card__amount {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    background: linear-gradient(135deg, #d4a017 0%, #f7d76b 40%, #d4a017 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

/* ============================================
   PROVIDERS - Side-by-side showcase
   ============================================ */
.providers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

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

/* ============================================
   BONUS CARDS - Welcome package steps
   ============================================ */
.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

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

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

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }

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

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

/* Code blocks */
pre, code, .code-block, [class*="code"] {
    max-width: 100%;
    overflow-x: auto;
}

pre code,
.code-block code {
    display: block;
    min-width: 0;
}

/* Table wrapper */
.table-wrapper,
[class*="table-"] {
    max-width: 100%;
    overflow-x: auto;
}

/* Long words */
p, li, td, th {
    overflow-wrap: break-word;
}

/* Form elements */
input, textarea, select {
    max-width: 100%;
}

/* Section decorative overflow */
section {
    overflow: clip;
}

/* ============================================
   STICKY MOBILE CTA - Bottom bar on conversion pages
   ============================================ */
.sticky-mobile-cta {
    display: none;
}

@media (max-width: 1023px) {
    .sticky-mobile-cta {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 900;
        padding: 12px 16px;
        background: rgba(11, 16, 32, 0.95);
        border-top: 1px solid var(--border);
        justify-content: center;
    }

    .sticky-mobile-cta .btn {
        width: 100%;
        max-width: 400px;
    }

    /* Add bottom padding to footer when sticky CTA is present */
    .has-sticky-cta .site-footer {
        padding-bottom: 80px;
    }
}

/* ============================================
   THREE.JS HERO - Canvas sizing
   ============================================ */
.three-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ============================================
   THEME TOGGLE - Hidden by default (dark-only site)
   ============================================ */
.theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--card);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.theme-toggle:hover {
    border-color: var(--primary);
    background: rgba(212, 160, 23, 0.1);
}

.theme-toggle__icon {
    font-size: 1.125rem;
    line-height: 1;
    position: absolute;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.theme-toggle__icon--light {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}

.theme-toggle__icon--dark {
    opacity: 1;
    transform: rotate(0) scale(1);
}

.dark .theme-toggle__icon--dark {
    opacity: 1;
    transform: rotate(0) scale(1);
}

.dark .theme-toggle__icon--light {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}

html:not(.dark) .theme-toggle__icon--dark {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}

html:not(.dark) .theme-toggle__icon--light {
    opacity: 1;
    transform: rotate(0) scale(1);
}

/* ============================================
   HOMEPAGE - Welcome Bonus Section
   ============================================ */
.welcome-bonus__layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .welcome-bonus__layout {
        flex-direction: row;
        gap: 3rem;
    }
}

.welcome-bonus__text {
    flex: 1;
}

.welcome-bonus__image {
    flex: 0 0 auto;
    max-width: 300px;
}

@media (min-width: 768px) {
    .welcome-bonus__image {
        max-width: 360px;
    }
}

@media (min-width: 1024px) {
    .welcome-bonus__image {
        max-width: 420px;
    }
}

.welcome-bonus__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 2rem 0;
}

.welcome-bonus__stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.welcome-bonus__stat .text-champagne {
    font-size: 0.875rem;
}

/* ============================================
   HOMEPAGE - Live Casino Teaser
   ============================================ */
.live-teaser__layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .live-teaser__layout {
        flex-direction: row;
        gap: 3rem;
    }
}

.live-teaser__image {
    flex: 0 0 auto;
    max-width: 300px;
}

@media (min-width: 768px) {
    .live-teaser__image {
        max-width: 380px;
    }
}

@media (min-width: 1024px) {
    .live-teaser__image {
        max-width: 460px;
    }
}

.live-teaser__text {
    flex: 1;
}

.live-teaser__features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem;
}

.live-teaser__features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    color: var(--muted-foreground);
    font-size: 1rem;
}

.live-teaser__features li:last-child {
    border-bottom: none;
}

/* ============================================
   HOMEPAGE - Mascot Section
   ============================================ */
.mascot-section__layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .mascot-section__layout {
        flex-direction: row;
        gap: 3rem;
        text-align: left;
    }
}

.mascot-section__image {
    flex: 0 0 auto;
    max-width: 250px;
}

@media (min-width: 768px) {
    .mascot-section__image {
        max-width: 320px;
    }
}

.mascot-section__text {
    flex: 1;
}

.mascot-quote {
    border-left: 3px solid var(--primary);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: rgba(212, 160, 23, 0.06);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    font-size: 1.0625rem;
    color: var(--foreground);
    line-height: 1.65;
}

/* ============================================
   HOMEPAGE - Trust Badges Grid
   ============================================ */
.trust-badges-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.trust-badge-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px 16px;
    width: 140px;
    text-align: center;
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    font-weight: 600;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.trust-badge-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.trust-badge-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

@media (min-width: 768px) {
    .trust-badge-card {
        width: 160px;
        padding: 24px 20px;
    }

    .trust-badge-card img {
        width: 100px;
        height: 100px;
    }
}

/* ============================================
   HOMEPAGE - Sapphire Section
   ============================================ */
.section--sapphire {
    background: var(--secondary);
}

/* ============================================
   SLOTS PAGE - Filter chips, volatility grid,
   jackpot hero card
   ============================================ */
.slot-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 2rem;
}

.slot-filter-btn {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 10px 24px;
    border-radius: 30px;
    border: 1px solid var(--border);
    background: var(--card);
    color: var(--muted-foreground);
    transition: all 0.3s ease;
    min-height: 44px;
    cursor: pointer;
}

.slot-filter-btn:hover {
    border-color: var(--primary);
    color: var(--foreground);
}

.slot-filter-btn.active {
    background: linear-gradient(135deg, #d4a017 0%, #f0c850 100%);
    color: var(--primary-foreground);
    border-color: #d4a017;
    box-shadow: 0 4px 16px rgba(212, 160, 23, 0.3);
}

/* Volatility grid */
.volatility-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

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

.volatility-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.volatility-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.volatility-card img {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.25rem;
    object-fit: contain;
}

.volatility-card h3 {
    margin-bottom: 0.75rem;
}

/* Jackpot hero card */
.jackpot-hero-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}

.jackpot-hero-card__image {
    width: 100%;
    aspect-ratio: 2 / 1;
    overflow: hidden;
}

.jackpot-hero-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jackpot-hero-card__content {
    padding: 24px 20px 32px;
}

@media (min-width: 768px) {
    .jackpot-hero-card__content {
        padding: 32px;
    }
}

.jackpot-hero-card__content h3 {
    font-size: clamp(1.5rem, 2vw + 0.5rem, 2rem);
}

/* Game card provider data attribute for filtering */
.game-card[data-provider] {
    transition: transform 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.32s ease,
                opacity 0.3s ease;
}

.game-card.filter-hidden {
    display: none;
}

/* ============================================
   BONUS PAGE - Step cards, no-deposit layout,
   reload cards, terms panel
   ============================================ */
.bonus-step-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    position: relative;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.bonus-step-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.bonus-step-card__number {
    position: absolute;
    top: -1px;
    right: -1px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #d4a017 0%, #f0c850 100%);
    color: var(--primary-foreground);
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 12px 0 12px;
    letter-spacing: 0.02em;
}

.bonus-step-card__icon {
    margin-bottom: 0.75rem;
}

.bonus-step-card__icon img {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    object-fit: contain;
}

.bonus-step-card__title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.25rem;
    color: var(--foreground);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.bonus-step-card__detail {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    margin-top: 0.5rem;
    margin-bottom: 0;
}

/* No-deposit layout */
.no-deposit-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .no-deposit-layout {
        flex-direction: row;
        gap: 3rem;
        text-align: left;
    }
}

.no-deposit-layout__image {
    flex: 0 0 auto;
    max-width: 280px;
}

@media (min-width: 768px) {
    .no-deposit-layout__image {
        max-width: 340px;
    }
}

@media (min-width: 1024px) {
    .no-deposit-layout__image {
        max-width: 400px;
    }
}

.no-deposit-layout__text {
    flex: 1;
}

.no-deposit-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem;
}

.no-deposit-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    color: var(--muted-foreground);
    font-size: 1rem;
}

.no-deposit-features li:last-child {
    border-bottom: none;
}

/* Reload cards grid */
.reload-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

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

.reload-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.reload-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.reload-card__icon {
    margin-bottom: 1rem;
}

.reload-card__icon img {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    object-fit: contain;
}

/* Terms panel */
.terms-panel {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px 20px;
}

@media (min-width: 768px) {
    .terms-panel {
        padding: 32px;
    }
}

.terms-list {
    list-style: none;
    padding: 0;
}

.terms-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--muted-foreground);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.terms-list li::before {
    content: '⬡';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 0.875rem;
}

/* ============================================
   LIVE CASINO PAGE - Studio layout, features list
   ============================================ */
.live-studio-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .live-studio-layout {
        flex-direction: row;
        gap: 3rem;
    }
}

.live-studio__image {
    flex: 0 0 auto;
    max-width: 100%;
}

@media (min-width: 768px) {
    .live-studio__image {
        max-width: 380px;
    }
}

@media (min-width: 1024px) {
    .live-studio__image {
        max-width: 460px;
    }
}

.live-studio__image img {
    border-radius: 12px;
    border: 1px solid var(--border);
}

.live-studio__text {
    flex: 1;
}

.live-studio__features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem;
}

.live-studio__features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    color: var(--muted-foreground);
    font-size: 1rem;
}

.live-studio__features li:last-child {
    border-bottom: none;
}

/* Game shows horizontal scroll wrapper */
.game-shows-scroll {
    width: 100%;
}

/* ============================================
   RESPONSIVE OVERFLOW SAFETY
   ============================================ */
@media (max-width: 767px) {
    .hero__content {
        padding: 0 4px;
    }

    h1 {
        word-break: break-word;
    }
}