/* ============================================================
   YEP CASINO - Design System
   Enchanted Forest Magical Realism
   Fonts: Cinzel Decorative (display) + Nunito Sans (body)
   Dark theme by default (always-on)
   ============================================================ */

/* ============================================
   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;
}

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

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

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

body {
    margin: 0;
    padding: 0;
    font-family: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, 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,
a:focus-visible {
    color: var(--secondary);
}

/* Links inside text blocks must be distinguishable */
p a,
li a,
td a,
.seo-content a,
.faq-answer a,
.callout a,
.tldr-box a,
.footer-responsible-text a,
.no-deposit-card__text a {
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
}

p a:hover,
li a:hover,
td a:hover,
.seo-content a:hover,
.faq-answer a:hover,
.callout a:hover,
.tldr-box a:hover {
    text-decoration-thickness: 2px;
}

ul, ol {
    padding-left: 1.25em;
}

img {
    display: block;
}

/* ============================================
   TYPOGRAPHY - Cinzel Decorative + Nunito Sans
   Scale: Mobile-first with desktop overrides
   ============================================ */

/* Display / Hero headlines - Cinzel Decorative */
.heading-display,
h1 {
    font-family: "Cinzel Decorative", "Georgia", serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: 0.03em;
    color: var(--foreground);
    margin: 0 0 16px;
}

/* Section headings - Cinzel Decorative */
.section-heading,
h2 {
    font-family: "Cinzel Decorative", "Georgia", serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.25;
    letter-spacing: 0.03em;
    color: var(--foreground);
    margin: 0 0 16px;
}

/* Subsection headings */
h3 {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
    color: var(--foreground);
    margin: 0 0 12px;
}

h4 {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.3;
    color: var(--foreground);
    margin: 0 0 8px;
}

/* Body text */
.body-text,
p {
    font-family: "Nunito Sans", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
    margin: 0 0 24px;
}

/* Gold gradient text for bonus values and accent headings */
.gold-gradient {
    background: linear-gradient(135deg, #f6d365 0%, #d4a017 40%, #f0c27f 70%, #d4a017 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

/* Large bonus value typography */
.bonus-value-display {
    font-family: "Cinzel Decorative", serif;
    font-weight: 900;
    font-size: 36px;
    line-height: 1.1;
    background: linear-gradient(135deg, #f6d365 0%, #d4a017 40%, #f0c27f 70%, #d4a017 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 8px rgba(212, 160, 23, 0.3));
}

/* Desktop typography overrides */
@media (min-width: 768px) {
    h1 {
        font-size: 36px;
    }
    h2 {
        font-size: 28px;
    }
    h3 {
        font-size: 22px;
    }
    p {
        font-size: 17px;
    }
    .bonus-value-display {
        font-size: 48px;
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: 44px;
    }
    h2 {
        font-size: 32px;
    }
    h3 {
        font-size: 24px;
    }
    .bonus-value-display {
        font-size: 56px;
    }
}

/* ============================================
   LAYOUT CONTAINERS
   Max-width 1180px with responsive padding
   ============================================ */
.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 16px;
}

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

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

/* Full-bleed sections extend to edges */
.full-bleed {
    width: 100%;
}

/* Section spacing: 48px mobile, 80px desktop */
.section-spacing {
    padding: 48px 0;
}

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

/* ============================================
   SITE HEADER - Fixed sticky with dark backdrop
   z-index: 1000, transitions on scroll
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 26, 21, 0.85);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
    background: rgba(15, 26, 21, 0.97);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.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: 768px) {
    .header-inner {
        padding: 0 24px;
    }
}

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

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

.logo-text {
    font-family: "Cinzel Decorative", serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--foreground);
    background: linear-gradient(135deg, #f6d365, #d4a017);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 768px) {
    .logo-img {
        width: 48px;
        height: 48px;
    }
    .logo-text {
        font-size: 20px;
    }
}

/* 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;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    font-family: "Nunito Sans", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--muted-foreground);
    text-decoration: none;
    border-radius: 8px;
    transition: color 0.2s ease, background 0.2s ease;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
    color: var(--foreground);
    background: rgba(46, 204, 113, 0.1);
}

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

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

.btn-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    font-family: "Nunito Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--foreground);
    background: transparent;
    border: 2px solid var(--border);
    border-radius: 8px;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    min-height: 40px;
    white-space: nowrap;
}

.btn-login:hover,
.btn-login:focus-visible {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(46, 204, 113, 0.05);
}

.btn-register {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 24px;
    font-family: "Nunito Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #0f1a15;
    background: linear-gradient(135deg, #f6d365 0%, #d4a017 100%);
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    min-height: 40px;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(212, 160, 23, 0.3);
}

.btn-register:hover,
.btn-register:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(212, 160, 23, 0.5);
    color: #0f1a15;
}

/* ============================================
   MOBILE MENU TOGGLE - Hamburger
   z-index: 1001 (above header)
   ============================================ */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    padding: 12px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

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

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

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

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

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

/* ============================================
   MOBILE NAV DRAWER - Full screen below header
   z-index: 999, position: fixed
   ============================================ */
@media (max-width: 1023px) {
    .main-nav {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 999;
        background: var(--background);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 24px 16px 48px;
    }

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

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

    .main-nav .nav-link {
        min-height: 56px;
        font-size: 18px;
        padding: 16px 20px;
        border-radius: 12px;
        text-decoration: none;
    }

    .main-nav .nav-link:hover,
    .main-nav .nav-link:focus-visible {
        background: rgba(46, 204, 113, 0.1);
    }

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

/* Mobile action buttons shown inside nav drawer */
.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px 20px 0;
}

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

.mobile-nav-actions .btn-login,
.mobile-nav-actions .btn-register {
    display: flex;
    justify-content: center;
    min-height: 48px;
    font-size: 16px;
    width: 100%;
    text-decoration: none;
}

/* ============================================
   BUTTONS - CTA System
   Gold primary, ghost secondary
   ============================================ */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: "Nunito Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-height: 48px;
    line-height: 1.2;
    text-align: center;
}

.btn-cta--gold {
    color: #0f1a15;
    background: linear-gradient(135deg, #f6d365 0%, #d4a017 100%);
    box-shadow: 0 4px 15px rgba(212, 160, 23, 0.3);
}

.btn-cta--gold:hover,
.btn-cta--gold:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 160, 23, 0.5);
    color: #0f1a15;
}

