/* ============================================
   CRAZYBUZZER CASINO - DESIGN SYSTEM
   Dark Royal Casino with Gold Accents
   Mobile-first, Cinzel Decorative + Nunito Sans
   ============================================ */

/* ============================================
   BOX SIZING & RESET
   ============================================ */
*,
*::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 {
    max-width: 100%;
    overflow-x: auto;
}

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

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

section {
    overflow: clip;
}

/* ============================================
   BASE TYPOGRAPHY
   Cinzel Decorative for headings, Nunito Sans for body
   ============================================ */
html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Heading System - Cinzel Decorative */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel Decorative', Georgia, 'Times New Roman', serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--foreground);
    letter-spacing: 0.02em;
}

h1 {
    font-size: clamp(2rem, 5vw + 1rem, 4rem);
    letter-spacing: 0.04em;
}

h2 {
    font-size: clamp(1.5rem, 3vw + 0.5rem, 2.75rem);
}

h3 {
    font-size: clamp(1.25rem, 2vw + 0.5rem, 1.875rem);
    font-weight: 400;
}

h4 {
    font-size: clamp(1.1rem, 1.5vw + 0.4rem, 1.375rem);
    font-weight: 400;
}

p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 0;
}

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

a:hover {
    color: var(--primary-light);
}

ul, ol {
    list-style: none;
}

/* ============================================
   GOLD TEXT GRADIENT - Reusable utility
   ============================================ */
.text-gold {
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   CONTAINER SYSTEM
   ============================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: var(--container-padding-mobile);
}

@media (min-width: 768px) {
    .container {
        padding-inline: var(--container-padding-tablet);
    }
}

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

/* ============================================
   SECTION SPACING
   ============================================ */
.section {
    padding-block: var(--section-gap-mobile);
}

@media (min-width: 1024px) {
    .section {
        padding-block: var(--section-gap-desktop);
    }
}

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

@media (min-width: 1024px) {
    .section-header {
        margin-bottom: 56px;
    }
}

.section-title {
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--muted-foreground);
    max-width: 640px;
    margin-inline: auto;
    line-height: 1.6;
}

/* ============================================
   DOUBLE GOLD VIGNETTE FRAME
   Signature brand element for card borders
   ============================================ */
.vignette-frame {
    position: relative;
    border: 2px solid var(--border);
    border-radius: 12px;
}

.vignette-frame::before {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    pointer-events: none;
    z-index: 1;
}

/* Corner ornament pseudo-elements */
.vignette-frame::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    pointer-events: none;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel Decorative', serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 200ms cubic-bezier(0.25, 0.1, 0.25, 1);
    white-space: nowrap;
    min-height: 48px;
    padding: 0 20px;
}

/* Primary Gold Button */
.btn-primary {
    background: var(--gold-gradient);
    color: var(--primary-foreground);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
    animation: gold-pulse 2s infinite;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #F5D060 0%, #E0BC42 50%, #C8A030 100%);
    color: var(--primary-foreground);
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(212, 175, 55, 0.5);
}

.btn-primary:active {
    transform: translateY(0);
    animation: none;
}

@keyframes gold-pulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3); }
    50% { box-shadow: 0 4px 28px rgba(212, 175, 55, 0.6), 0 0 0 4px rgba(212, 175, 55, 0.12); }
}

/* Ghost / Outline Button */
.btn-ghost {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-light);
    border-color: var(--primary);
}

/* Size variants */
.btn-sm {
    font-size: 12px;
    min-height: 40px;
    padding: 0 16px;
}

.btn-cta {
    font-size: 16px;
    min-height: 56px;
    padding: 0 32px;
    min-width: 280px;
}

.btn-full {
    width: 100%;
}

/* ============================================
   HEADER
   Fixed, 64px mobile / 72px desktop
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(26, 21, 40, 0.96);
    border-bottom: 2px solid var(--border);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 16px;
}

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

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

.logo-text {
    font-family: 'Cinzel Decorative', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--foreground);
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.logo-buzz {
    color: var(--primary);
}

/* Desktop Nav - hidden on mobile by default */
.header-nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--background);
    z-index: 999;
    flex-direction: column;
    align-items: stretch;
    padding: 32px var(--container-padding-mobile);
    overflow-y: auto;
}

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

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

.nav-link {
    display: flex;
    align-items: center;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--foreground);
    text-decoration: none;
    padding: 16px 0;
    border-bottom: 1px solid rgba(138, 106, 46, 0.3);
    min-height: 56px;
    transition: color 200ms ease;
    letter-spacing: 0.04em;
}

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

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

.nav-cta-mobile {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
}

/* Desktop Actions - hidden on mobile */
.header-actions {
    display: none;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* Theme Toggle */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    color: var(--primary);
    flex-shrink: 0;
    transition: background 200ms ease, border-color 200ms ease;
}

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

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

.burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 280ms cubic-bezier(0.25, 0.1, 0.25, 1);
    transform-origin: center;
}

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

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

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

/* Tablet / Desktop breakpoints */
@media (min-width: 768px) {
    :root {
        --header-height: 72px;
    }

    .logo-text {
        font-size: 18px;
    }
}

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

    .mobile-menu-toggle {
        display: none;
    }

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

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

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

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

    .nav-link:hover {
        background: rgba(212, 175, 55, 0.08);
    }

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

    .header-actions {
        display: flex;
    }
}

