/*
 * LEMON CASINO - Design System
 * Maximalist carnival aesthetic: dark casino lounge + citrus freshness
 * Fonts: Baloo 2 (headings), Nunito (body)
 * Colors: Lemon yellow + Lime green on dark charcoal
 */

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

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

a {
    word-break: break-all;
}

p a, li a, td a, th a, .seo-content a {
    word-break: normal;
}

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

section {
    overflow: clip;
}

/* ============================================
   TYPOGRAPHY - Baloo 2 headings, Nunito body
   ============================================ */
html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: "Nunito", sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Baloo 2", cursive, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
}

h1 {
    font-size: 28px;
    margin-bottom: 16px;
}

h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

p {
    margin-bottom: 24px;
}

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

a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

strong, b {
    font-weight: 700;
}

ul, ol {
    padding-left: 24px;
    margin-bottom: 24px;
}

li {
    margin-bottom: 8px;
}

/* Links inside text blocks must be distinguishable */
p a,
li a,
td a,
.seo-content a,
.section-heading a,
.text-center a,
.text-muted a,
.faq-answer-inner a,
.callout-box a,
.summary-box a,
blockquote a {
    text-decoration: underline;
    text-decoration-color: var(--primary);
    text-underline-offset: 2px;
}

p a:hover,
li a:hover,
td a:hover,
.seo-content a:hover,
.section-heading a:hover,
.text-center a:hover,
.text-muted a:hover,
.faq-answer-inner a:hover,
.callout-box a:hover,
.summary-box a:hover,
blockquote a:hover {
    text-decoration: underline;
    text-decoration-color: var(--secondary);
    color: var(--secondary);
}

/* Desktop typography scale */
@media (min-width: 1024px) {
    h1 { font-size: 42px; }
    h2 { font-size: 32px; }
    h3 { font-size: 24px; }
    h4 { font-size: 20px; }
}

/* ============================================
   LAYOUT - Container, grid, spacing
   ============================================ */
.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 16px;
}

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

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

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

.grid-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

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

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

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

/* Section spacing */
.section {
    padding: 48px 0;
}

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

/* ============================================
   BUTTONS - Primary, outline, sizes
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Baloo 2", cursive, sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 24px;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    min-height: 48px;
    line-height: 1.2;
    white-space: nowrap;
    word-break: normal;
}

.btn:hover {
    text-decoration: none;
    transform: translateY(-1px);
}

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

.btn-primary:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: #fff;
    box-shadow: 0 4px 20px rgba(45, 110, 46, 0.4);
}

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

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

.btn-lg {
    font-size: 18px;
    padding: 16px 32px;
    border-radius: 10px;
}

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

/* Pulsing glow animation for main CTAs */
.btn-pulse {
    animation: ctaPulse 3s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 224, 20, 0.4); }
    50% { box-shadow: 0 0 24px 8px rgba(255, 224, 20, 0.2); }
}

.btn-pulse:hover {
    animation: none;
    box-shadow: 0 4px 24px rgba(45, 110, 46, 0.5);
}

/* ============================================
   HEADER - Fixed sticky, 60px mobile / 72px desktop
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background-color: var(--background);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: background-color 0.2s ease;
}

@media (min-width: 1024px) {
    .site-header {
        height: 72px;
    }
}

/* Space for fixed header */
body {
    padding-top: 60px;
}

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

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

/* Logo */
.header-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--primary);
    flex-shrink: 0;
    z-index: 1001;
}

.header-logo:hover {
    text-decoration: none;
}

.logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

@media (min-width: 1024px) {
    .logo-icon {
        width: 40px;
        height: 40px;
    }
}

.logo-text {
    font-family: "Baloo 2", cursive, sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

@media (min-width: 1024px) {
    .logo-text {
        font-size: 24px;
    }
}

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

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.nav-link:hover {
    color: var(--primary);
    background-color: var(--muted);
    text-decoration: none;
}

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

/* Header CTA buttons */
.header-actions {
    display: none;
}

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

    .header-actions {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .btn-header-login {
        font-size: 14px;
        padding: 8px 16px;
        min-height: 40px;
    }

    .btn-header {
        font-size: 14px;
        padding: 8px 20px;
        min-height: 40px;
    }
}

/* ============================================
   MOBILE MENU - Full-screen drawer from right
   ============================================ */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
}

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

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

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

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

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
    }

    .nav-link {
        font-size: 20px;
        padding: 16px 12px;
        border-bottom: 1px solid var(--border);
        border-radius: 0;
    }

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

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