.btn-cta--green {
    color: #0f1a15;
    background: linear-gradient(135deg, #2ecc71 0%, #1a9a4f 100%);
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.btn-cta--green:hover,
.btn-cta--green:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(46, 204, 113, 0.5);
    color: #0f1a15;
}

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

.btn-cta--ghost:hover,
.btn-cta--ghost:focus-visible {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(46, 204, 113, 0.05);
}

/* Full-width on mobile < 640px */
@media (max-width: 639px) {
    .btn-cta--fullmobile {
        width: 100%;
    }
}

/* Pulse animation for idle CTA */
.btn-cta--pulse {
    animation: goldPulse 4s ease-in-out infinite;
}

@keyframes goldPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(212, 160, 23, 0.3);
    }
    50% {
        box-shadow: 0 4px 30px rgba(212, 160, 23, 0.6);
    }
}

/* ============================================
   GAME CARDS - Grid with hover effects
   2 cols mobile, 3 tablet, 4 desktop
   ============================================ */
.game-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

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

.game-card {
    background: var(--card);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
    min-width: 0;
}

.game-card:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 30px rgba(46, 204, 113, 0.2);
}

.game-card__image {
    position: relative;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: var(--muted);
}

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

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

.game-card__placeholder-icon {
    font-size: 40px;
    opacity: 0.6;
}