/* ============================================
   HERO SECTION - Full-bleed radial gradient
   ============================================ */
.hero {
    min-height: 100svh;
    display: flex;
    align-items: center;
    background: radial-gradient(ellipse at center, #2A1040 0%, #1A0A2A 40%, #0D0B14 100%);
    padding-top: calc(var(--header-height) + 32px);
    padding-bottom: 56px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(74, 16, 64, 0.4) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 13px;
    font-family: 'Nunito Sans', sans-serif;
    color: var(--primary);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 700;
}

.hero-mascot {
    width: clamp(180px, 50vw, 340px);
    height: auto;
    animation: mascot-bob 3s ease-in-out infinite;
    filter: drop-shadow(0 16px 48px rgba(212, 175, 55, 0.25));
    position: relative;
}

@keyframes mascot-bob {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-12px) rotate(1deg); }
}

.hero-title {
    font-size: clamp(2rem, 6vw + 0.5rem, 4rem);
    letter-spacing: 0.04em;
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.hero-bonus-numbers {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.hero-amount {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(3rem, 10vw, 5rem);
    font-weight: 700;
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: 0.02em;
}

.hero-amount-plus {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.hero-subtitle {
    font-size: clamp(15px, 2.5vw, 18px);
    color: var(--muted-foreground);
    max-width: 520px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 360px;
}

.hero-actions .btn-primary {
    width: 100%;
}

.hero-login-link {
    font-size: 14px;
    color: var(--muted-foreground);
}

.hero-login-link a {
    color: var(--primary);
}

/* Gold coin rain animation */
.coin-rain {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.coin {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gold-gradient);
    animation: coin-fall linear infinite;
    opacity: 0;
}

@keyframes coin-fall {
    0% { transform: translateY(-20px) rotate(0deg); opacity: 0.8; }
    100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

@media (min-width: 768px) {
    .hero-inner {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
        align-items: center;
        gap: 48px;
    }

    .hero-content {
        flex: 1;
        max-width: 580px;
    }

    .hero-visual {
        flex-shrink: 0;
    }

    .hero-actions {
        align-items: flex-start;
        max-width: 400px;
    }

    .hero-bonus-numbers {
        align-items: flex-start;
    }
}

@media (min-width: 1024px) {
    .hero {
        min-height: 100vh;
        padding-bottom: 80px;
    }

    .hero-mascot {
        width: 340px;
    }
}

/* ============================================
   MASCOT SCENES - Full-bleed dark sections
   ============================================ */
.mascot-scene {
    background: var(--card);
    padding-block: var(--section-gap-mobile);
    text-align: center;
    position: relative;
}

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

.mascot-scene-img {
    width: clamp(200px, 60vw, 320px);
    animation: mascot-bob 3s ease-in-out infinite;
    filter: drop-shadow(0 12px 32px rgba(212, 175, 55, 0.2));
}

.mascot-scene-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mascot-scene-text {
    font-size: 17px;
    color: var(--muted-foreground);
    max-width: 480px;
    margin-inline: auto;
}

@media (min-width: 768px) {
    .mascot-scene-inner {
        flex-direction: row;
        text-align: left;
        justify-content: center;
        gap: 48px;
    }

    .mascot-scene-img {
        flex-shrink: 0;
    }

    .mascot-scene-content {
        max-width: 480px;
    }
}

@media (min-width: 1024px) {
    .mascot-scene {
        padding-block: var(--section-gap-desktop);
    }
}

/* ============================================
   GAME CARDS
   Карточки игр - 2 col mobile, 3 tablet, 4 desktop
   ============================================ */
.game-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

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

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

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

.game-card {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 220ms ease-out, box-shadow 220ms ease-out;
    position: relative;
    min-width: 0;
}

.game-card::before {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    pointer-events: none;
    z-index: 1;
}

.game-card:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.35);
}

.game-card-image-wrap {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--muted);
}

.game-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 300ms ease;
}

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

.game-card-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--muted);
}

.game-card-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--accent);
    color: var(--accent-foreground);
    font-size: 10px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 8px;
    border-radius: 4px;
    z-index: 2;
}

.game-card-body {
    padding: var(--card-padding-mobile);
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.game-card-name {
    font-family: 'Cinzel Decorative', serif;
    font-size: 13px;
    color: var(--foreground);
    line-height: 1.3;
    font-weight: 700;
    text-align: center;
}

.game-card-provider {
    font-size: 12px;
    color: var(--muted-foreground);
    text-align: center;
}

.game-card-btn {
    font-size: 12px;
    min-height: 40px;
    margin-top: auto;
}

@media (min-width: 1024px) {
    .game-card-body {
        padding: var(--card-padding-desktop);
    }

    .game-card-name {
        font-size: 14px;
    }

    .game-card-btn {
        min-height: 48px;
        font-size: 13px;
    }
}

/* Carousel (horizontal snap) */
.game-carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}

.game-carousel::-webkit-scrollbar {
    height: 4px;
}

.game-carousel::-webkit-scrollbar-track {
    background: transparent;
}

.game-carousel::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 2px;
}