/* ============================================
   HERO SECTIONS - Full-bleed with mascot
   ============================================ */
.hero {
    position: relative;
    padding: 56px 0;
    background: linear-gradient(135deg, var(--background) 0%, #0d150f 50%, #111a14 100%);
}

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

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}

@media (min-width: 768px) {
    .hero-inner {
        flex-direction: row;
        text-align: left;
        gap: 40px;
    }
}

.hero-content {
    flex: 1;
    min-width: 0;
}

.hero-mascot {
    width: 200px;
    height: 200px;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .hero-mascot {
        width: 280px;
        height: 280px;
        order: 2;
    }
}

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

.hero-mascot img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero h1 {
    color: var(--primary);
    margin-bottom: 12px;
}

.hero-highlight {
    display: block;
    font-size: 36px;
    color: var(--secondary-foreground);
    line-height: 1.1;
}

.dark .hero-highlight {
    color: #4edb50;
}

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

.hero-text {
    font-size: 17px;
    color: var(--foreground);
    opacity: 0.9;
    margin-bottom: 24px;
}

/* Diagonal citrus splash stripes (decorative) */
.hero-stripes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-stripes::before,
.hero-stripes::after {
    content: '';
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 224, 20, 0.06) 0%, rgba(45, 110, 46, 0.06) 100%);
}

.hero-stripes::before {
    top: -20%;
    right: -10%;
    width: 50%;
    height: 140%;
    transform: rotate(-15deg);
}

.hero-stripes::after {
    bottom: -30%;
    left: -5%;
    width: 30%;
    height: 120%;
    transform: rotate(25deg);
    background: linear-gradient(135deg, rgba(45, 110, 46, 0.04) 0%, rgba(255, 224, 20, 0.04) 100%);
}

.hero > .container {
    position: relative;
    z-index: 1;
}

/* ============================================
   PROMO CARDS - Game/bonus/feature cards
   ============================================ */
.promo-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

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

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

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

.promo-card {
    position: relative;
    background-color: var(--card);
    border-radius: 12px;
    padding: 20px;
    min-width: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

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

.promo-card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 32px rgba(255, 224, 20, 0.15);
}

@media (min-width: 1024px) {
    .promo-card:hover {
        transform: scale(1.05);
        box-shadow: 0 12px 48px rgba(255, 224, 20, 0.2);
    }
}

/* Diagonal stripe accent */
.promo-card-stripe {
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 0 12px 0 0;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    opacity: 0.15;
}

.promo-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: #1a2000;
    color: var(--primary);
    font-family: "Baloo 2", cursive, sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 4px;
    z-index: 2;
    border: 1px solid var(--primary);
}

.promo-card-image {
    margin: -20px -20px 16px -20px;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

@media (min-width: 1024px) {
    .promo-card-image {
        margin: -28px -28px 20px -28px;
    }
}

.promo-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.promo-card-highlight {
    display: block;
    font-family: "Baloo 2", cursive, sans-serif;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 8px;
}

.dark .promo-card-highlight {
    color: #4edb50;
}

.promo-card-highlight {
    color: var(--secondary);
}

.promo-card-title {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 8px;
}

@media (min-width: 1024px) {
    .promo-card-title {
        font-size: 20px;
    }
}

.promo-card-desc {
    font-size: 15px;
    color: var(--card-foreground);
    opacity: 0.85;
    margin-bottom: 16px;
    flex: 1;
}

.promo-card-cta {
    margin-top: auto;
    width: 100%;
    text-align: center;
}

/* Wide variant */
.promo-card.card-wide {
    flex-direction: row;
    gap: 24px;
}

@media (max-width: 767px) {
    .promo-card.card-wide {
        flex-direction: column;
    }
}

/* ============================================
   CTA BANNER - Full-width conversion section
   ============================================ */
.cta-banner {
    position: relative;
    padding: 56px 0;
    background: linear-gradient(135deg, #0d150f 0%, #182218 50%, #111a14 100%);
}

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

.cta-banner-stripes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.cta-banner-stripes::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 60%;
    height: 200%;
    background: linear-gradient(135deg, rgba(255, 224, 20, 0.05) 0%, transparent 50%);
    transform: rotate(-20deg);
}

.cta-banner-stripes::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -5%;
    width: 40%;
    height: 180%;
    background: linear-gradient(135deg, transparent 30%, rgba(45, 110, 46, 0.05) 100%);
    transform: rotate(15deg);
}