.game-card__badge {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 4px 10px;
    font-family: "Nunito Sans", sans-serif;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #0f1a15;
    background: linear-gradient(135deg, #f6d365, #d4a017);
    border-radius: 6px;
    z-index: 1;
}

.game-card__content {
    padding: 16px;
}

@media (min-width: 1024px) {
    .game-card__content {
        padding: 20px;
    }
}

.game-card__title {
    font-family: "Nunito Sans", sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--card-foreground);
    margin: 0 0 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (min-width: 768px) {
    .game-card__title {
        font-size: 16px;
    }
}

.game-card__provider {
    font-size: 13px;
    color: var(--muted-foreground);
    margin: 0 0 8px;
}

.game-card__rtp {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    background: rgba(46, 204, 113, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.game-card__cta {
    display: block;
    text-align: center;
    padding: 8px 16px;
    font-family: "Nunito Sans", sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #0f1a15;
    background: linear-gradient(135deg, #f6d365 0%, #d4a017 100%);
    border-radius: 8px;
    text-decoration: none;
    transition: box-shadow 0.2s ease;
    min-height: 36px;
    line-height: 1.4;
}

.game-card__cta:hover,
.game-card__cta:focus-visible {
    box-shadow: 0 4px 15px rgba(212, 160, 23, 0.4);
    color: #0f1a15;
}

/* ============================================
   BONUS HIGHLIGHT CARDS
   Gold gradient values, emerald glow
   ============================================ */
.bonus-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
}

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

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

.bonus-card {
    position: relative;
    background: var(--card);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: 0 0 20px rgba(46, 204, 113, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 0;
}

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

.bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(46, 204, 113, 0.15);
}

.bonus-card__badge {
    position: absolute;
    top: -1px;
    right: 20px;
    padding: 6px 14px;
    font-family: "Nunito Sans", sans-serif;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    color: #0f1a15;
    background: linear-gradient(135deg, #f6d365, #d4a017);
    border-radius: 0 0 8px 8px;
}

.bonus-card__value {
    font-family: "Cinzel Decorative", serif;
    font-weight: 900;
    font-size: 36px;
    line-height: 1.1;
    background: linear-gradient(135deg, #f6d365 0%, #d4a017 40%, #f0c27f 70%, #d4a017 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 8px rgba(212, 160, 23, 0.3));
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .bonus-card__value {
        font-size: 44px;
    }
}

@media (min-width: 1024px) {
    .bonus-card__value {
        font-size: 56px;
    }
}

.bonus-card__name {
    font-family: "Nunito Sans", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--card-foreground);
    margin: 0 0 8px;
}

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

.bonus-card__slot {
    font-size: 14px;
    color: var(--primary);
    margin: 0 0 12px;
}

.bonus-card__terms {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    text-align: left;
}

.bonus-card__term {
    font-size: 14px;
    color: var(--muted-foreground);
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.bonus-card__term::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

@media (min-width: 768px) {
    .bonus-card__term {
        font-size: 15px;
    }
}

.bonus-card__cta {
    width: 100%;
}

/* ============================================
   FAQ ACCORDION
   Emerald active border, smooth transitions
   ============================================ */
.faq-section {
    padding: 48px 0;
}

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

.faq-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 16px;
}

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

.faq-heading {
    text-align: center;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #f6d365 0%, #d4a017 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-list {
    max-width: 860px;
    margin: 0 auto;
}

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

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

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

@media (min-width: 768px) {
    .faq-question {
        font-size: 17px;
        min-height: 60px;
    }
}

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

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

.faq-chevron {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--muted-foreground);
    transition: transform 0.25s ease;
}

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

.faq-answer {
    padding: 0 16px 20px 16px;
    font-family: "Nunito Sans", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted-foreground);
}

@media (min-width: 768px) {
    .faq-answer {
        font-size: 17px;
    }
}

.faq-answer p {
    color: var(--muted-foreground);
    margin-bottom: 12px;
}

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

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

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

/* ============================================
   CTA BANNER - Full-bleed with fireflies
   ============================================ */
.cta-banner {
    position: relative;
    padding: 48px 16px;
    background: linear-gradient(180deg, #0a1510 0%, #132a1e 30%, #0f1a15 70%, #0a1510 100%);
    text-align: center;
    overflow: hidden;
}

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

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

.cta-banner__particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

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

.cta-banner__heading {
    font-family: "Cinzel Decorative", serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    color: var(--foreground);
    margin-bottom: 16px;
    text-shadow: 0 2px 15px rgba(212, 160, 23, 0.2);
}

@media (min-width: 768px) {
    .cta-banner__heading {
        font-size: 30px;
    }
}

@media (min-width: 1024px) {
    .cta-banner__heading {
        font-size: 36px;
    }
}

.cta-banner__text {
    font-size: 16px;
    color: var(--muted-foreground);
    margin-bottom: 28px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .cta-banner__text {
        font-size: 17px;
    }
}

.cta-banner__microcopy {
    font-size: 13px;
    color: var(--muted-foreground);
    margin-top: 12px;
    margin-bottom: 0;
    opacity: 0.8;
}

/* Firefly particles */
.firefly {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(212, 160, 23, 0.7);
    box-shadow: 0 0 8px 2px rgba(212, 160, 23, 0.4);
    animation: fireflyDrift var(--duration, 8s) ease-in-out infinite;
    animation-delay: var(--delay, 0s);
    opacity: 0;
}

.firefly:nth-child(1) { top: 15%; left: 10%; --duration: 7s; --delay: 0s; }
.firefly:nth-child(2) { top: 60%; left: 85%; --duration: 9s; --delay: 1.5s; }
.firefly:nth-child(3) { top: 30%; left: 50%; --duration: 6s; --delay: 3s; }
.firefly:nth-child(4) { top: 80%; left: 25%; --duration: 10s; --delay: 0.5s; }
.firefly:nth-child(5) { top: 45%; left: 70%; --duration: 8s; --delay: 2s; }
.firefly:nth-child(6) { top: 20%; left: 90%; --duration: 7s; --delay: 4s; }
.firefly:nth-child(7) { top: 70%; left: 40%; --duration: 9s; --delay: 1s; }
.firefly:nth-child(8) { top: 10%; left: 60%; --duration: 11s; --delay: 3.5s; }

@keyframes fireflyDrift {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(0.5);
    }
    15% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
        transform: translate(30px, -20px) scale(1);
    }
    85% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate(-20px, 15px) scale(0.5);
    }
}

