/* ============================================
   YEP CASINO - Design System
   Dark luxury aesthetic fused with medieval
   adventure motifs. Mobile-first responsive.
   ============================================ */

/* ============================================
   OVERFLOW PREVENTION - Safety Net
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

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

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

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

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

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

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

section {
    overflow: clip;
}

/* ============================================
   RESET & BASE
   ============================================ */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

/* Inline links within text blocks - must be distinguishable */
p a,
li a,
td a,
.hero-subtitle a,
.mb-4 a,
.mt-2 a {
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    line-height: 1.2;
}

/* ============================================
   SKIP LINK - Accessibility
   ============================================ */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 10000;
    padding: 12px 24px;
    background: var(--primary);
    color: var(--primary-foreground);
    font-weight: 700;
    border-radius: 0 0 8px 8px;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 0;
}

/* ============================================
   TYPOGRAPHY - Cinzel Decorative + DM Sans
   H1: Cinzel Decorative 700, gold gradient
   H2: Cinzel 600
   H3: DM Sans 700
   Body: DM Sans 400
   ============================================ */
h1, .h1 {
    font-family: "Cinzel Decorative", "Cinzel", serif;
    font-weight: 700;
    font-size: clamp(1.75rem, 4vw + 0.5rem, 3rem);
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, #C8922A 0%, #D4A23B 40%, #F0D060 70%, #D4A23B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2, .h2 {
    font-family: "Cinzel", serif;
    font-weight: 600;
    font-size: clamp(1.375rem, 2.5vw + 0.5rem, 2.25rem);
    color: var(--primary);
    margin-bottom: 0.75em;
}

h3, .h3 {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: clamp(1.125rem, 1.5vw + 0.5rem, 1.5rem);
    color: var(--foreground);
    margin-bottom: 0.5em;
}

h4, .h4 {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: clamp(1rem, 1vw + 0.5rem, 1.25rem);
    color: var(--foreground);
    margin-bottom: 0.5em;
}

/* Gold gradient text utility */
.text-gold {
    background: linear-gradient(135deg, #C8922A 0%, #D4A23B 40%, #F0D060 70%, #D4A23B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Oversized number display for bonus amounts / stats */
.text-display {
    font-family: "Cinzel Decorative", "Cinzel", serif;
    font-weight: 900;
    font-size: clamp(2rem, 5vw + 1rem, 4rem);
    background: linear-gradient(135deg, #C8922A 0%, #D4A23B 40%, #F0D060 70%, #D4A23B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

/* ============================================
   LAYOUT - Container, section spacing
   Max-width 1160px for content areas.
   Section gaps: 56px mobile, 96px desktop.
   ============================================ */
.container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.section {
    padding: 56px 0;
}

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

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

.section--darker {
    background-color: #0A0B0F;
}

/* ============================================
   GOLDEN BORDER - Medieval manuscript motif
   Pulsing torchlight border animation
   ============================================ */
@keyframes torchlight-pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.golden-border {
    position: relative;
}

.golden-border::before,
.golden-border::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #C8922A 20%, #F0D060 50%, #C8922A 80%, transparent 100%);
    animation: torchlight-pulse 4s ease-in-out infinite;
}

.golden-border::before { top: 0; }
.golden-border::after { bottom: 0; }

/* ============================================
   HEADER - Fixed translucent dark header
   Gains full opacity on scroll (.header-scrolled).
   z-index: 1000
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(13, 15, 20, 0.85);
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.header-scrolled {
    background-color: rgba(13, 15, 20, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

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

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

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

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

.header-logo .logo-text {
    font-family: "Cinzel Decorative", serif;
    font-weight: 700;
    font-size: 1.25rem;
    background: linear-gradient(135deg, #C8922A, #F0D060, #D4A23B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

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

    .nav-link {
        display: flex;
        align-items: center;
        padding: 8px 16px;
        font-family: "DM Sans", sans-serif;
        font-weight: 500;
        font-size: 0.9375rem;
        color: #C8C0B8;
        text-decoration: none;
        border-radius: 6px;
        transition: color 0.2s ease, background-color 0.2s ease;
        white-space: nowrap;
    }

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

/* Header Action Buttons */
.header-actions {
    display: none;
}

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

.btn-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--primary);
    border: 1.5px solid var(--primary);
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.btn-login:hover {
    background-color: rgba(212, 162, 59, 0.1);
    color: var(--primary);
}

.btn-register {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 24px;
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--primary-foreground);
    background: linear-gradient(135deg, #C8922A, #D4A23B);
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-register:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(212, 162, 59, 0.35);
    color: var(--primary-foreground);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

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

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--foreground);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

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

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

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

/* Mobile Navigation Drawer */
@media (max-width: 1023px) {
    .main-nav {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 999;
        background-color: #0D0F14;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 20px;
    }

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

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

    .nav-link {
        display: flex;
        align-items: center;
        min-height: 52px;
        padding: 12px 16px;
        font-family: "DM Sans", sans-serif;
        font-weight: 500;
        font-size: 1.0625rem;
        color: var(--foreground);
        text-decoration: none;
        border-radius: 8px;
        transition: background-color 0.2s ease;
    }

    .nav-link:hover,
    .nav-link:active {
        background-color: rgba(212, 162, 59, 0.08);
        color: var(--primary);
    }

    /* Mobile CTA buttons inside drawer */
    .main-nav.is-open .nav-list::after {
        content: '';
        display: block;
        height: 16px;
    }

    .mobile-nav-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding-top: 20px;
        border-top: 1px solid var(--border);
        margin-top: 12px;
    }

    .mobile-nav-actions .btn-register {
        height: 56px;
        font-size: 1rem;
        justify-content: center;
    }

    .mobile-nav-actions .btn-login {
        height: 48px;
        font-size: 1rem;
        justify-content: center;
    }
}

/* ============================================
   BUTTONS - CTA, Gold, Ghost
   Primary CTA: solid gold with shimmer hover
   ============================================ */
@keyframes shimmer {
    0% { transform: translateX(-100%) skewX(-15deg); }
    100% { transform: translateX(200%) skewX(-15deg); }
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 10px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 56px;
}

.btn-cta--gold {
    background: linear-gradient(135deg, #C8922A 0%, #D4A23B 50%, #E8C44A 100%);
    color: #0D0F14;
    box-shadow: 0 4px 20px rgba(212, 162, 59, 0.25);
}

.btn-cta--gold::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%) skewX(-15deg);
}