.game-carousel .game-card {
    flex-shrink: 0;
    width: calc(50vw - 32px);
    scroll-snap-align: start;
}

@media (min-width: 600px) {
    .game-carousel .game-card {
        width: calc(33.333vw - 32px);
        max-width: 240px;
    }
}

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

    .game-carousel .game-card {
        width: auto;
        max-width: none;
    }
}

/* ============================================
   PROMO CARDS
   Карточки бонусов
   ============================================ */
.promo-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
}

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

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

.promo-card {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: var(--card-padding-mobile);
    position: relative;
    overflow: hidden;
    transition: transform 220ms ease-out, box-shadow 220ms ease-out;
}

.promo-card::before {
    content: '';
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    pointer-events: none;
    z-index: 0;
}

.promo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.2);
}

.promo-card--highlight {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.3), 0 8px 32px rgba(212, 175, 55, 0.15);
}

.promo-card--highlight::before {
    border-color: rgba(212, 175, 55, 0.4);
}

.promo-card-vignette {
    display: none;
}

.promo-card-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.promo-card-mascot {
    font-size: 48px;
    line-height: 1;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    background: var(--accent);
    color: var(--accent-foreground);
    font-size: 11px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: 4px;
    align-self: flex-start;
}

.promo-card-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(1.1rem, 2.5vw, 1.375rem);
    font-weight: 700;
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.promo-card-amount {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: 0.02em;
}

.promo-card-amount-label {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: var(--primary);
    line-height: 1;
}

.promo-card-description {
    font-size: 16px;
    color: var(--foreground);
    line-height: 1.6;
}

.promo-card-conditions {
    font-size: 13px;
    color: var(--muted-foreground);
    line-height: 1.5;
}

.promo-card-btn {
    margin-top: 8px;
}

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

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-accordion {
    border-top: 1px solid var(--border);
}

.faq-item {
    border-bottom: 1px solid var(--border);
    background: var(--background);
    transition: background 200ms ease;
}

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

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 16px;
    min-height: 56px;
    text-align: left;
    transition: background 200ms ease;
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.04);
}

.faq-question-text {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--foreground);
    line-height: 1.4;
    flex: 1;
}

.faq-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    transition: transform 200ms cubic-bezier(0.25, 0.1, 0.25, 1);
}

.faq-item.is-open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    overflow: hidden;
    transition: height 220ms cubic-bezier(0.25, 0.1, 0.25, 1);
}

.faq-answer[hidden] {
    display: block;
    height: 0;
    visibility: hidden;
}

.faq-answer-inner {
    padding: 0 16px 24px 16px;
    font-size: 17px;
    color: var(--muted-foreground);
    line-height: 1.6;
}

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

/* ============================================
   PAYMENT METHOD CARDS
   ============================================ */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

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

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

.payment-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    transition: border-color 200ms ease, box-shadow 200ms ease;
}

.payment-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.2), 0 4px 16px rgba(212, 175, 55, 0.1);
}

.payment-card-logo {
    flex-shrink: 0;
    width: 48px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    border-radius: 4px;
    overflow: hidden;
}

.payment-card-logo svg {
    width: 100%;
    height: 100%;
}

.payment-card-logo-text {
    font-family: 'Cinzel Decorative', serif;
    font-size: 11px;
    color: var(--primary);
    font-weight: 700;
}

.payment-card-info {
    flex: 1;
    min-width: 0;
}

.payment-card-name {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--foreground);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.payment-card-detail {
    font-size: 12px;
    color: var(--muted-foreground);
    line-height: 1.4;
}

.payment-card-badge {
    flex-shrink: 0;
    font-size: 10px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 3px 7px;
    border-radius: 4px;
}

.payment-card-badge--green {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
}

.payment-card-badge--gold {
    background: rgba(212, 175, 55, 0.15);
    color: var(--primary);
}

/* Payment scroll strip (for summary pages) */
.payment-scroll-strip {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    scrollbar-width: none;
}

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

.payment-scroll-strip .payment-card {
    flex-shrink: 0;
    scroll-snap-align: start;
    min-width: 200px;
}

/* ============================================
   CTA BANNER
   Full-bleed section before footer
   ============================================ */
.cta-banner {
    background: radial-gradient(ellipse at center, #2A1040 0%, #180828 50%, #0D0B14 100%);
    padding-block: 56px;
    position: relative;
    overflow: clip;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 10% 90%, rgba(212, 175, 55, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(74, 16, 64, 0.5) 0%, transparent 40%);
    pointer-events: none;
}

.cta-banner-inner {
    position: relative;
    z-index: 1;
}

.cta-banner-vignette {
    display: none;
}

.cta-banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    max-width: 680px;
    margin-inline: auto;
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 40px 24px;
    background: rgba(26, 21, 40, 0.4);
    position: relative;
}

.cta-banner-content::before {
    content: '';
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 14px;
    pointer-events: none;
}

.cta-banner-mascot {
    font-size: 80px;
    line-height: 1;
    animation: mascot-bob 3s ease-in-out infinite;
    filter: drop-shadow(0 8px 24px rgba(212, 175, 55, 0.3));
}

.cta-banner-title {
    font-size: clamp(1.5rem, 4vw, 3rem);
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.04em;
}

.cta-banner-subtitle {
    font-size: 17px;
    color: var(--muted-foreground);
    max-width: 480px;
    line-height: 1.6;
}