/* ============================================
   TRUST BAR - Payment logos & badges
   ============================================ */
.trust-bar {
    background: var(--card);
    padding: 28px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.trust-bar__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 768px) {
    .trust-bar__inner {
        padding: 0 24px;
    }
}

.trust-bar__label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted-foreground);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trust-bar__logos {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .trust-bar__logos {
        flex-wrap: wrap;
        overflow-x: visible;
        gap: 16px;
        justify-content: center;
    }
}

.trust-logo {
    flex-shrink: 0;
    scroll-snap-align: start;
    opacity: 0.7;
    filter: grayscale(0.3);
    transition: opacity 0.2s, filter 0.2s;
}

.trust-logo:hover {
    opacity: 1;
    filter: grayscale(0);
}

.trust-logo svg {
    display: block;
}

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

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 13px;
    color: var(--muted-foreground);
}

.trust-badge__icon {
    font-size: 18px;
}

.trust-badge__text {
    font-size: 12px;
    line-height: 1.3;
    color: var(--muted-foreground);
}

.trust-badge__text strong {
    color: var(--foreground);
    font-weight: 700;
}

.trust-badge--age {
    padding: 6px 12px;
}

.trust-badge__label {
    font-family: "Nunito Sans", sans-serif;
    font-size: 16px;
    font-weight: 900;
    color: #f07060;
    letter-spacing: -0.02em;
}

/* ============================================
   HERO SECTIONS - Full viewport atmospheric
   ============================================ */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 16px 48px;
    background: linear-gradient(180deg, #0a1510 0%, #112820 40%, #0f1a15 100%);
    text-align: center;
    overflow: hidden;
}

.hero--home {
    min-height: 90vh;
}

@media (min-width: 768px) {
    .hero {
        padding: 100px 24px 64px;
    }
}

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

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

.hero__subtitle {
    font-size: 14px;
    font-weight: 600;
    color: var(--muted-foreground);
    margin-bottom: 24px;
    letter-spacing: 0.04em;
}

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

.hero__title {
    margin-bottom: 20px;
}

.hero__description {
    font-size: 16px;
    color: var(--muted-foreground);
    max-width: 600px;
    margin: 0 auto 32px;
}

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

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

@media (min-width: 640px) {
    .hero__actions {
        flex-direction: row;
        justify-content: center;
    }
}

.hero__trust-line {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 24px;
    font-size: 13px;
    color: var(--muted-foreground);
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

/* Hero mascot */
.hero__mascot {
    margin-bottom: 16px;
}

.hero__mascot-img {
    width: 140px;
    height: 140px;
    margin: 0 auto;
    border-radius: 50%;
    filter: drop-shadow(0 0 20px rgba(212, 160, 23, 0.3));
    animation: mascotFloat 4s ease-in-out infinite;
}

@media (min-width: 768px) {
    .hero__mascot-img {
        width: 180px;
        height: 180px;
    }
}

@media (min-width: 1024px) {
    .hero__mascot-img {
        width: 200px;
        height: 200px;
    }
}

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

/* Hero bonus value */
.hero__bonus-value {
    margin-bottom: 20px;
}

/* Hero background particles */
.hero__particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

/* ============================================
   NO-DEPOSIT BANNER
   ============================================ */
.no-deposit-banner {
    background: linear-gradient(180deg, rgba(212, 160, 23, 0.06) 0%, var(--background) 100%);
}

.no-deposit-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 32px 24px;
    background: var(--card);
    border: 1px solid rgba(212, 160, 23, 0.2);
    border-radius: 16px;
    box-shadow: 0 0 30px rgba(212, 160, 23, 0.08);
}

@media (min-width: 768px) {
    .no-deposit-card {
        flex-direction: row;
        text-align: left;
        gap: 24px;
        padding: 40px 36px;
    }
}