.btn-cta--gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(212, 162, 59, 0.4);
    color: #0D0F14;
}

.btn-cta--gold:hover::after {
    animation: shimmer 0.6s ease forwards;
}

.btn-cta--ghost {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-cta--ghost:hover {
    background: rgba(212, 162, 59, 0.1);
    transform: translateY(-2px);
    color: var(--primary);
}

/* Muted button for technical pages */
.btn-cta--muted {
    background: var(--muted);
    color: var(--foreground);
}

.btn-cta--muted:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    color: var(--foreground);
}

/* ============================================
   HERO SECTIONS - Full-bleed cinematic headers
   Dark background with atmospheric imagery.
   ============================================ */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 480px;
    padding: 100px 20px 56px;
    text-align: center;
    background-color: #080A0E;
    overflow: clip;
}

@media (min-width: 768px) {
    .hero {
        min-height: 560px;
        padding: 120px 32px 80px;
    }
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 15, 20, 0.4) 0%, rgba(13, 15, 20, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    margin-bottom: 16px;
}

.hero-subtitle {
    font-family: "DM Sans", sans-serif;
    font-size: clamp(1rem, 2vw + 0.25rem, 1.25rem);
    color: #C8C0B8;
    margin-bottom: 28px;
    line-height: 1.5;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
    margin-top: 20px;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Subdued hero for technical pages */
.hero--subdued {
    min-height: 320px;
    background-color: #0A0C10;
}

@media (min-width: 768px) {
    .hero--subdued {
        min-height: 380px;
    }
}

.hero--subdued .hero-bg img {
    opacity: 0.15;
}

/* ============================================
   GAME CARD GRID - Responsive game thumbnails
   1 col → 2 col (480px) → 3 col (768px) → 4 col (1024px)
   ============================================ */
.game-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 16px;
}

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

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

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