.cta-banner-micro {
    font-size: 13px;
    color: var(--muted-foreground);
    margin-top: -8px;
}

@media (min-width: 1024px) {
    .cta-banner {
        padding-block: var(--section-gap-desktop);
    }

    .cta-banner-content {
        padding: 56px 64px;
    }
}

/* ============================================
   PROVIDERS ROW
   ============================================ */
.providers-row {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    scrollbar-width: none;
    justify-content: flex-start;
    outline: none;
}

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

.providers-row::-webkit-scrollbar {
    display: none;
}

.provider-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 20px;
    height: 48px;
    flex-shrink: 0;
    scroll-snap-align: start;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--muted-foreground);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: border-color 200ms ease, color 200ms ease, box-shadow 200ms ease;
    white-space: nowrap;
    cursor: default;
    min-width: 120px;
}

.provider-pill:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.2);
}

@media (min-width: 1024px) {
    .providers-row {
        justify-content: center;
        overflow: visible;
        flex-wrap: wrap;
    }
}

/* ============================================
   ADVANTAGES / FEATURE CARDS
   3×2 grid desktop, 2×3 mobile
   ============================================ */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

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

.advantage-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    transition: transform 220ms ease-out, box-shadow 220ms ease-out;
}

.advantage-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.15);
}

.advantage-icon {
    font-size: 40px;
    line-height: 1;
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
}

.advantage-title {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: var(--foreground);
    line-height: 1.3;
}

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

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

    .advantage-icon {
        font-size: 48px;
    }

    .advantage-title {
        font-size: 16px;
    }
}

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

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

.vip-tier-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.vip-tier-info {
    flex: 1;
    min-width: 0;
}

.vip-tier-name {
    font-family: 'Cinzel Decorative', serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
}

.vip-tier-perk {
    font-size: 13px;
    color: var(--muted-foreground);
    margin-top: 2px;
}

@media (min-width: 768px) {
    .vip-tiers {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .vip-tier {
        flex: 1;
        min-width: 140px;
        flex-direction: column;
        text-align: center;
        padding: 24px 16px;
    }
}

/* ============================================
   RATING BARS
   ============================================ */
.rating-bars {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rating-bar-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rating-bar-label {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    color: var(--foreground);
}

.rating-bar-score {
    color: var(--primary);
}

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

.rating-bar-fill {
    height: 100%;
    background: var(--gold-gradient);
    border-radius: 4px;
    width: 0;
    transition: width 800ms cubic-bezier(0.25, 0.1, 0.25, 1);
}

.rating-bar-item.is-visible .rating-bar-fill {
    width: var(--fill-pct);
}

/* ============================================
   STAR RATING
   ============================================ */
.star-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.star {
    font-size: 20px;
    color: var(--muted);
    transition: color 300ms ease;
}

.star.filled {
    color: var(--primary);
}

.star.half {
    background: linear-gradient(to right, var(--primary) 50%, var(--muted) 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   PROS & CONS
   ============================================ */
.pros-cons {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
}

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

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

.pros-list {
    border-left: 3px solid #4ade80;
}

.cons-list {
    border-left: 3px solid var(--accent);
}

.pros-cons-title {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.pros-list .pros-cons-title {
    color: #4ade80;
}

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

.pros-cons-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(138, 106, 46, 0.2);
    font-size: 15px;
    color: var(--foreground);
    line-height: 1.5;
}

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

.pros-cons-icon {
    flex-shrink: 0;
    font-size: 16px;
    margin-top: 1px;
}

/* ============================================
   METRIC PILLS
   ============================================ */
.metric-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.metric-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 13px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    color: var(--foreground);
    white-space: nowrap;
}

.metric-pill-icon {
    font-size: 14px;
}

/* ============================================
   TABLES
   Responsive with scrollable wrapper
   ============================================ */
.table-wrapper {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
    border: 1px solid var(--border);
    outline: none;
}

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

table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 15px;
    min-width: 480px;
}

thead {
    background: var(--primary);
}

thead th {
    color: var(--primary-foreground);
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 14px 16px;
    text-align: left;
    white-space: nowrap;
}

tbody tr {
    border-bottom: 1px solid rgba(138, 106, 46, 0.2);
    transition: background 150ms ease;
}

tbody tr:nth-child(even) {
    background: var(--card);
}

tbody tr:hover {
    background: rgba(212, 175, 55, 0.05);
}

tbody td {
    padding: 12px 16px;
    color: var(--foreground);
    line-height: 1.4;
}

td.muted {
    color: var(--muted-foreground);
    font-size: 13px;
}

td.highlight {
    color: var(--primary);
    font-weight: 700;
}

td.warning {
    color: var(--accent);
    font-weight: 700;
}

/* ============================================
   STEP CARDS - How-to guides
   ============================================ */
.steps-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
}

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

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

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

.step-number {
    font-family: 'Cinzel Decorative', serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.step-icon {
    font-size: 32px;
}

.step-title {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: var(--foreground);
}

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

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

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

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

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.testimonial-meta {
    flex: 1;
    min-width: 0;
}

.testimonial-name {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--foreground);
}

.testimonial-date {
    font-size: 12px;
    color: var(--muted-foreground);
}

.testimonial-text {
    font-size: 15px;
    color: var(--muted-foreground);
    line-height: 1.6;
    font-style: italic;
}

/* ============================================
   TRUST STRIP / BADGES
   ============================================ */
.trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--muted-foreground);
    font-weight: 700;
    font-family: 'Nunito Sans', sans-serif;
}