.no-deposit-card__icon {
    font-size: 48px;
    flex-shrink: 0;
}

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

.no-deposit-card__title {
    font-family: "Cinzel Decorative", serif;
    font-weight: 700;
    font-size: 22px;
    background: linear-gradient(135deg, #f6d365 0%, #d4a017 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .no-deposit-card__title {
        font-size: 26px;
    }
}

.no-deposit-card__text {
    color: var(--muted-foreground);
    margin-bottom: 20px;
    font-size: 16px;
}

.no-deposit-card__text strong {
    color: var(--foreground);
}

/* Spacing helper */
.mt-32 {
    margin-top: 32px;
}

/* ============================================
   CONTENT SECTIONS - SEO text areas
   ============================================ */
.seo-content {
    padding: 48px 0;
    max-width: 1180px;
    margin: 0 auto;
}

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

.seo-content__inner {
    padding: 0 16px;
    max-width: 860px;
    margin: 0 auto;
}

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

.seo-content h2 {
    margin-top: 40px;
    margin-bottom: 16px;
}

.seo-content h3 {
    margin-top: 32px;
    margin-bottom: 12px;
}

.seo-content p {
    margin-bottom: 20px;
}

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

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

@media (min-width: 768px) {
    .seo-content li {
        font-size: 17px;
    }
}

/* ============================================
   TABLES - Responsive with zebra striping
   ============================================ */
.table-responsive {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 24px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 500px;
}

@media (min-width: 768px) {
    .data-table {
        font-size: 15px;
    }
}

.data-table thead {
    background: var(--card);
}

.data-table th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 700;
    color: var(--foreground);
    border-bottom: 2px solid var(--border);
    white-space: nowrap;
}

.data-table td {
    padding: 12px 16px;
    color: var(--card-foreground);
    border-bottom: 1px solid var(--border);
}

.data-table tbody tr:nth-child(even) {
    background: rgba(42, 61, 51, 0.3);
}

.data-table tbody tr:hover {
    background: rgba(46, 204, 113, 0.05);
}

/* Highlighted column */
.data-table .highlight-col {
    background: rgba(46, 204, 113, 0.08);
    font-weight: 600;
}

.data-table .highlight-row {
    background: rgba(212, 160, 23, 0.08);
}

/* ============================================
   ENGAGEMENT PATTERNS
   TL;DR, callout, stat, pull-quote, details
   ============================================ */

/* Summary / TL;DR Box */
.tldr-box {
    padding: 20px 24px;
    background: rgba(46, 204, 113, 0.08);
    border-left: 4px solid var(--primary);
    border-radius: 0 12px 12px 0;
    margin-bottom: 28px;
}

.tldr-box__title {
    font-family: "Nunito Sans", sans-serif;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary);
    margin-bottom: 8px;
}

.tldr-box p {
    margin-bottom: 8px;
    font-size: 15px;
}

.tldr-box p:last-child {
    margin-bottom: 0;
}

/* Callout / Highlight Box */
.callout {
    padding: 20px 24px;
    border-radius: 12px;
    margin-bottom: 28px;
    border: 1px solid var(--border);
    background: var(--card);
}

.callout--tip {
    border-left: 4px solid var(--primary);
}

.callout--warning {
    border-left: 4px solid var(--secondary);
}

.callout--important {
    border-left: 4px solid var(--accent);
}

.callout__title {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

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

/* Stat Highlight */
.stat-highlight {
    text-align: center;
    padding: 24px 16px;
    margin-bottom: 28px;
}

.stat-highlight__number {
    font-family: "Cinzel Decorative", serif;
    font-size: 40px;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #f6d365 0%, #d4a017 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .stat-highlight__number {
        font-size: 56px;
    }
}

.stat-highlight__label {
    font-size: 16px;
    color: var(--muted-foreground);
    font-weight: 600;
}

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

/* Pull Quote */
.pull-quote {
    margin: 32px 0;
    padding: 24px 28px;
    border-left: 4px solid var(--secondary);
    background: rgba(212, 160, 23, 0.05);
    border-radius: 0 12px 12px 0;
}

.pull-quote blockquote {
    font-family: "Nunito Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
    font-style: italic;
    color: var(--foreground);
    margin: 0 0 8px;
    line-height: 1.5;
}

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

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