/* Variant: 3-col max */
.game-grid[data-columns="3"] {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 480px) {
    .game-grid[data-columns="3"] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .game-grid[data-columns="3"] {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.game-card {
    display: block;
    text-decoration: none;
    background: var(--card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(212, 162, 59, 0.25);
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
    animation: torchlight-pulse 4s ease-in-out infinite;
}

.game-card:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 32px rgba(212, 162, 59, 0.2);
}

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

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

.game-card-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 15, 20, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.game-card-info {
    padding: 12px 14px;
}

.game-card-title {
    display: block;
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--card-foreground);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-card-provider {
    display: block;
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    margin-top: 2px;
}

/* ============================================
   BONUS CARDS - Welcome package tiers
   Dark burgundy cards with gold borders
   ============================================ */
.bonus-cards-row {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 20px;
}

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

/* For 2-column bonus layouts */
.bonus-cards-row--two {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

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

.bonus-card {
    background: linear-gradient(145deg, #1A0A14 0%, #2A1020 50%, #1A0A14 100%);
    border: 1px solid rgba(212, 162, 59, 0.35);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .bonus-card {
        padding: 32px;
    }
}

.bonus-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(200, 146, 42, 0.6), rgba(240, 208, 96, 0.3), rgba(200, 146, 42, 0.6));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    animation: torchlight-pulse 4s ease-in-out infinite;
}

.bonus-card--featured {
    border-color: rgba(212, 162, 59, 0.5);
    background: linear-gradient(145deg, #1E0C18 0%, #351428 50%, #1E0C18 100%);
}

.bonus-card-tier {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 0.8125rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.bonus-card-headline {
    font-family: "Cinzel Decorative", serif;
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3.5rem);
    background: linear-gradient(135deg, #C8922A 0%, #D4A23B 30%, #F0D060 60%, #D4A23B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 8px;
}

.bonus-card-amount {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--foreground);
    margin-bottom: 8px;
}

.bonus-card-spins {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.bonus-card-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.bonus-card-slot {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(42, 45, 56, 0.6);
    border-radius: 6px;
    font-size: 0.8125rem;
    color: var(--muted-foreground);
}

.bonus-card-wagering {
    font-size: 0.9375rem;
    color: var(--foreground);
}

.bonus-card-wagering strong {
    color: var(--accent);
}

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

.bonus-card-cta {
    width: 100%;
}

/* ============================================
   FAQ ACCORDION - Expandable Q&A
   FAQPage schema-ready, gold accents
   ============================================ */
.faq-section {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.faq-heading {
    text-align: center;
    margin-bottom: 32px;
}

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

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

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 0;
    min-height: 52px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 1.0625rem;
    color: var(--foreground);
    text-align: left;
    gap: 16px;
    transition: color 0.2s ease;
    border-left: 3px solid transparent;
    padding-left: 12px;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question[aria-expanded="true"] {
    border-left-color: var(--primary);
    color: var(--primary);
}

.faq-chevron {
    flex-shrink: 0;
    color: var(--primary);
    transition: transform 0.35s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer-inner {
    padding: 0 12px 20px 16px;
    font-size: 1.0625rem;
    line-height: 1.6;
    color: #C8C0B8;
}

.faq-answer-inner p {
    margin: 0 0 12px;
}

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

.faq-answer-inner a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ============================================
   CTA BANNER - Full-bleed call to action
   Dark stone texture with amber glow
   ============================================ */
.cta-banner {
    position: relative;
    padding: 40px 20px;
    text-align: center;
    background:
        radial-gradient(ellipse at center, rgba(200, 146, 42, 0.08) 0%, transparent 70%),
        linear-gradient(180deg, #0D0F14 0%, #12141C 50%, #0D0F14 100%);
}

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

.cta-banner-border {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #C8922A 20%, #F0D060 50%, #C8922A 80%, transparent 100%);
    animation: torchlight-pulse 4s ease-in-out infinite;
}

.cta-banner-border--top { top: 0; }
.cta-banner-border--bottom { bottom: 0; }

.cta-banner-inner {
    max-width: 720px;
    margin: 0 auto;
}

.cta-banner-headline {
    font-family: "Cinzel Decorative", serif;
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
    background: linear-gradient(135deg, #C8922A 0%, #D4A23B 40%, #F0D060 70%, #D4A23B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.cta-banner-text {
    font-size: 1.0625rem;
    color: #C8C0B8;
    margin-bottom: 24px;
    line-height: 1.6;
}

.cta-banner-btn {
    margin-bottom: 16px;
}

.cta-banner-trust {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin: 0;
}

/* ============================================
   TRUST STATS BAR - Horizontal statistics row
   Gold numbers + muted labels
   ============================================ */
.trust-bar {
    background-color: var(--card);
    border-top: 1px solid rgba(212, 162, 59, 0.15);
    border-bottom: 1px solid rgba(212, 162, 59, 0.15);
    padding: 32px 20px;
}

@media (min-width: 1024px) {
    .trust-bar {
        padding: 40px 32px;
    }
}

.trust-bar-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    max-width: 1160px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .trust-bar-inner {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0;
    }
}

.trust-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
}

@media (min-width: 768px) {
    .trust-bar-item {
        flex: 1;
        padding: 0 20px;
    }
}

.trust-bar-icon {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.trust-bar-number {
    font-family: "Cinzel Decorative", serif;
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    background: linear-gradient(135deg, #C8922A, #F0D060, #D4A23B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

/* Platinum variant for VIP / live casino pages */
.trust-bar--platinum .trust-bar-number {
    background: linear-gradient(135deg, #A0A0B0, #E0E0E8, #B8B8C8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-bar-label {
    font-family: "DM Sans", sans-serif;
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    line-height: 1.3;
}

.trust-bar-divider {
    display: none;
}

@media (min-width: 768px) {
    .trust-bar-divider {
        display: block;
        width: 1px;
        height: 48px;
        background-color: var(--border);
        flex-shrink: 0;
    }
}

/* ============================================
   PAYMENT METHODS ROW - Logo strip
   Silver monochrome → color on hover
   ============================================ */
.payment-row {
    padding: 20px 0;
}

.payment-row-heading {
    text-align: center;
    margin-bottom: 20px;
}

.payment-row-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 1024px) {
    .payment-row-logos {
        padding: 0 32px;
    }
}

.payment-row-logos--scroll {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 8px;
}

.payment-row-logos--scroll::-webkit-scrollbar {
    display: none;
}

@media (min-width: 768px) {
    .payment-row-logos--scroll {
        flex-wrap: wrap;
        justify-content: center;
        overflow-x: visible;
    }
}

.payment-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 16px;
    background: var(--card);
    border-radius: 8px;
    min-width: 72px;
    flex-shrink: 0;
    transition: background-color 0.2s ease, transform 0.2s ease;
    opacity: 0.7;
    filter: saturate(0.3);
}

.payment-logo:hover {
    opacity: 1;
    filter: saturate(1);
    transform: translateY(-2px);
    background-color: var(--input);
}

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

.payment-logo-name {
    font-size: 0.6875rem;
    color: #B0B0B8;
    white-space: nowrap;
}

/* ============================================
   SEO CONTENT - Long-form text styling
   Comfortable reading within 1160px.
   ============================================ */
.seo-content {
    max-width: 1160px;
    margin: 0 auto;
    padding: 56px 20px;
}

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

.seo-content h2 {
    margin-top: 2em;
    margin-bottom: 0.75em;
}

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

.seo-content h3 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

.seo-content p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--foreground);
    margin: 0 0 1.25em;
    max-width: 75ch;
}

.seo-content ul,
.seo-content ol {
    padding-left: 1.5em;
    margin: 0 0 1.25em;
    max-width: 75ch;
}

.seo-content ul {
    list-style: disc;
}

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

.seo-content li {
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 0.5em;
    color: var(--foreground);
}

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

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

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

.seo-content blockquote {
    border-left: 4px solid var(--primary);
    margin: 1.5em 0;
    padding: 16px 24px;
    background: rgba(212, 162, 59, 0.05);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #C8C0B8;
}

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

/* ============================================
   TABLES - Comparison tables with dark styling
   Horizontal scroll on mobile.
   ============================================ */
.table-wrapper {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 1.5em 0;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.seo-content table,
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.seo-content thead,
.comparison-table thead {
    background: linear-gradient(135deg, rgba(200, 146, 42, 0.15), rgba(200, 146, 42, 0.08));
}

.seo-content th,
.comparison-table th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 700;
    color: var(--primary);
    border-bottom: 2px solid rgba(212, 162, 59, 0.3);
    white-space: nowrap;
}

.seo-content td,
.comparison-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--foreground);
}

.seo-content tbody tr:nth-child(even),
.comparison-table tbody tr:nth-child(even) {
    background-color: rgba(22, 24, 33, 0.5);
}

/* Highlighted recommended column */
.comparison-table .recommended {
    background-color: rgba(212, 162, 59, 0.06);
    border-left: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
}

/* ============================================
   CALLOUT / HIGHLIGHT BOXES - Tips, warnings
   ============================================ */
.callout {
    padding: 20px 24px;
    border-radius: 12px;
    margin: 1.5em 0;
    font-size: 1rem;
    line-height: 1.6;
}

.callout--tip {
    background: rgba(34, 168, 100, 0.08);
    border-left: 4px solid var(--accent);
    color: var(--foreground);
}

.callout--warning {
    background: rgba(74, 21, 40, 0.15);
    border-left: 4px solid var(--secondary);
    color: var(--foreground);
}

.callout--info {
    background: rgba(212, 162, 59, 0.06);
    border-left: 4px solid var(--primary);
    color: var(--foreground);
}

.callout-title {
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ============================================
   TL;DR / SUMMARY BOX - Key takeaways
   ============================================ */
.summary-box {
    background: var(--card);
    border: 1px solid var(--primary);
    border-radius: 12px;
    padding: 24px;
    margin: 1.5em 0;
}

.summary-box-title {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.summary-box ul {
    list-style: disc;
    padding-left: 1.25em;
    margin: 0;
}

.summary-box li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 8px;
    color: var(--foreground);
}

/* ============================================
   STAT HIGHLIGHT - Large number display
   ============================================ */
.stat-highlight {
    text-align: center;
    padding: 32px 24px;
    background: var(--card);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.stat-highlight-number {
    font-family: "Cinzel Decorative", serif;
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3.5rem);
    background: linear-gradient(135deg, #C8922A, #F0D060, #D4A23B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 8px;
}

.stat-highlight-label {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
}

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

/* ============================================
   PULL QUOTE - Oversized quote
   ============================================ */
.pull-quote {
    padding: 32px 24px;
    margin: 2em 0;
    text-align: center;
    position: relative;
}

.pull-quote::before {
    content: '"';
    font-family: "Cinzel Decorative", serif;
    font-size: 4rem;
    color: rgba(212, 162, 59, 0.2);
    line-height: 1;
    display: block;
}

.pull-quote-text {
    font-family: "Cinzel", serif;
    font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
    font-weight: 600;
    color: var(--primary);
    line-height: 1.4;
    max-width: 720px;
    margin: 0 auto 12px;
}

.pull-quote-attribution {
    font-family: "DM Sans", sans-serif;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* ============================================
   DETAILS/SUMMARY - Styled expandable
   ============================================ */
.seo-content details,
details.expandable {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin: 1.5em 0;
    overflow: hidden;
}

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

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

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

.seo-content details[open] summary::after,
details.expandable[open] summary::after {
    content: '−';
}

.seo-content details > :not(summary),
details.expandable > :not(summary) {
    padding: 0 20px 16px;
}

/* ============================================
   VIP TIERS - Ladder progression
   ============================================ */
.vip-ladder {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .vip-ladder {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
}

.vip-tier {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--card);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: border-color 0.2s ease, transform 0.2s ease;
}

@media (min-width: 768px) {
    .vip-tier {
        flex-direction: column;
        text-align: center;
        width: calc(25% - 12px);
        min-width: 120px;
    }
}

.vip-tier:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.vip-tier-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
}

.vip-tier-name {
    font-family: "Cinzel", serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary);
}

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

/* ============================================
   INTERNAL NAV CARDS - Page navigation grid
   ============================================ */
.nav-cards {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 16px;
}

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

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

.nav-card {
    display: block;
    padding: 24px 20px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-decoration: none;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(212, 162, 59, 0.12);
}

.nav-card-title {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 1.0625rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.nav-card-desc {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}

/* ============================================
   COMPARISON SECTION - GGL vs Yep Casino
   Two-column pros/cons layout
   ============================================ */
.comparison-split {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 20px;
}

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

.comparison-col {
    padding: 24px 20px;
    border-radius: 12px;
}

.comparison-col--negative {
    background: rgba(74, 21, 40, 0.15);
    border: 1px solid rgba(74, 21, 40, 0.3);
}

.comparison-col--positive {
    background: rgba(212, 162, 59, 0.06);
    border: 1px solid rgba(212, 162, 59, 0.3);
}

.comparison-col h3 {
    margin-bottom: 16px;
}

.comparison-col ul {
    list-style: none;
    padding: 0;
}

.comparison-col li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    font-size: 0.9375rem;
    color: var(--foreground);
}

.comparison-col--negative li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--destructive);
    font-weight: 700;
}

.comparison-col--positive li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* ============================================
   CATEGORY CARDS - Slot categories, features
   ============================================ */
.category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

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

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

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

.category-card-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
}

.category-card-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--foreground);
    margin-bottom: 4px;
}

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