.trust-badge-item svg,
.trust-badge-item img {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

/* ============================================
   CALLOUT / HIGHLIGHT BOXES
   ============================================ */
.callout {
    padding: 16px 20px;
    border-radius: 10px;
    border-left: 4px solid;
    background: rgba(26, 21, 40, 0.8);
    font-size: 15px;
    line-height: 1.6;
}

.callout-info {
    border-color: var(--primary);
    background: rgba(212, 175, 55, 0.08);
    color: var(--foreground);
}

.callout-warning {
    border-color: var(--accent);
    background: rgba(232, 130, 12, 0.08);
    color: var(--foreground);
}

.callout-success {
    border-color: #4ade80;
    background: rgba(74, 222, 128, 0.08);
    color: var(--foreground);
}

.callout-title {
    font-weight: 800;
    font-family: 'Nunito Sans', sans-serif;
    margin-bottom: 6px;
    font-size: 15px;
}

/* ============================================
   SUMMARY / TL;DR BOX
   ============================================ */
.summary-box {
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 32px;
}

.summary-box-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.summary-box-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.summary-box-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--foreground);
    line-height: 1.5;
}

.summary-box-item::before {
    content: '✦';
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 1px;
}

/* ============================================
   STAT HIGHLIGHT
   ============================================ */
.stat-highlight {
    text-align: center;
    padding: 24px;
}

.stat-highlight-number {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-highlight-label {
    font-size: 15px;
    color: var(--muted-foreground);
    margin-top: 8px;
}

/* ============================================
   PULL QUOTE
   ============================================ */
blockquote.pull-quote {
    border-left: 4px solid var(--primary);
    padding: 16px 20px;
    margin: 24px 0;
    background: rgba(212, 175, 55, 0.04);
    border-radius: 0 8px 8px 0;
}

blockquote.pull-quote p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-style: italic;
    color: var(--foreground);
    line-height: 1.6;
}

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

/* ============================================
   SEO TEXT SECTION
   Long-form with sidebar layout on desktop
   ============================================ */
.seo-section {
    background: var(--background);
    padding-block: var(--section-gap-mobile);
}

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

.seo-content h2,
.seo-content h3,
.seo-content h4 {
    margin-top: 32px;
    margin-bottom: 16px;
}

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

.seo-content p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--muted-foreground);
}

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

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

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

.seo-content li {
    padding: 6px 0 6px 24px;
    position: relative;
    color: var(--muted-foreground);
    font-size: 16px;
    line-height: 1.6;
}

.seo-content ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 12px;
    top: 10px;
}

.seo-content ol {
    counter-reset: seo-counter;
}

.seo-content ol li::before {
    counter-increment: seo-counter;
    content: counter(seo-counter) '.';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.seo-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.seo-sidebar-card-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

@media (min-width: 1024px) {
    .seo-section {
        padding-block: var(--section-gap-desktop);
    }

    .seo-layout {
        grid-template-columns: 1fr 280px;
        align-items: start;
    }

    .seo-sidebar {
        position: sticky;
        top: calc(var(--header-height) + 24px);
    }
}

/* ============================================
   ZAHLUNGEN PAGE - Payment hero orbit animation
   ============================================ */
.zahlungen-hero .hero {
    padding-bottom: 56px;
}

.payment-hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-orbit {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.orbit-card {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 32px;
    border-radius: 6px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    animation: orbit-float 4s ease-in-out infinite;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.orbit-card--visa {
    background: #1A1F71;
    color: white;
    top: 10%;
    right: 0;
    animation-delay: 0s;
}

.orbit-card--mc {
    background: #252525;
    color: #F79E1B;
    bottom: 20%;
    right: -10px;
    animation-delay: 1s;
}

.orbit-card--btc {
    background: #F7931A;
    color: white;
    font-size: 18px;
    top: 20%;
    left: -10px;
    animation-delay: 2s;
}

.orbit-card--psc {
    background: #004F9F;
    color: white;
    font-size: 9px;
    bottom: 10%;
    left: 0;
    animation-delay: 3s;
}

@keyframes orbit-float {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-10px) rotate(3deg); }
}

/* ============================================
   SPIELE PAGE - Hero jackpot flash animation
   ============================================ */
.spiele-hero .hero-mascot,
.jackpot-flash {
    animation: mascot-bob 3s ease-in-out infinite, jackpot-glow 1.5s ease-in-out infinite;
}

@keyframes jackpot-glow {
    0%, 100% { filter: drop-shadow(0 16px 48px rgba(212, 175, 55, 0.25)); }
    50% { filter: drop-shadow(0 16px 64px rgba(255, 220, 0, 0.6)) brightness(1.08); }
}

/* Provider brand pill */
.provider-brand-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 6px 18px;
    font-size: 13px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* Category tabs wrapper - sticky */
.category-tabs-wrapper {
    position: sticky;
    top: var(--header-height);
    z-index: 100;
    background: var(--background);
    border-bottom: 1px solid var(--border);
    padding-block: 0;
}

/* Jackpot section background */
.jackpot-section-bg {
    background: linear-gradient(135deg, #0D0B14 0%, #1A0A20 50%, #0D0B14 100%);
}

/* Mobile badges row */
.mobile-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.mobile-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 13px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    color: var(--primary);
}

/* Sidebar provider pills */
.sidebar-provider-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.sidebar-provider-pill {
    display: inline-flex;
    background: var(--muted);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 11px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Live casino section */
.live-casino-section {
    background: rgba(40, 5, 5, 0.4);
}

/* ============================================
   CATEGORY TABS (Spiele page)
   ============================================ */
.category-tabs-bar {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 32px;
}

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

.category-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--muted-foreground);
    white-space: nowrap;
    transition: color 200ms ease, border-color 200ms ease;
    min-height: 44px;
    margin-bottom: -1px;
    flex-shrink: 0;
}