/* Styled details/summary */
details.expandable {
    margin-bottom: 16px;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

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

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

details.expandable summary::after {
    content: '+';
    font-size: 20px;
    font-weight: 700;
    color: var(--muted-foreground);
    transition: transform 0.2s;
    flex-shrink: 0;
}

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

details.expandable summary:hover {
    background: rgba(46, 204, 113, 0.05);
}

details.expandable .expandable-content {
    padding: 16px 20px 20px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--muted-foreground);
}

/* ============================================
   CRO PATTERNS
   CTA sections, trust rows, comparison tables
   ============================================ */

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

.trust-row__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--muted-foreground);
    opacity: 0.8;
}

/* Comparison table with highlighted column */
.comparison-table .highlight-col {
    background: rgba(46, 204, 113, 0.1);
    border-left: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
}

.comparison-table thead .highlight-col {
    background: rgba(46, 204, 113, 0.15);
    color: var(--primary);
    border-top: 2px solid var(--primary);
}

.comparison-table tbody tr:last-child .highlight-col {
    border-bottom: 2px solid var(--primary);
}

/* ============================================
   CATEGORY CARDS - For game categories, nav cards
   ============================================ */
.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;
    }
}

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

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    min-height: 120px;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(46, 204, 113, 0.15);
    border-color: var(--primary);
}

.category-card__icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.category-card__title {
    font-family: "Nunito Sans", sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--card-foreground);
}

.category-card__description {
    font-size: 13px;
    color: var(--muted-foreground);
    margin-top: 4px;
}

/* ============================================
   PROVIDER WALL - Logo grid
   ============================================ */
.provider-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
}

@media (min-width: 768px) {
    .provider-grid {
        flex-wrap: wrap;
        overflow-x: visible;
        justify-content: center;
        gap: 20px;
    }
}

.provider-logo {
    flex-shrink: 0;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: "Nunito Sans", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--foreground);
    white-space: nowrap;
    opacity: 0.75;
    transition: opacity 0.2s, border-color 0.2s;
}

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

/* ============================================
   VIP TIERS - Progress visualization
   ============================================ */
.vip-tiers {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 768px) {
    .vip-tiers {
        flex-direction: row;
        gap: 8px;
        align-items: stretch;
    }
}

.vip-tier {
    flex: 1;
    padding: 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s;
    min-width: 0;
}

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

.vip-tier__name {
    font-family: "Nunito Sans", sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: var(--foreground);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.vip-tier__cashback {
    font-family: "Cinzel Decorative", serif;
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #f6d365, #d4a017);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 768px) {
    .vip-tier__cashback {
        font-size: 24px;
    }
}

.vip-tier__icon {
    font-size: 28px;
    margin-bottom: 8px;
}

/* ============================================
   PAYMENT METHODS GRID - For auszahlung page
   ============================================ */
.payment-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
}

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

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

.payment-card {
    padding: 20px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    min-width: 0;
}

.payment-card__name {
    font-size: 16px;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-card__detail {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-bottom: 4px;
    display: flex;
    justify-content: space-between;
}

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

/* ============================================
   STEP PROCESS - KYC steps, etc.
   ============================================ */
.steps {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    counter-reset: step;
}

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

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

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

.step::before {
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 auto 12px;
    font-family: "Cinzel Decorative", serif;
    font-weight: 700;
    font-size: 18px;
    color: #0f1a15;
    background: linear-gradient(135deg, #f6d365, #d4a017);
    border-radius: 50%;
}

.step__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 6px;
}

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

/* ============================================
   LEGAL PAGES - Clean text layout
   ============================================ */
.legal-page {
    padding-top: 100px;
    padding-bottom: 48px;
}

@media (min-width: 1024px) {
    .legal-page {
        padding-top: 120px;
        padding-bottom: 80px;
    }
}

.legal-page__inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 768px) {
    .legal-page__inner {
        padding: 0 24px;
    }
}

.legal-page .breadcrumb {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-bottom: 24px;
}