/* ============================================
   TOOLS OVERVIEW - Responsible gambling tools
   ============================================ */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 12px;
}

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

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

.tool-card-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 168, 100, 0.08);
    border-radius: 8px;
}

.tool-card-content h4 {
    font-size: 0.9375rem;
    margin-bottom: 4px;
}

.tool-card-content p {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    margin: 0;
    line-height: 1.4;
}

/* ============================================
   PROVIDER CARDS - Live casino / slot providers
   ============================================ */
.provider-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 16px;
}

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

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

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

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

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

@media (min-width: 768px) {
    .provider-card--featured {
        grid-column: span 2;
    }
}

.provider-card-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--foreground);
    margin-bottom: 8px;
}

.provider-card-games {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    line-height: 1.4;
}

/* ============================================
   STEPS - Numbered step process
   ============================================ */
.steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .steps--horizontal {
        flex-direction: row;
        max-width: 100%;
    }
}

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

@media (min-width: 768px) {
    .steps--horizontal .step {
        flex: 1;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C8922A, #D4A23B);
    color: #0D0F14;
    font-family: "Cinzel Decorative", serif;
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.step-content p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin: 0;
    line-height: 1.4;
}

/* ============================================
   SCROLL ANIMATIONS - Fade-in-up on scroll
   Elements start hidden, revealed by JS
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

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

/* Staggered animation for grid items */
.game-grid .animate-on-scroll:nth-child(1) { transition-delay: 0ms; }
.game-grid .animate-on-scroll:nth-child(2) { transition-delay: 100ms; }
.game-grid .animate-on-scroll:nth-child(3) { transition-delay: 200ms; }
.game-grid .animate-on-scroll:nth-child(4) { transition-delay: 300ms; }
.game-grid .animate-on-scroll:nth-child(5) { transition-delay: 400ms; }
.game-grid .animate-on-scroll:nth-child(6) { transition-delay: 500ms; }
.game-grid .animate-on-scroll:nth-child(7) { transition-delay: 600ms; }
.game-grid .animate-on-scroll:nth-child(8) { transition-delay: 700ms; }
.game-grid .animate-on-scroll:nth-child(9) { transition-delay: 800ms; }
.game-grid .animate-on-scroll:nth-child(10) { transition-delay: 900ms; }
.game-grid .animate-on-scroll:nth-child(11) { transition-delay: 1000ms; }
.game-grid .animate-on-scroll:nth-child(12) { transition-delay: 1100ms; }

/* ============================================
   FOOTER - Four-column layout on desktop
   Stacked on mobile with scrollable payments
   ============================================ */
.site-footer {
    background-color: #080A0E;
    border-top: 1px solid var(--border);
    padding-top: 48px;
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 32px;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

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

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

/* Footer Brand Column */
.footer-brand {
    max-width: 320px;
}

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

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

.footer-logo-text {
    font-family: "Cinzel Decorative", serif;
    font-weight: 700;
    font-size: 1.125rem;
    background: linear-gradient(135deg, #C8922A, #F0D060, #D4A23B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Footer Links */
.footer-heading {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--foreground);
    margin-bottom: 16px;
}

.footer-links li {
    margin-bottom: 8px;
}

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

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

/* Footer Payment Icons */
.footer-payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.payment-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 28px;
    background: var(--card);
    border-radius: 4px;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Footer Badges */
.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.badge-18plus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--destructive);
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--destructive);
}