.cta-banner-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}

@media (min-width: 768px) {
    .cta-banner-inner {
        flex-direction: row;
        text-align: left;
    }
}

.cta-banner-mascot {
    width: 160px;
    height: 160px;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .cta-banner-mascot {
        width: 220px;
        height: 220px;
    }
}

.cta-banner-mascot img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cta-banner-content {
    flex: 1;
    min-width: 0;
}

.cta-banner-headline {
    font-size: 26px;
    color: var(--primary);
    margin-bottom: 12px;
}

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

.cta-banner-text {
    font-size: 17px;
    color: var(--foreground);
    opacity: 0.9;
    margin-bottom: 24px;
}

.dark .cta-banner-text {
    color: #f5f0e0;
}

.cta-banner-microcopy {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-top: 12px;
    margin-bottom: 0;
}

/* ============================================
   TRUST STRIP - Payment/provider/badge rows
   ============================================ */
.trust-strip {
    padding: 20px 0;
    border-top: 2px solid var(--primary);
    background-color: var(--card);
}

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

.trust-strip-label {
    display: block;
    font-family: "Baloo 2", cursive, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-align: center;
}

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

@media (max-width: 767px) {
    .trust-strip-row {
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 4px;
    }

    .trust-strip-row::-webkit-scrollbar {
        display: none;
    }
}

.trust-strip-item {
    flex-shrink: 0;
}

.trust-strip-item img {
    height: 32px;
    width: auto;
    max-width: 80px;
    filter: grayscale(100%) brightness(0.7);
    transition: filter 0.2s ease;
}

@media (min-width: 1024px) {
    .trust-strip-item img {
        height: 40px;
        max-width: 100px;
    }
}

.trust-strip-item:hover img {
    filter: grayscale(0%) brightness(1);
}

.trust-strip-text-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    font-family: "Baloo 2", cursive, sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted-foreground);
    background-color: var(--muted);
    border-radius: 6px;
    white-space: nowrap;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.trust-strip-item:hover .trust-strip-text-badge {
    color: var(--primary);
    background-color: var(--input);
}

/* ============================================
   FAQ ACCORDION - Expandable Q&A pairs
   ============================================ */
.faq-section {
    padding: 48px 0;
    background-color: var(--background);
}

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

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

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

.faq-item {
    background-color: var(--card);
    border-radius: 8px;
    border-left: 3px solid var(--primary);
    margin-bottom: 8px;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: "Baloo 2", cursive, sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--card-foreground);
    line-height: 1.3;
    min-height: 48px;
}

@media (min-width: 1024px) {
    .faq-question {
        padding: 28px;
        font-size: 20px;
    }
}

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

.faq-question-text {
    flex: 1;
    min-width: 0;
}

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

.dark .faq-chevron {
    color: #4edb50;
}

.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 20px 20px 20px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--card-foreground);
    opacity: 0.9;
}

@media (min-width: 1024px) {
    .faq-answer-inner {
        padding: 0 28px 28px 28px;
        font-size: 17px;
    }
}

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

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

/* ============================================
   SEO CONTENT - Long-form text sections
   ============================================ */
.seo-content {
    padding: 48px 0;
}

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

.seo-content .container {
    max-width: 860px;
}

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

.seo-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
}

.seo-content thead th {
    background-color: var(--muted);
    font-family: "Baloo 2", cursive, sans-serif;
    font-weight: 600;
    text-align: left;
    padding: 12px 16px;
    color: var(--foreground);
    font-size: 15px;
    white-space: nowrap;
}

.seo-content tbody td {
    padding: 10px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
}

.seo-content tbody tr:hover {
    background-color: var(--input);
}

/* ============================================
   ENGAGEMENT PATTERNS - Callouts, highlights, quotes
   ============================================ */

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

.summary-box h3,
.summary-box strong:first-child {
    color: var(--primary);
    font-family: "Baloo 2", cursive, sans-serif;
    margin-bottom: 8px;
}

/* Callout / highlight box */
.callout-box {
    background-color: var(--input);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: 0 8px 8px 0;
    padding: 20px 24px;
    margin-bottom: 24px;
}

.callout-box.callout-tip {
    border-left-color: var(--secondary);
}

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

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

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

.stat-highlight-number {
    display: block;
    font-family: "Baloo 2", cursive, sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}