.legal-page .breadcrumb a {
    color: var(--muted-foreground);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-page .breadcrumb a:hover {
    color: var(--primary);
}

.legal-page .last-updated {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-bottom: 32px;
}

.legal-page h1 {
    margin-bottom: 8px;
}

.legal-page h2 {
    font-family: "Nunito Sans", sans-serif;
    font-size: 20px;
    margin-top: 36px;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .legal-page h2 {
        font-size: 22px;
    }
}

.legal-page h3 {
    font-size: 18px;
    margin-top: 24px;
}

/* ============================================
   SITE FOOTER
   4-column on desktop, stacked on mobile
   ============================================ */
.site-footer {
    background: var(--card);
    border-top: 1px solid var(--border);
    padding: 48px 0 0;
}

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

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

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

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

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

.footer-logo-text {
    font-family: "Cinzel Decorative", serif;
    font-weight: 700;
    font-size: 16px;
    background: linear-gradient(135deg, #f6d365, #d4a017);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.footer-license {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.license-badge {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
}

.license-number {
    font-size: 12px;
    color: var(--muted-foreground);
    font-family: monospace;
}

.footer-heading {
    font-family: "Nunito Sans", sans-serif;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--foreground);
    margin-bottom: 12px;
    margin-top: 0;
}

.footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

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

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

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

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

.payment-logo-item {
    font-size: 12px;
    padding: 4px 8px;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--muted-foreground);
    white-space: nowrap;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
    align-items: center;
}

.age-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 2px solid #f07060;
    border-radius: 50%;
    font-family: "Nunito Sans", sans-serif;
    font-size: 13px;
    font-weight: 900;
    color: #f07060;
}

.responsible-badge {
    font-size: 13px;
    color: var(--muted-foreground);
    padding: 4px 10px;
    background: var(--background);
    border-radius: 6px;
    border: 1px solid var(--border);
}

.footer-responsible-text {
    font-size: 13px;
    color: var(--muted-foreground);
    line-height: 1.5;
}

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

.footer-bottom {
    max-width: 1180px;
    margin: 0 auto;
    padding: 24px 16px;
    margin-top: 32px;
    border-top: 1px solid var(--border);
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        padding: 24px 24px;
    }
}

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

/* ============================================
   SCROLL REVEAL ANIMATIONS
   Elements with .animate-on-scroll start hidden
   and reveal on intersection
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Staggered children */
.stagger-children .animate-on-scroll:nth-child(1) { transition-delay: 0ms; }
.stagger-children .animate-on-scroll:nth-child(2) { transition-delay: 100ms; }
.stagger-children .animate-on-scroll:nth-child(3) { transition-delay: 200ms; }
.stagger-children .animate-on-scroll:nth-child(4) { transition-delay: 300ms; }
.stagger-children .animate-on-scroll:nth-child(5) { transition-delay: 400ms; }
.stagger-children .animate-on-scroll:nth-child(6) { transition-delay: 500ms; }
.stagger-children .animate-on-scroll:nth-child(7) { transition-delay: 600ms; }
.stagger-children .animate-on-scroll:nth-child(8) { transition-delay: 700ms; }

/* ============================================
   PILL BUTTONS - Filter chips
   ============================================ */
.pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 24px;
}

.pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    font-family: "Nunito Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #a3bfab;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    min-height: 40px;
    white-space: nowrap;
}

.pill:hover,
.pill.active {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(46, 204, 113, 0.1);
}

/* ============================================
   FEATURE LIST - Checkmark items
   ============================================ */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--foreground);
    line-height: 1.5;
}

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

/* ============================================
   MOBILE APP SECTION
   ============================================ */
.app-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    align-items: center;
}

@media (min-width: 768px) {
    .app-section {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
}

.app-mockup {
    display: flex;
    justify-content: center;
}

.app-mockup__frame {
    width: 200px;
    height: 400px;
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .app-mockup__frame {
        width: 240px;
        height: 480px;
    }
}

.app-mockup__screen {
    font-size: 48px;
}

/* ============================================
   WHEEL SECTION - Promotional
   ============================================ */
.wheel-section {
    text-align: center;
}

.wheel-visual {
    width: 180px;
    height: 180px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        var(--primary) 0deg 60deg,
        var(--secondary) 60deg 120deg,
        var(--primary) 120deg 180deg,
        var(--secondary) 180deg 240deg,
        var(--primary) 240deg 300deg,
        var(--secondary) 300deg 360deg
    );
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(212, 160, 23, 0.3);
    animation: wheelSpin 20s linear infinite;
    position: relative;
}

.wheel-visual::after {
    content: '🎡';
    font-size: 48px;
    animation: wheelSpin 20s linear infinite reverse;
}

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

@media (min-width: 768px) {
    .wheel-visual {
        width: 220px;
        height: 220px;
    }
}

/* ============================================
   SECURITY CARDS
   ============================================ */
.security-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
}

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

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

.security-card__icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.security-card__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 8px;
}

.security-card__text {
    font-size: 14px;
    color: var(--muted-foreground);
    margin: 0;
    line-height: 1.5;
}

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

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

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

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

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

.nav-card__icon {
    font-size: 28px;
    flex-shrink: 0;
}