.badge-licence,
.badge-ssl {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

/* Footer Bottom Bar */
.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px;
    text-align: center;
    max-width: 1160px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    margin: 0 0 4px;
    line-height: 1.5;
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    opacity: 0.8;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

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

.hidden { display: none; }

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

/* ============================================
   SOCIAL PROOF / REVIEW CARDS
   ============================================ */
.review-cards {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 16px;
}

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

.review-card {
    padding: 20px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.review-card-stars {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 8px;
}

.review-card-text {
    font-size: 0.9375rem;
    color: var(--foreground);
    line-height: 1.5;
    margin-bottom: 12px;
}

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

/* ============================================
   OPERATOR / LEGAL INFO CARDS
   ============================================ */
.legal-card {
    padding: 24px;
    background: var(--card);
    border: 1px solid var(--primary);
    border-radius: 12px;
    margin: 1.5em 0;
}

.legal-card h3 {
    color: var(--primary);
    margin-bottom: 12px;
}

.legal-card p {
    font-size: 0.9375rem;
    color: var(--foreground);
    margin: 0 0 8px;
    line-height: 1.5;
}

.legal-card p:last-child {
    margin-bottom: 0;
}

/* ============================================
   BONUS PAGE - Hero and specific sections
   ============================================ */
.hero--bonus {
    min-height: 520px;
}

@media (min-width: 768px) {
    .hero--bonus {
        min-height: 600px;
    }
}

@media (min-width: 1024px) {
    .hero--bonus {
        min-height: 680px;
    }
}

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

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

/* ============================================
   SPIELAUTOMATEN PAGE - Slots hero & sections
   ============================================ */
.hero--slots {
    min-height: 520px;
}

@media (min-width: 768px) {
    .hero--slots {
        min-height: 600px;
    }
}

@media (min-width: 1024px) {
    .hero--slots {
        min-height: 680px;
    }
}

/* Demo Mode Split Layout */
.demo-mode-split {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

@media (min-width: 768px) {
    .demo-mode-split {
        flex-direction: row;
        gap: 48px;
    }
}

.demo-mode-content {
    flex: 1;
}

.demo-mode-content h2 {
    margin-bottom: 16px;
}

.demo-mode-visual {
    width: 100%;
    flex-shrink: 0;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(212, 162, 59, 0.2);
}

@media (min-width: 768px) {
    .demo-mode-visual {
        width: 45%;
    }
}

.demo-mode-img {
    width: 100%;
    height: auto;
    display: block;
}

.demo-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    background: linear-gradient(135deg, #22A864, #1A7A4E);
    color: #fff;
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: 8px;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 16px rgba(34, 168, 100, 0.3);
}

/* Demo Feature List */
.demo-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.demo-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--foreground);
}

.demo-feature-icon {
    flex-shrink: 0;
    font-size: 1.125rem;
}

/* ============================================
   LIVE CASINO PAGE - Hero & VIP sections
   ============================================ */
.hero--live {
    min-height: 520px;
}

@media (min-width: 768px) {
    .hero--live {
        min-height: 600px;
    }
}

@media (min-width: 1024px) {
    .hero--live {
        min-height: 680px;
    }
}

/* ============================================
   HOMEPAGE - Hero mascot and specific sections
   ============================================ */
.hero--home {
    min-height: 540px;
}

@media (min-width: 768px) {
    .hero--home {
        min-height: 620px;
    }
}

@media (min-width: 1024px) {
    .hero--home {
        min-height: 700px;
    }
}

.hero-mascot {
    display: block;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    border: 2px solid rgba(212, 162, 59, 0.5);
    box-shadow: 0 0 32px rgba(212, 162, 59, 0.3);
}

@media (min-width: 768px) {
    .hero-mascot {
        width: 100px;
        height: 100px;
        margin-bottom: 24px;
    }
}

/* No Deposit Bonus Showcase */
.no-deposit-showcase {
    max-width: 520px;
    margin: 0 auto;
}

.no-deposit-card {
    border-color: rgba(34, 168, 100, 0.4);
}

.no-deposit-card::before {
    background: linear-gradient(135deg, rgba(34, 168, 100, 0.5), rgba(212, 162, 59, 0.3), rgba(34, 168, 100, 0.5));
}

/* Live Casino Teaser */
.live-casino-teaser {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

@media (min-width: 768px) {
    .live-casino-teaser {
        flex-direction: row;
        gap: 48px;
    }
}

.live-casino-teaser__image {
    width: 100%;
    flex-shrink: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(212, 162, 59, 0.2);
}

@media (min-width: 768px) {
    .live-casino-teaser__image {
        width: 45%;
    }
}

.live-casino-teaser__img {
    width: 100%;
    height: auto;
    display: block;
}

.live-casino-teaser__content {
    flex: 1;
}

.live-casino-teaser__content h2 {
    margin-bottom: 16px;
}

.live-casino-teaser__content p {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: #C8C0B8;
    margin-bottom: 20px;
}

/* Live Game Mini Cards */
.live-game-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.live-game-mini {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.875rem;
    color: var(--foreground);
}

.live-game-mini__icon {
    font-size: 1.125rem;
}

.live-game-mini__name {
    font-weight: 600;
    white-space: nowrap;
}

/* Sportsbook Teaser */
.sportsbook-teaser {
    text-align: center;
    padding: 40px 24px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.sportsbook-teaser__icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 2rem;
    margin-bottom: 20px;
}

.sportsbook-teaser h2 {
    margin-bottom: 12px;
}

.sportsbook-teaser p {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: #C8C0B8;
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   ZAHLUNGSMETHODEN PAGE - Payment cards & crypto
   ============================================ */
.hero--payments {
    min-height: 520px;
}

@media (min-width: 768px) {
    .hero--payments {
        min-height: 600px;
    }
}

@media (min-width: 1024px) {
    .hero--payments {
        min-height: 680px;
    }
}

/* Payment Detail Cards Grid */
.payment-detail-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 16px;
}

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

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

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

.payment-detail-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    transition: border-color 0.3s ease, transform 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.payment-detail-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.payment-detail-card--highlight {
    border-color: rgba(212, 162, 59, 0.4);
    background: linear-gradient(145deg, var(--card) 0%, rgba(212, 162, 59, 0.04) 100%);
}

.payment-detail-icon {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 4px;
}

.payment-detail-name {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--foreground);
    margin: 0;
}

.payment-detail-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    line-height: 1.4;
}