.dark .stat-highlight-number {
    color: #4edb50;
}

.stat-highlight-number {
    color: var(--secondary);
}

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

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

/* Pull quote */
blockquote,
.pull-quote {
    border-left: 4px solid var(--primary);
    padding: 16px 24px;
    margin: 24px 0;
    font-size: 18px;
    font-style: italic;
    color: var(--foreground);
    background-color: var(--card);
    border-radius: 0 8px 8px 0;
}

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

blockquote cite {
    display: block;
    font-size: 14px;
    font-style: normal;
    color: var(--muted-foreground);
    margin-top: 8px;
}

/* Details/summary accordion */
details {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 12px;
}

details summary {
    padding: 16px 20px;
    font-family: "Baloo 2", cursive, sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--foreground);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
}

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

details summary::after {
    content: '+';
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary);
    flex-shrink: 0;
    margin-left: 12px;
    transition: transform 0.2s ease;
}

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

details > div,
details > p {
    padding: 0 20px 16px 20px;
    font-size: 16px;
    line-height: 1.6;
}

/* ============================================
   CRO PATTERNS - Trust, comparison, social proof
   ============================================ */

/* CTA section (standalone) */
.cta-section {
    padding: 48px 0;
    text-align: center;
    background-color: var(--card);
}

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

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

.cta-section p {
    max-width: 600px;
    margin: 0 auto 24px;
    color: var(--foreground);
    opacity: 0.85;
}

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

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    font-family: "Baloo 2", cursive, sans-serif;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    white-space: nowrap;
}

.age-badge {
    background-color: #b91c1c;
    color: #ffffff;
}

.license-badge {
    background-color: var(--secondary);
    color: #fff;
}

.ssl-badge {
    background-color: var(--muted);
    color: var(--foreground);
}

/* Verified badge - high contrast variant */
.trust-badge-verified {
    background-color: var(--secondary);
    color: #fff;
    margin-top: 8px;
    display: inline-block;
}

.dark .trust-badge-verified {
    background-color: #2d6e2e;
    color: #e8f5e0;
}

/* Comparison table */
.comparison-table-wrapper {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 24px;
}

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

.comparison-table thead th {
    background-color: var(--muted);
    font-family: "Baloo 2", cursive, sans-serif;
    font-weight: 600;
    text-align: center;
    padding: 14px 16px;
    font-size: 15px;
    color: var(--foreground);
}

.comparison-table thead th.highlight-col {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.comparison-table tbody td {
    padding: 12px 16px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
}

.comparison-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
}

.comparison-table tbody td.highlight-col {
    background-color: rgba(255, 224, 20, 0.05);
}

/* Social proof / testimonial cards */
.testimonial-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

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

.testimonial-card {
    background-color: var(--card);
    border-radius: 12px;
    padding: 24px;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-family: "Baloo 2", cursive, sans-serif;
    font-size: 48px;
    color: var(--primary);
    line-height: 1;
    display: block;
    margin-bottom: 8px;
}

.testimonial-card p {
    font-size: 15px;
    font-style: italic;
    color: var(--card-foreground);
    opacity: 0.9;
    margin-bottom: 16px;
}

.testimonial-card-author {
    font-family: "Baloo 2", cursive, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--muted-foreground);
}

.testimonial-stars {
    color: var(--primary);
    font-size: 16px;
    margin-bottom: 8px;
}

/* Pros / Cons */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

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

.pros-list,
.cons-list {
    background-color: var(--card);
    border-radius: 12px;
    padding: 24px;
}

.pros-list h3 {
    color: var(--secondary);
}

.dark .pros-list h3 {
    color: #4edb50;
}

.cons-list h3 {
    color: var(--accent);
}

.pros-list ul,
.cons-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros-list li,
.cons-list li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    border-bottom: 1px solid var(--border);
}

.pros-list li:last-child,
.cons-list li:last-child {
    border-bottom: none;
}

.pros-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 700;
    color: var(--secondary);
}

.dark .pros-list li::before {
    color: #4edb50;
}

.cons-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    font-weight: 700;
    color: var(--accent);
}

/* ============================================
   PAYMENT BADGES (Footer)
   ============================================ */
.footer-payment-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.payment-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    font-family: "Baloo 2", cursive, sans-serif;
    color: var(--muted-foreground);
    background-color: var(--muted);
    border-radius: 4px;
    white-space: nowrap;
}