.category-tab:hover {
    color: var(--primary);
}

.category-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

/* ============================================
   LIVE CASINO SECTION
   Red-tinted cards
   ============================================ */
.live-game-card {
    background: rgba(40, 10, 10, 0.8);
    border: 1px solid rgba(192, 57, 43, 0.4);
}

.live-badge {
    background: #C0392B;
    color: white;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 2px 6px;
    border-radius: 3px;
    animation: live-pulse 2s infinite;
}

@keyframes live-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* ============================================
   FOOTER
   3-col desktop, 1-col mobile
   ============================================ */
.site-footer {
    background: var(--card);
    border-top: 2px solid var(--border);
    padding-block: 48px 24px;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

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

.footer-col {
    min-width: 0;
}

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

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

.footer-logo-text {
    font-family: 'Cinzel Decorative', serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--foreground);
}

.footer-logo-sub {
    display: block;
    font-size: 11px;
    color: var(--muted-foreground);
}

.footer-col-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

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

.footer-link {
    font-size: 15px;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 200ms ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-link::before {
    content: '›';
    color: var(--border);
    font-size: 16px;
}

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

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

.payment-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    overflow: hidden;
    opacity: 0.8;
    transition: opacity 200ms ease;
}

.payment-badge:hover {
    opacity: 1;
}

.footer-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

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

.trust-badge svg {
    flex-shrink: 0;
}

.trust-badge span {
    font-size: 10px;
    color: var(--muted-foreground);
    font-family: 'Nunito Sans', sans-serif;
    line-height: 1.2;
    max-width: 60px;
    text-align: center;
}

.footer-rg-link {
    font-size: 13px;
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(138, 106, 46, 0.3);
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-disclaimer {
    font-size: 12px;
    color: var(--muted-foreground);
    line-height: 1.6;
    max-width: 800px;
}

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

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

/* ============================================
   SCROLL ANIMATIONS
   IntersectionObserver-driven
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 500ms cubic-bezier(0.25, 0.1, 0.25, 1), transform 500ms cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

/* Stagger delays for grid children */
.animate-on-scroll:nth-child(1) { transition-delay: 0ms; }
.animate-on-scroll:nth-child(2) { transition-delay: 80ms; }
.animate-on-scroll:nth-child(3) { transition-delay: 160ms; }
.animate-on-scroll:nth-child(4) { transition-delay: 240ms; }
.animate-on-scroll:nth-child(5) { transition-delay: 320ms; }
.animate-on-scroll:nth-child(6) { transition-delay: 400ms; }
.animate-on-scroll:nth-child(7) { transition-delay: 480ms; }
.animate-on-scroll:nth-child(8) { transition-delay: 560ms; }

/* ============================================
   COUNTER ANIMATION
   ============================================ */
.counter-number {
    display: inline-block;
}

/* ============================================
   JACKPOT COUNTER BADGE (game cards)
   ============================================ */
.jackpot-counter {
    position: absolute;
    bottom: 8px;
    left: 8px;
    right: 8px;
    background: rgba(13, 11, 20, 0.85);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 4px 8px;
    text-align: center;
    font-family: 'Cinzel Decorative', serif;
    font-size: 11px;
    color: var(--primary);
    font-weight: 700;
}

/* ============================================
   GOLDEN SHIMMER BORDER (jackpot cards)
   ============================================ */
.shimmer-border {
    animation: border-shimmer 2s linear infinite;
}

@keyframes border-shimmer {
    0%, 100% { border-color: #D4AF37; }
    25% { border-color: #F5D060; }
    50% { border-color: #B8942A; }
    75% { border-color: #F0C93A; }
}

/* ============================================
   BEWERTUNG PAGE - Hero Rating Display
   ============================================ */
.bewertung-hero .hero {
    padding-bottom: 56px;
}

.bewertung-hero-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    margin-bottom: 8px;
}

.bewertung-score-label {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.02em;
}

/* ============================================
   BEWERTUNG PAGE - Rating Layout (2-col desktop)
   ============================================ */
.bewertung-rating-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
    align-items: start;
}

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

/* ============================================
   BEWERTUNG PAGE - License Cards
   ============================================ */
.license-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
}

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

.license-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: box-shadow 220ms ease-out;
}

.license-card:hover {
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.15);
}

.license-card-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
}

.license-card-icon svg {
    width: 56px;
    height: 56px;
}