.payment-detail-info strong {
    color: var(--foreground);
}

.payment-detail-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 4px;
}

.payment-detail-badge--both {
    background: rgba(34, 168, 100, 0.1);
    color: var(--accent);
    border: 1px solid rgba(34, 168, 100, 0.3);
}

.payment-detail-badge--deposit {
    background: rgba(212, 162, 59, 0.1);
    color: var(--primary);
    border: 1px solid rgba(212, 162, 59, 0.3);
}

/* Crypto Grid */
.crypto-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}

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

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

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

.crypto-card-icon {
    display: block;
    font-size: 2rem;
    margin-bottom: 8px;
}

.crypto-card-name {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--foreground);
    margin: 0 0 8px;
}

.crypto-card-detail {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    margin: 0 0 4px;
    line-height: 1.4;
}

.crypto-card-speed {
    font-size: 0.8125rem;
    color: var(--accent);
    margin: 0;
    font-weight: 600;
}

/* Crypto Benefits Row */
.crypto-benefits {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 20px;
}

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

.crypto-benefit {
    text-align: center;
    padding: 24px 16px;
    background: rgba(34, 168, 100, 0.04);
    border: 1px solid rgba(34, 168, 100, 0.15);
    border-radius: 12px;
}

.crypto-benefit-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 12px;
}