/* ============================================
   FOOTER - Four columns, stacked on mobile
   ============================================ */
.site-footer {
    background-color: var(--card);
    border-top: 2px solid var(--primary);
    padding: 48px 0 24px;
}

.footer-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 16px;
}

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

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

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-family: "Baloo 2", cursive, sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer-logo:hover {
    text-decoration: none;
}

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

.footer-desc {
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.5;
}

.footer-heading {
    font-family: "Baloo 2", cursive, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 12px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

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

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

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

.footer-trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

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

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

/* ============================================
   ANIMATIONS - Scroll reveal + transitions
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

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

/* Staggered children */
.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.5s; }

/* ============================================
   PAGE-SPECIFIC WRAPPERS - Unique page styles
   ============================================ */

/* ============================================
   HOMEPAGE - Hero, VIP, trust signals
   ============================================ */

/* Hero home enhancements */
.hero-home {
    overflow: hidden;
}

.hero-home .hero-highlight {
    display: block;
    font-family: "Baloo 2", cursive, sans-serif;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
}

@media (min-width: 1024px) {
    .hero-home .hero-highlight {
        font-size: 60px;
    }
}

.hero-microcopy {
    font-size: 13px;
    color: var(--muted-foreground);
    margin-top: 16px;
    margin-bottom: 0;
}

.hero-coins-deco {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255, 224, 20, 0.08) 0%, transparent 30%),
        radial-gradient(circle at 85% 70%, rgba(45, 110, 46, 0.06) 0%, transparent 25%),
        radial-gradient(circle at 50% 90%, rgba(255, 224, 20, 0.04) 0%, transparent 20%);
}

/* VIP Teaser Card */
.section-vip {
    background-color: var(--background);
}

.vip-card {
    background-color: var(--card);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--border);
    max-width: 960px;
    margin: 0 auto;
}

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

.vip-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

@media (min-width: 768px) {
    .vip-card-inner {
        flex-direction: row;
        text-align: left;
        gap: 32px;
    }
}

.vip-card-mascot {
    flex-shrink: 0;
    width: 200px;
    max-width: 100%;
}

@media (min-width: 768px) {
    .vip-card-mascot {
        width: 280px;
    }
}

.vip-card-mascot img {
    width: 100%;
    height: auto;
}

.vip-card-content {
    flex: 1;
    min-width: 0;
}

.vip-levels-bar {
    margin-bottom: 20px;
}

.vip-levels-track {
    height: 10px;
    background-color: var(--muted);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 8px;
}

.vip-levels-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 5px;
    transition: width 1s ease-out;
}

.vip-levels-labels {
    display: flex;
    justify-content: space-between;
    font-family: "Baloo 2", cursive, sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted-foreground);
}

.vip-rewards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

@media (min-width: 480px) {
    .vip-rewards-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.vip-reward-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 8px;
    background-color: var(--muted);
    border-radius: 8px;
}

.vip-reward-icon {
    font-size: 28px;
    line-height: 1;
}

.vip-reward-label {
    font-family: "Baloo 2", cursive, sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--foreground);
    text-align: center;
}

.vip-card-text {
    font-size: 15px;
    color: var(--card-foreground);
    opacity: 0.85;
    margin-bottom: 20px;
}

/* Trust signals section */
.section-trust-signals {
    padding: 24px 0 32px;
}

/* Go / redirect page */
.page-redirect {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 60px);
    text-align: center;
}

.page-redirect .redirect-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 32px;
}

.redirect-logo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.redirect-mascot {
    width: 150px;
    height: 150px;
}

.redirect-mascot img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: mascotBounce 2s ease-in-out infinite;
}

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

.redirect-text {
    font-family: "Baloo 2", cursive, sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    animation: textPulse 2s ease-in-out infinite;
}

@keyframes textPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.redirect-dots {
    display: flex;
    gap: 8px;
}

.redirect-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--secondary);
    animation: dotBounce 1.4s ease-in-out infinite;
}

.dark .redirect-dot {
    background-color: #4edb50;
}

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

@keyframes dotBounce {
    0%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-12px); }
}

.redirect-subtext {
    font-size: 14px;
    color: var(--muted-foreground);
    max-width: 300px;
}

.redirect-age-badge {
    position: fixed;
    bottom: 16px;
    right: 16px;
}

/* Legal pages */
.page-legal {
    padding: 48px 0;
}

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

.page-legal .container {
    max-width: 860px;
}

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

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