.nav-card__text h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--foreground);
    margin: 0 0 4px;
}

.nav-card__text p {
    font-size: 13px;
    color: var(--muted-foreground);
    margin: 0;
}

/* ============================================
   TRAIL PAGE - Redirect loader
   ============================================ */
.trail-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #0a1510 0%, #112820 50%, #0a1510 100%);
    padding: 32px 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.trail-logo {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    margin-bottom: 24px;
    filter: drop-shadow(0 0 24px rgba(212, 160, 23, 0.4));
    animation: trailLogoGlow 3s ease-in-out infinite;
}

@keyframes trailLogoGlow {
    0%, 100% {
        filter: drop-shadow(0 0 24px rgba(212, 160, 23, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(212, 160, 23, 0.7));
    }
}

.trail-brand {
    font-family: "Cinzel Decorative", serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: 0.03em;
    background: linear-gradient(135deg, #f6d365 0%, #d4a017 40%, #f0c27f 70%, #d4a017 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 24px;
}

@media (min-width: 768px) {
    .trail-brand {
        font-size: 36px;
    }
}

.trail-text {
    font-family: "Nunito Sans", sans-serif;
    font-size: 20px;
    color: var(--foreground);
    margin-bottom: 24px;
}

.trail-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.trail-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--secondary);
    animation: trailPulse 1.2s ease-in-out infinite;
}

.trail-dot:nth-child(2) { animation-delay: 0.2s; }
.trail-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes trailPulse {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

.trail-microcopy {
    font-family: "Nunito Sans", sans-serif;
    font-size: 14px;
    color: var(--muted-foreground);
    margin-top: 32px;
    margin-bottom: 0;
    opacity: 0.7;
    letter-spacing: 0.02em;
}

.trail-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.trail-page .trail-particles .firefly {
    position: absolute;
}

.trail-page .trail-logo,
.trail-page .trail-brand,
.trail-page .trail-text,
.trail-page .trail-dots,
.trail-page .trail-microcopy {
    position: relative;
    z-index: 1;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

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

/* Spacer for fixed header */
.header-spacer {
    height: 64px;
}

/* ============================================
   SWIPEABLE CAROUSEL - Horizontal scroll
   ============================================ */
.carousel {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
}

.carousel > * {
    flex-shrink: 0;
    scroll-snap-align: start;
}

@media (min-width: 768px) {
    .carousel {
        gap: 20px;
    }
}

/* Hide scrollbar but keep functional */
.carousel::-webkit-scrollbar,
.trust-bar__logos::-webkit-scrollbar,
.provider-grid::-webkit-scrollbar {
    height: 4px;
}

.carousel::-webkit-scrollbar-track,
.trust-bar__logos::-webkit-scrollbar-track,
.provider-grid::-webkit-scrollbar-track {
    background: transparent;
}

.carousel::-webkit-scrollbar-thumb,
.trust-bar__logos::-webkit-scrollbar-thumb,
.provider-grid::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 2px;
}

/* ============================================
   SPORTSBOOK BONUS - Variant styling
   ============================================ */
.bonus-card--sport {
    border-top: 3px solid var(--primary);
}

/* ============================================
   SECTION DIVIDER - Enchanted forest gradient
   ============================================ */
.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    margin: 0 auto;
    max-width: 600px;
}

/* ============================================
   HIGH ROLLER CARD
   ============================================ */
.bonus-card--premium {
    border: 1px solid rgba(212, 160, 23, 0.3);
    background: linear-gradient(180deg, var(--card) 0%, rgba(212, 160, 23, 0.05) 100%);
}

/* ============================================
   CRASH GAMES SECTION - Energetic accent
   ============================================ */
.crash-games-section {
    background: linear-gradient(180deg, var(--background) 0%, rgba(46, 204, 113, 0.03) 50%, var(--background) 100%);
}

.crash-games-section .game-grid {
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .crash-games-section .game-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        max-width: 100%;
    }
}

/* ============================================
   CRYPTO HIGHLIGHT SECTION
   ============================================ */
.crypto-highlight-section {
    background: linear-gradient(180deg, var(--background) 0%, rgba(212, 160, 23, 0.03) 50%, var(--background) 100%);
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .site-header,
    .site-footer,
    .cta-banner,
    .mobile-toggle,
    .btn-cta,
    .firefly {
        display: none !important;
    }

    body {
        background: white;
        color: black;
        font-size: 12pt;
    }

    .hero {
        min-height: auto;
        padding: 20px 0;
        background: none;
    }
}