.crypto-benefit h3 {
    font-size: 1.0625rem;
    margin-bottom: 8px;
    color: var(--foreground);
}

.crypto-benefit p {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.5;
    margin: 0;
}

/* Withdrawal Info Cards */
.withdrawal-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .withdrawal-cards {
        flex-direction: row;
    }
}

/* Currency Tags Grid */
.currency-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
}

.currency-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.9375rem;
    color: var(--foreground);
    font-weight: 500;
    transition: border-color 0.2s ease;
}

.currency-tag:hover {
    border-color: var(--primary);
}

/* ============================================
   VERANTWORTUNGSVOLLES SPIELEN PAGE
   Subdued, respectful design - muted tones
   ============================================ */
.hero--responsible {
    min-height: 360px;
}

@media (min-width: 768px) {
    .hero--responsible {
        min-height: 420px;
    }
}

.hero--responsible .hero-bg img {
    opacity: 0.15;
}

.hero-title--responsible {
    font-family: "Cinzel Decorative", "Cinzel", serif;
    font-weight: 700;
    font-size: clamp(1.5rem, 3.5vw + 0.5rem, 2.5rem);
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, #A0A0B0 0%, #E0E0E8 40%, #C8C8D0 70%, #A0A0B0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.responsible-badge-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 3px solid var(--destructive);
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--destructive);
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .responsible-badge-hero {
        width: 64px;
        height: 64px;
        font-size: 1.375rem;
        margin-bottom: 24px;
    }
}