.page-legal h2 {
    margin-top: 40px;
    margin-bottom: 16px;
    font-size: 22px;
}

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

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

/* ============================================
   ERFAHRUNGEN PAGE - Rating summary, payout test
   ============================================ */
.hero-erfahrungen {
    overflow: hidden;
}

/* Rating summary card */
.rating-summary-card {
    background-color: var(--card);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--border);
    max-width: 960px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .rating-summary-card {
        padding: 40px;
    }
}

.rating-summary-inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

@media (min-width: 768px) {
    .rating-summary-inner {
        flex-direction: row;
        gap: 40px;
        align-items: center;
    }
}

.rating-summary-overall {
    text-align: center;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .rating-summary-overall {
        min-width: 200px;
    }
}

.rating-summary-overall img {
    width: 120px;
    height: 120px;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .rating-summary-overall img {
        width: 160px;
        height: 160px;
    }
}

.rating-overall-score {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 4px;
}

.rating-big-number {
    font-family: "Baloo 2", cursive, sans-serif;
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    color: var(--primary);
}

.rating-max {
    font-family: "Baloo 2", cursive, sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--muted-foreground);
}

.rating-summary-bars {
    flex: 1;
    min-width: 0;
}

/* Payout test card */
.payout-test-card {
    background-color: var(--card);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--border);
    max-width: 960px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .payout-test-card {
        padding: 40px;
    }
}

.payout-test-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

@media (min-width: 768px) {
    .payout-test-inner {
        flex-direction: row;
        gap: 32px;
        align-items: flex-start;
    }
}

.payout-test-visual {
    flex-shrink: 0;
    width: 200px;
    max-width: 100%;
}

@media (min-width: 768px) {
    .payout-test-visual {
        width: 260px;
    }
}

.payout-test-visual img {
    width: 100%;
    height: auto;
}

.payout-test-content {
    flex: 1;
    min-width: 0;
    width: 100%;
}

.payout-highlight {
    text-align: center;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .payout-highlight {
        text-align: left;
    }
}

.payout-highlight-number {
    display: block;
    font-family: "Baloo 2", cursive, sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.dark .payout-highlight-number {
    color: #4edb50;
}

.payout-highlight-number {
    color: var(--secondary);
}

.payout-highlight-label {
    display: block;
    font-family: "Baloo 2", cursive, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--foreground);
    margin-top: 4px;
}

/* ============================================
   SPIELE PAGE - Exclusive cards, hero
   ============================================ */
.hero-spiele {
    overflow: hidden;
}

.section-exclusive .promo-card.card-exclusive {
    border: 2px solid var(--primary);
    box-shadow: 0 0 24px rgba(255, 224, 20, 0.1);
}

.section-exclusive .promo-card.card-exclusive:hover {
    box-shadow: 0 0 48px rgba(255, 224, 20, 0.2);
}

/* Promo code badge */
.promo-code {
    display: inline-block;
    font-family: "Baloo 2", cursive, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    background-color: var(--muted);
    border: 2px dashed var(--primary);
    padding: 6px 16px;
    border-radius: 6px;
    letter-spacing: 1px;
}

/* Steps / Process */
.steps-list {
    counter-reset: step;
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.steps-list li {
    counter-increment: step;
    position: relative;
    padding-left: 48px;
    margin-bottom: 20px;
    min-height: 36px;
}

.steps-list li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--primary-foreground);
    font-family: "Baloo 2", cursive, sans-serif;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Rating stars display */
.stars-display {
    color: var(--primary);
    font-size: 20px;
    letter-spacing: 2px;
}

/* Score bar */
.score-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.score-bar-label {
    font-size: 14px;
    font-weight: 600;
    min-width: 100px;
}

.score-bar-track {
    flex: 1;
    height: 8px;
    background-color: var(--muted);
    border-radius: 4px;
    overflow: hidden;
}

.score-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 4px;
    transition: width 0.6s ease-out;
}

.score-bar-value {
    font-family: "Baloo 2", cursive, sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    min-width: 32px;
    text-align: right;
}

/* ============================================
   LIVE CASINO PAGE - Evolution card, VIP live, featured
   ============================================ */
.hero-live-casino {
    overflow: hidden;
}

/* Evolution Gaming highlight card */
.evolution-card {
    background-color: var(--card);
    border-radius: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
    max-width: 1040px;
    margin: 0 auto;
}

.evolution-card-inner {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .evolution-card-inner {
        flex-direction: row;
    }
}