.license-card-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: 18px;
    font-weight: 700;
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.license-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.license-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--muted-foreground);
    line-height: 1.5;
    padding: 0;
    position: static;
}

.license-card-list li::before {
    content: '✦';
    color: var(--primary);
    flex-shrink: 0;
    font-size: 12px;
    margin-top: 3px;
}

/* ============================================
   BEWERTUNG PAGE - Aggregate Bar
   ============================================ */
.bewertung-aggregate-bar {
    max-width: 600px;
    margin-inline: auto;
}

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

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

.security-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.security-icon {
    font-size: 44px;
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
}

.security-title {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: var(--foreground);
}

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

/* ============================================
   AGGREGATE RATING
   ============================================ */
.aggregate-rating {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.aggregate-score {
    font-family: 'Cinzel Decorative', serif;
    font-size: 3rem;
    font-weight: 700;
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    flex-shrink: 0;
}

.aggregate-info {
    flex: 1;
    min-width: 0;
}

.aggregate-stars {
    margin-bottom: 4px;
}

.aggregate-count {
    font-size: 13px;
    color: var(--muted-foreground);
}

/* ============================================
   QUICK VERDICT CARD
   ============================================ */
.verdict-card {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    position: relative;
}

.verdict-card::before {
    content: '';
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    pointer-events: none;
}

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

.text-primary { color: var(--primary); }
.text-muted { color: var(--muted-foreground); }
.text-accent { color: var(--accent); }
.text-success { color: #4ade80; }
.text-foreground { color: var(--foreground); }

.font-display { font-family: 'Cinzel Decorative', serif; }
.font-body { font-family: 'Nunito Sans', sans-serif; }

.mt-4 { margin-top: 4px; }
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }

.mb-4 { margin-bottom: 4px; }
.mb-8 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

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

.hidden { display: none !important; }

.full-bleed {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
}

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

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }
}

/* Body lock when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

/* ============================================
   HERO TRUST ROW (index.html)
   ============================================ */
.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.trust-mini-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 100px;
    padding: 4px 12px;
    font-size: 12px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

/* ============================================
   BONUS DISCLAIMER (index.html)
   ============================================ */
.bonus-disclaimer-link {
    text-decoration: underline !important;
    text-underline-offset: 3px;
}

/* Links in text blocks must be distinguishable without color */
.seo-content a,
.bonus-disclaimer a,
.footer-disclaimer a,
.callout a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.bonus-disclaimer {
    margin-top: 24px;
    padding: 14px 20px;
    background: rgba(26, 21, 40, 0.8);
    border: 1px solid rgba(138, 106, 46, 0.4);
    border-radius: 10px;
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.6;
    text-align: center;
}

/* ============================================
   TABLE NOTE LINK - must be distinguishable without color
   ============================================ */