/* Responsible Content Sections */
.responsible-content {
    max-width: 800px;
    margin: 0 auto;
}

.responsible-content h2 {
    margin-bottom: 16px;
}

.responsible-content p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--foreground);
    margin: 0 0 1.25em;
}

.responsible-content a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}

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

/* Warning Signs Panel */
.warning-signs-panel {
    background: rgba(239, 68, 68, 0.06);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 12px;
    padding: 24px 24px 24px 20px;
    margin: 20px 0 24px;
}

.warning-signs-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.warning-signs-list li {
    position: relative;
    padding-left: 28px;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--foreground);
}

.warning-signs-list li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.875rem;
}

/* Help Resources Grid */
.help-resources-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
}

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

.help-resource-card {
    padding: 24px 20px;
    background: var(--card);
    border: 1px solid rgba(34, 168, 100, 0.2);
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.help-resource-icon {
    font-size: 2rem;
    margin-bottom: 4px;
}

.help-resource-card h3 {
    font-size: 1rem;
    color: var(--foreground);
    margin-bottom: 4px;
}

.help-resource-card p {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.5;
    margin: 0 0 12px;
    flex: 1;
}

.help-resource-link {
    display: inline-block;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s ease;
}

.help-resource-link:hover {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Age Verification Block */
.age-verification-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

@media (min-width: 768px) {
    .age-verification-block {
        flex-direction: row;
        align-items: flex-start;
        gap: 32px;
    }
}

.age-badge-large {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid var(--destructive);
    font-family: "DM Sans", sans-serif;
    font-weight: 900;
    font-size: 1.75rem;
    color: var(--destructive);
    flex-shrink: 0;
}

.age-verification-text {
    flex: 1;
}

.age-verification-text p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--foreground);
    margin: 0 0 1em;
}

.age-verification-text p:last-child {
    margin-bottom: 0;
}

.age-verification-text a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}

.age-verification-text a:hover {
    color: var(--accent);
}

/* ============================================
   PAGE-SPECIFIC BODY OFFSET - Header height
   ============================================ */
body {
    padding-top: 64px;
}

@media (min-width: 1024px) {
    body {
        padding-top: 72px;
    }
}