.evolution-card-visual {
    flex-shrink: 0;
}

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

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

.evolution-card-content {
    padding: 24px;
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

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

.evolution-card-content p {
    font-size: 15px;
    color: var(--card-foreground);
    opacity: 0.9;
    margin-bottom: 20px;
    flex: 1;
}

.evolution-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

@media (max-width: 479px) {
    .evolution-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

.evolution-stat {
    text-align: center;
    padding: 12px 8px;
    background-color: var(--muted);
    border-radius: 8px;
}

.evolution-stat-number {
    display: block;
    font-family: "Baloo 2", cursive, sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

.evolution-stat-label {
    display: block;
    font-family: "Baloo 2", cursive, sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* VIP Live card */
.vip-live-card {
    background-color: var(--card);
    border-radius: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
    max-width: 1040px;
    margin: 0 auto;
}

.vip-live-card-inner {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .vip-live-card-inner {
        flex-direction: row;
        gap: 0;
    }
}

.vip-live-visual {
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .vip-live-visual {
        width: 40%;
    }
}

.vip-live-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vip-live-content {
    padding: 24px;
    flex: 1;
    min-width: 0;
}

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

.vip-live-content p {
    font-size: 15px;
    color: var(--card-foreground);
    opacity: 0.9;
    margin-bottom: 20px;
}

.vip-live-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.vip-live-feature {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    font-family: "Baloo 2", cursive, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--foreground);
    background-color: var(--muted);
    border-radius: 8px;
    white-space: nowrap;
}

/* ============================================
   BONUS PAGE - Hero, no-deposit card, code boxes
   ============================================ */
.hero-bonus {
    overflow: hidden;
}

.no-deposit-card-wrapper {
    max-width: 840px;
    margin: 0 auto;
}

.no-deposit-highlight-card {
    border: 2px solid var(--primary);
    box-shadow: 0 0 32px rgba(255, 224, 20, 0.12);
}

.no-deposit-highlight-card:hover {
    box-shadow: 0 0 48px rgba(255, 224, 20, 0.2);
}

.no-deposit-card-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

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

.no-deposit-card-visual {
    flex-shrink: 0;
    width: 200px;
}

@media (min-width: 768px) {
    .no-deposit-card-visual {
        width: 240px;
    }
}

.no-deposit-card-visual img {
    width: 100%;
    height: auto;
}

.no-deposit-card-content {
    flex: 1;
    min-width: 0;
}

.no-deposit-code-box {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    .no-deposit-code-box {
        justify-content: center;
    }
}

.bonus-no-deposit-section {
    background: linear-gradient(180deg, var(--background) 0%, #0d150f 100%);
}

.promo-codes-table-wrapper {
    max-width: 840px;
    margin: 0 auto;
}

/* ============================================
   THEME TOGGLE
   ============================================ */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    background: none;
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    color: var(--foreground);
    transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
    flex-shrink: 0;
}

.theme-toggle:hover {
    color: var(--primary);
    border-color: var(--primary);
    background-color: var(--muted);
}

.dark .theme-icon-sun {
    display: block;
}

.dark .theme-icon-moon {
    display: none;
}

.theme-icon-sun {
    display: none;
}

.theme-icon-moon {
    display: block;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--muted-foreground); }

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

.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ============================================
   SECTION HEADING - Used above card grids
   ============================================ */
.section-heading {
    text-align: center;
    margin-bottom: 32px;
}

.section-heading h2 {
    margin-bottom: 8px;
}

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

/* ============================================
   RESPONSIVE TABLE WRAPPER
   ============================================ */
.table-responsive {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 24px;
    border-radius: 8px;
    border: 1px solid var(--border);
}

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

.table-responsive thead th {
    background-color: var(--muted);
    font-family: "Baloo 2", cursive, sans-serif;
    font-weight: 600;
    text-align: left;
    padding: 12px 16px;
    font-size: 14px;
    color: var(--foreground);
    white-space: nowrap;
}

.table-responsive tbody td {
    padding: 10px 16px;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
}

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

.table-responsive tbody tr:hover {
    background-color: var(--input);
}

/* Yellow header variant */
.table-responsive.table-yellow thead th {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

/* Checkmark / X in tables */
.check-yes {
    color: var(--secondary);
    font-weight: 700;
}

.dark .check-yes {
    color: #4edb50;
}

.check-no {
    color: var(--accent);
    font-weight: 700;
}