.bonus-table-link {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ============================================
   MASCOT SCENES - variants
   ============================================ */
.jackpot-scene {
    background: linear-gradient(135deg, #0D0B14 0%, #1A1528 50%, #0D0B14 100%);
}

.treasure-scene {
    background: linear-gradient(135deg, #160822 0%, #0D0B14 50%, #160822 100%);
}

.cheque-scene {
    background: linear-gradient(135deg, #0D0B14 0%, #1A1035 50%, #0D0B14 100%);
}

.mascot-scene-reverse {
    flex-direction: column-reverse;
}

@media (min-width: 768px) {
    .mascot-scene-reverse {
        flex-direction: row-reverse;
    }
}

/* ============================================
   PROVIDERS SECTION
   ============================================ */
.providers-section {
    background: var(--card);
}

/* ============================================
   SEO SIDEBAR EXTRAS (index.html)
   ============================================ */
.sidebar-info-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sidebar-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(138, 106, 46, 0.2);
    font-size: 14px;
    gap: 8px;
}

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

.sidebar-info-label {
    color: var(--muted-foreground);
    flex-shrink: 0;
}

.sidebar-info-value {
    font-weight: 700;
    color: var(--foreground);
    text-align: right;
}

.sidebar-rating {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sidebar-trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.sidebar-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
    font-size: 11px;
    color: var(--muted-foreground);
    line-height: 1.3;
    font-family: 'Nunito Sans', sans-serif;
}

.trust-sidebar-card .sidebar-trust-badges {
    margin-bottom: 0;
}

/* ============================================
   SEO INTERNAL LINKS GRID (index.html)
   ============================================ */
.seo-link-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 16px;
    padding-left: 0;
}

@media (min-width: 600px) {
    .seo-link-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.seo-nav-link {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 16px;
    text-decoration: none;
    color: var(--foreground);
    transition: border-color 200ms ease, box-shadow 200ms ease;
}

.seo-nav-link:hover {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.2);
    color: var(--foreground);
}

.seo-nav-link strong {
    display: block;
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 2px;
}

.seo-nav-link small {
    font-size: 12px;
    color: var(--muted-foreground);
    line-height: 1.4;
}

.seo-nav-icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Override seo-content ul li::before for seo-link-grid */
.seo-link-grid li::before {
    display: none;
}

.seo-link-grid li {
    padding-left: 0;
}

/* ============================================
   PROVIDER PILL TEXT
   ============================================ */
.provider-logo-text {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ============================================
   BONUS PAGE - WELCOME BONUS HERO CARD
   ============================================ */
.bonus-hero {
    background: radial-gradient(ellipse at center, #2A1040 0%, #1A0A2A 40%, #0D0B14 100%);
}

.welcome-bonus-hero {
    max-width: 860px;
    margin-inline: auto;
}

.welcome-bonus-card {
    background: var(--card);
    border-radius: 20px;
}

.welcome-bonus-card-inner {
    padding: var(--card-padding-mobile);
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

@media (min-width: 1024px) {
    .welcome-bonus-card-inner {
        padding: var(--card-padding-desktop);
    }
}

.welcome-bonus-mascot-corner {
    position: absolute;
    top: -20px;
    right: 16px;
    z-index: 2;
    pointer-events: none;
}

.welcome-bonus-mascot-corner img {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 8px 20px rgba(212,175,55,0.3));
}

@media (min-width: 768px) {
    .welcome-bonus-mascot-corner img {
        width: 120px;
        height: 120px;
    }

    .welcome-bonus-mascot-corner {
        right: 28px;
        top: -30px;
    }
}

.welcome-bonus-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-right: 80px;
}

@media (min-width: 768px) {
    .welcome-bonus-header {
        padding-right: 140px;
    }
}

.welcome-bonus-numbers {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.welcome-bonus-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.welcome-bonus-divider {
    font-family: 'Cinzel Decorative', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    flex-shrink: 0;
}

.welcome-bonus-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.welcome-bonus-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 16px;
    color: var(--foreground);
    line-height: 1.5;
    padding: 0;
}

.welcome-bonus-features li::before {
    display: none;
}

.wb-icon {
    flex-shrink: 0;
    font-size: 18px;
    margin-top: 1px;
}

.wagering-callout {
    margin: 0;
}

/* ============================================
   BONUS PAGE - NO DEPOSIT SECTION
   ============================================ */
.no-deposit-section {
    background: var(--card);
}

.no-deposit-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    align-items: center;
}

@media (min-width: 768px) {
    .no-deposit-layout {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

.no-deposit-card {
    background: var(--background);
    border-radius: 20px;
}

.no-deposit-card-inner {
    padding: var(--card-padding-mobile);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 1024px) {
    .no-deposit-card-inner {
        padding: var(--card-padding-desktop);
    }
}

.no-deposit-badge {
    background: rgba(232, 130, 12, 0.15);
    color: var(--accent);
    border: 1px solid rgba(232, 130, 12, 0.3);
    font-size: 12px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 5px 12px;
    border-radius: 100px;
    display: inline-flex;
    align-self: flex-start;
}

.no-deposit-amount {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.no-deposit-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.no-deposit-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.no-deposit-step-num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: var(--primary-foreground);
    font-family: 'Cinzel Decorative', serif;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.no-deposit-step div strong {
    display: block;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: var(--foreground);
    margin-bottom: 2px;
}

.no-deposit-step div p {
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.5;
    margin: 0;
}

.no-deposit-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.no-deposit-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

/* ============================================
   BONUS PAGE - VIP TIERS FULL
   ============================================ */
.vip-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
    align-items: start;
}

@media (min-width: 1024px) {
    .vip-layout {
        grid-template-columns: 1fr 280px;
        gap: 48px;
    }
}

.vip-tiers-full {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

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

@media (min-width: 1024px) {
    .vip-tiers-full {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 10px;
    }
}

.vip-tier-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    transition: transform 220ms ease-out, box-shadow 220ms ease-out;
}

.vip-tier-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.15);
}

.vip-tier-card--highlight {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.3), 0 8px 32px rgba(212, 175, 55, 0.15);
    background: linear-gradient(135deg, #1A1528 0%, #2A1040 100%);
}

.vip-bronze { border-color: #CD7F32; }
.vip-silver { border-color: #C0C0C0; }
.vip-gold { border-color: #FFD700; }
.vip-platin { border-color: #E5E4E2; }

.vip-tier-icon {
    font-size: 32px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4));
}

.vip-tier-card .vip-tier-name {
    font-family: 'Cinzel Decorative', serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.vip-tier-level {
    font-size: 11px;
    color: var(--muted-foreground);
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.vip-tier-perks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}

.vip-tier-perks li {
    font-size: 11px;
    color: var(--muted-foreground);
    line-height: 1.4;
    padding: 3px 0;
    border-bottom: 1px solid rgba(138,106,46,0.15);
    text-align: left;
}

.vip-tier-perks li::before {
    display: none;
}

.vip-tier-perks li:last-child {
    border-bottom: none;
}

.vip-tier-req {
    font-size: 11px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    color: var(--primary);
    margin-top: 4px;
}

.vip-mascot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.vip-mascot-img {
    width: clamp(200px, 60vw, 280px);
    filter: drop-shadow(0 12px 32px rgba(212, 175, 55, 0.25));
    animation: mascot-bob 3s ease-in-out infinite;
}

.vip-mascot-text {
    max-width: 280px;
}

/* ============================================
   BONUS PAGE - WAGERING SECTION
   ============================================ */
.wagering-section {
    background: var(--card);
}

.wagering-layout {
    max-width: 900px;
}

.mb-32 {
    margin-bottom: 32px;
}