/*
 * CASEA CASINO - DESIGN SYSTEM
 * Premium cocktail-lounge aesthetic: dark backgrounds, deep blue neon accents,
 * sophisticated model photography, ice-glass textures.
 * Fonts: Syne (headings) + Outfit (body)
 * Single dark theme - no light/dark toggle
 */

/* ============================================
   DESIGN TOKENS
   Dark cocktail-lounge palette
   ============================================ */
:root {
    /* Backgrounds */
    --background: #020617;
    --surface: #0F172A;
    --surface-hover: #16243D;

    /* Text */
    --foreground: #F1F5F9;
    --foreground-secondary: #94A3B8;

    /* Brand - electric blue */
    --primary: #2563EB;
    --primary-hover: #1D4ED8;
    --primary-foreground: #FFFFFF;

    /* Accent - cocktail neon cyan */
    --accent: #22D3EE;
    --accent-hover: #d3f8fe;

    /* Borders */
    --border: #1E293B;
    --border-hover: #334155;

    /* Focus ring */
    --ring: #2563EB;

    /* Gradients */
    --gradient-blue: linear-gradient(135deg, #3B82F6, #22D3EE);
    --gradient-navy: linear-gradient(180deg, #020617 0%, #0F172A 100%);
    --gradient-hero: linear-gradient(90deg, rgba(2, 6, 23, 0.95) 0%, rgba(2, 6, 23, 0.7) 50%, rgba(2, 6, 23, 0.25) 100%);

    /* Typography */
    --font-heading: "Syne", sans-serif;
    --font-body: "Outfit", sans-serif;

    /* Spacing - 8px base grid */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 56px;
    --space-2xl: 96px;

    /* Container */
    --container-max: 1200px;
    --container-narrow: 800px;

    /* Radius */
    --radius: 8px;
    --radius-lg: 16px;

    /* Transitions */
    --transition: 300ms ease-out;

    /* Shadows */
    --shadow-glow: 0 0 30px rgba(37, 99, 235, 0.25);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-header: 0 2px 20px rgba(0, 0, 0, 0.5);

    /* Header height */
    --header-height: 64px;
}

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

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background: var(--background);
    color: var(--foreground);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition);
}

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

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

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

section {
    overflow: clip;
}

/* ============================================
   TYPOGRAPHY
   Syne headings / Outfit body
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--foreground);
    line-height: 1.2;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 800;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 600;
}

h3 {
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 500;
}

h4 {
    font-size: clamp(18px, 2vw, 20px);
    font-weight: 500;
}

p {
    margin: 0 0 28px;
}

strong {
    color: var(--foreground);
    font-weight: 600;
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

.container-narrow {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

.section {
    padding: var(--space-xl) 0;
}

@media (min-width: 1024px) {
    .section {
        padding: var(--space-2xl) 0;
    }
}

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

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

.section-subtitle {
    font-size: 17px;
    color: var(--foreground-secondary);
    max-width: 600px;
    margin-bottom: 0;
}

main {
    min-height: 50vh;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 8px 16px;
    z-index: 1001;
    border-radius: 0 0 var(--radius) 0;
    transition: top 200ms ease-out;
}

.skip-link:focus {
    top: 0;
    color: var(--primary-foreground);
}

*:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

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

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(2, 6, 23, 0.85);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition), background var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-header);
    background: rgba(2, 6, 23, 0.98);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: var(--space-md);
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--foreground);
    flex-shrink: 0;
}

.site-brand:hover {
    color: var(--foreground);
}

.logo {
    height: 40px;
    width: 40px;
    object-fit: contain;
    border-radius: var(--radius);
}

.brand-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.02em;
}

/* Desktop navigation */
.primary-nav {
    display: none;
    align-items: center;
    gap: var(--space-lg);
}

@media (min-width: 1024px) {
    .primary-nav {
        display: flex;
    }
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: var(--space-lg);
}

.nav-link {
    color: var(--foreground);
    font-size: 16px;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: color var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition);
}

.nav-link:hover {
    color: var(--accent);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* Mobile menu toggle */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--foreground);
    margin: 0 auto;
    transition: transform var(--transition), opacity var(--transition);
    border-radius: 2px;
}

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

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

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

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

/* ============================================
   MOBILE MENU DRAWER
   Fixed panel below header, opaque background
   ============================================ */
@media (max-width: 1023px) {
    .primary-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--background);
        z-index: 999;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-md);
        padding: var(--space-lg) var(--space-sm);
        overflow-y: auto;
    }

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

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

    .nav-list li {
        border-bottom: 1px solid var(--border);
    }

    .nav-link {
        display: flex;
        align-items: center;
        min-height: 48px;
        padding: 12px 0;
        font-size: 18px;
    }

    .nav-link::after {
        display: none;
    }

    .nav-cta {
        flex-direction: column;
        gap: 12px;
        margin-top: var(--space-sm);
    }

    .nav-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius);
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: background var(--transition), border-color var(--transition),
                transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

.btn:active {
    transform: scale(0.98);
}

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

.btn-primary:hover {
    background: var(--primary-hover);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-glow);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease-out;
    pointer-events: none;
}

.btn-primary:hover::after {
    left: 100%;
}

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

.btn-ghost:hover {
    border-color: var(--border-hover);
    color: var(--foreground);
    background: var(--surface);
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
    min-height: 52px;
}

/* ============================================
   HERO SECTION
   Full-bleed with model photography
   ============================================ */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: clip;
}

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.88) 0%, rgba(2, 6, 23, 0.65) 100%);
    z-index: 1;
}

@media (min-width: 1024px) {
    .hero-overlay {
        background: var(--gradient-hero);
    }

    .hero-bg img {
        object-position: center right;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    padding: var(--space-xl) 0;
}

.hero h1 {
    margin-bottom: var(--space-md);
}

.hero p {
    font-size: 18px;
    color: var(--foreground-secondary);
    margin-bottom: var(--space-lg);
    max-width: 520px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

/* ============================================
   FEATURE CARD GRID
   ============================================ */
.feature-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

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

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

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition),
                border-color var(--transition);
    min-width: 0;
}

.feature-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-glow);
    border-color: var(--border-hover);
}

.feature-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 5 / 3;
}

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

.ice-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(34, 211, 238, 0.08) 0%, transparent 12%),
        radial-gradient(circle at 70% 60%, rgba(34, 211, 238, 0.06) 0%, transparent 10%),
        linear-gradient(180deg, transparent 55%, rgba(2, 6, 23, 0.55) 100%);
    pointer-events: none;
}

.feature-card-body {
    padding: var(--space-md);
}

@media (min-width: 1024px) {
    .feature-card-body {
        padding: var(--space-lg);
    }
}

.feature-card-body h3 {
    margin-bottom: var(--space-xs);
}

.feature-card-body p {
    color: var(--foreground-secondary);
    margin-bottom: var(--space-md);
}

.card-link {
    color: var(--accent);
    font-weight: 500;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.card-link::after {
    content: '→';
    transition: transform var(--transition);
}

.card-link:hover {
    color: var(--accent-hover);
}

.card-link:hover::after {
    transform: translateX(4px);
}

/* ============================================
   STAT BLOCK
   Large numbers with gradient blue fill
   ============================================ */
.stat-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-lg);
}

@media (min-width: 768px) {
    .stat-block {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-lg);
    }
}

.stat-item {
    text-align: center;
    transition: transform var(--transition);
}

.stat-item:hover {
    transform: scale(1.02);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 800;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    margin-bottom: var(--space-xs);
}

.stat-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--foreground-secondary);
}

.stat-caption {
    display: block;
    font-size: 12px;
    color: var(--foreground-secondary);
    margin-top: 4px;
}

/* ============================================
   FAQ ACCORDION
   Single-open panels with blue accent border
   ============================================ */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--transition);
}

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

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--foreground);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 500;
    text-align: left;
    padding: var(--space-md);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-sm);
    transition: color var(--transition);
}

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

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

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

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--accent);
    transition: transform var(--transition);
}

.faq-icon::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

.faq-icon::after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}

.faq-item.is-open .faq-icon::after {
    transform: translateX(-50%) scaleY(0);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
}

.faq-answer-inner {
    padding: 0 var(--space-md) var(--space-md);
    font-size: 17px;
    line-height: 1.6;
    color: var(--foreground-secondary);
}

@media (min-width: 1024px) {
    .faq-answer-inner {
        padding: 0 var(--space-lg) var(--space-lg);
    }
}

.faq-answer-inner p {
    margin-bottom: var(--space-sm);
}

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

/* ============================================
   CTA BANNER
   Full-bleed deep navy gradient
   ============================================ */
.cta-banner {
    background: var(--gradient-navy);
    padding: var(--space-xl) var(--space-sm);
    text-align: center;
    position: relative;
    overflow: clip;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

@media (min-width: 1024px) {
    .cta-banner {
        padding: var(--space-2xl) var(--space-sm);
    }
}

.cta-banner-inner {
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-banner h2 {
    color: var(--foreground);
    margin-bottom: var(--space-sm);
}

.cta-subtext {
    color: var(--foreground-secondary);
    font-size: 17px;
    margin-bottom: var(--space-lg);
}

.cta-microcopy {
    color: var(--foreground-secondary);
    font-size: 14px;
    margin-top: var(--space-md);
    margin-bottom: 0;
}

/* ============================================
   ICE TEXTURE OVERLAY
   Subtle neon-droplet effect for premium sections
   ============================================ */
.ice-texture {
    position: relative;
}

.ice-texture::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 15% 25%, rgba(34, 211, 238, 0.04) 0%, transparent 8%),
        radial-gradient(circle at 75% 40%, rgba(34, 211, 238, 0.03) 0%, transparent 6%),
        radial-gradient(circle at 50% 70%, rgba(34, 211, 238, 0.04) 0%, transparent 7%),
        radial-gradient(circle at 85% 80%, rgba(34, 211, 238, 0.02) 0%, transparent 5%);
    z-index: 1;
}

/* ============================================
   TABLES
   ============================================ */
.table-wrapper {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    font-size: 16px;
}

th, td {
    padding: 14px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

th {
    background: var(--surface-hover);
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--foreground);
    font-size: 15px;
    white-space: nowrap;
}

td {
    color: var(--foreground-secondary);
}

tr:last-child td {
    border-bottom: none;
}

tbody tr:hover td {
    background: rgba(37, 99, 235, 0.05);
}

@media (max-width: 767px) {
    th {
        white-space: normal;
    }

    th, td {
        padding: 10px 8px;
        font-size: 13px;
    }
}

/* VIP table mobile responsive - stacked card layout */
@media (max-width: 767px) {
    .vip-teaser-content .table-wrapper {
        overflow-x: hidden;
    }

    .vip-teaser-content table,
    .vip-teaser-content thead,
    .vip-teaser-content tbody,
    .vip-teaser-content tr,
    .vip-teaser-content th,
    .vip-teaser-content td {
        display: block;
        width: 100%;
    }

    .vip-teaser-content thead {
        display: none;
    }

    .vip-teaser-content tbody tr {
        border: 1px solid var(--border);
        border-radius: var(--radius);
        background: var(--surface);
        margin-bottom: var(--space-sm);
        padding: var(--space-xs) 0;
    }

    .vip-teaser-content tbody tr:last-child {
        margin-bottom: 0;
    }

    .vip-teaser-content td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: var(--space-sm);
        padding: 10px 16px;
        border-bottom: 1px solid var(--border);
        font-size: 14px;
    }

    .vip-teaser-content tbody tr:last-child td {
        border-bottom: none;
    }

    .vip-teaser-content td::before {
        font-weight: 600;
        color: var(--foreground);
        font-size: 13px;
        flex-shrink: 0;
    }

    .vip-teaser-content td:nth-child(1)::before { content: "VIP-Level"; }
    .vip-teaser-content td:nth-child(2)::before { content: "Promotionen"; }
    .vip-teaser-content td:nth-child(3)::before { content: "Support"; }
    .vip-teaser-content td:nth-child(4)::before { content: "Cashback"; }
    .vip-teaser-content td:nth-child(5)::before { content: "VIP-Manager"; }
}

/* Comparison table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
}

.comparison-table th {
    background: var(--surface-hover);
    padding: 16px 20px;
    text-align: left;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--foreground);
    border-bottom: 2px solid var(--border);
}

.comparison-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    color: var(--foreground-secondary);
}

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

.comparison-table .recommended {
    background: rgba(37, 99, 235, 0.12);
    color: var(--foreground);
    font-weight: 500;
}

/* ============================================
   ENGAGEMENT PATTERNS
   ============================================ */

/* Summary / TL;DR box */
.summary-box {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-md);
    background: var(--surface);
    margin: var(--space-lg) 0;
}

@media (min-width: 1024px) {
    .summary-box {
        padding: var(--space-lg);
    }
}

.summary-box-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: var(--space-sm);
}

.summary-box ul {
    margin: 0;
    padding-left: 20px;
}

.summary-box li {
    margin-bottom: var(--space-xs);
    color: var(--foreground-secondary);
}

/* Callout / highlight box */
.callout {
    border-left: 3px solid var(--accent);
    padding: var(--space-md) var(--space-lg);
    background: var(--surface);
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: var(--space-lg) 0;
}

.callout-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: var(--space-xs);
}

.callout p {
    margin: 0;
    color: var(--foreground-secondary);
}

/* Pull quote */
.pull-quote {
    font-size: clamp(20px, 3vw, 24px);
    font-style: italic;
    color: var(--foreground);
    border-left: 3px solid var(--accent);
    padding-left: var(--space-lg);
    margin: var(--space-xl) 0;
    line-height: 1.5;
    font-family: var(--font-heading);
    font-weight: 500;
}

.pull-quote cite {
    display: block;
    margin-top: var(--space-sm);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    color: var(--foreground-secondary);
    font-family: var(--font-body);
}

/* Blockquote */
blockquote {
    margin: var(--space-lg) 0;
    padding: var(--space-md) var(--space-lg);
    border-left: 3px solid var(--accent);
    background: var(--surface);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 18px;
    font-style: italic;
    color: var(--foreground);
}

blockquote p {
    margin: 0 0 var(--space-sm);
}

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

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

/* Details / Summary */
details {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-md);
    margin-bottom: var(--space-xs);
}

@media (min-width: 1024px) {
    details {
        padding: var(--space-lg);
    }
}

summary {
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 500;
    color: var(--foreground);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

summary::after {
    content: '+';
    color: var(--accent);
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
    flex-shrink: 0;
}

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

details[open] summary {
    margin-bottom: var(--space-sm);
}

/* Trust badges row */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    align-items: center;
    padding: var(--space-md) 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--foreground-secondary);
}

/* Testimonial grid */
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

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

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

.testimonial-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-md);
    min-width: 0;
}

@media (min-width: 1024px) {
    .testimonial-card {
        padding: var(--space-lg);
    }
}

.testimonial-card .rating {
    color: var(--accent);
    font-size: 18px;
    margin-bottom: var(--space-sm);
    letter-spacing: 2px;
}

.testimonial-card blockquote {
    margin: 0 0 var(--space-md);
    padding: 0;
    border: none;
    background: none;
    font-size: 17px;
    font-style: italic;
    color: var(--foreground);
}

.testimonial-card cite {
    font-size: 14px;
    color: var(--foreground-secondary);
    font-style: normal;
}

/* ============================================
   PROSE - article-style content
   ============================================ */
.prose {
    max-width: 800px;
}

.prose p {
    margin-bottom: 28px;
    color: var(--foreground-secondary);
}

.prose h2 {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-sm);
    color: var(--foreground);
}

.prose h3 {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
    color: var(--foreground);
}

.prose ul, .prose ol {
    margin-bottom: 28px;
    padding-left: 24px;
    color: var(--foreground-secondary);
}

.prose li {
    margin-bottom: var(--space-xs);
}

.prose a {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-color: rgba(34, 211, 238, 0.3);
    text-underline-offset: 3px;
}

.prose a:hover {
    text-decoration-color: var(--accent);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--border);
}

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

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

.footer-heading {
    font-size: 16px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: var(--space-sm);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer-links a {
    color: var(--foreground-secondary);
    font-size: 15px;
    transition: color var(--transition);
}

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

.footer-text {
    font-size: 14px;
    color: var(--foreground-secondary);
    margin-bottom: var(--space-xs);
    line-height: 1.5;
}

.footer-text:last-child {
    margin-bottom: 0;
}

.payment-methods {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.payment-methods li {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--foreground-secondary);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    padding-top: var(--space-md);
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

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

.footer-sitemap-link {
    font-size: 14px;
    color: var(--foreground-secondary);
    transition: color var(--transition);
}

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

/* ============================================
   ANIMATIONS
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    transition-delay: var(--delay, 0s);
}

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

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

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

/* ============================================
   VIP TEASER - Split layout
   ============================================ */
.vip-teaser {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    align-items: start;
}

@media (min-width: 768px) {
    .vip-teaser {
        grid-template-columns: 1.2fr 1fr;
        gap: var(--space-xl);
        align-items: center;
    }
}

.vip-teaser-content {
    min-width: 0;
}

.vip-teaser-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 5 / 6;
}

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

.vip-levels-bar {
    display: flex;
    gap: 6px;
    margin: var(--space-md) 0 var(--space-lg);
}

.vip-level {
    flex: 1;
    text-align: center;
    padding: 10px 4px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 12px;
    font-weight: 500;
    color: var(--foreground-secondary);
    transition: border-color var(--transition), color var(--transition);
}

.vip-level:hover {
    border-color: var(--accent);
    color: var(--accent);
}

@media (min-width: 768px) {
    .vip-level {
        font-size: 13px;
        padding: 12px 6px;
    }
}

/* ============================================
   PAYMENT STRIP
   ============================================ */
.payment-strip {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.payment-strip-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
}

.payment-strip-item {
    display: flex;
    align-items: center;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 500;
    color: var(--foreground-secondary);
    transition: border-color var(--transition), color var(--transition);
}

.payment-strip-item:hover {
    border-color: var(--border-hover);
    color: var(--foreground);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.hidden { display: none; }

/* Grid balance helpers */
.grid-span-2 {
    grid-column: span 2;
}

@media (min-width: 768px) {
    .md\:grid-span-2 {
        grid-column: span 2;
    }
}

@media (min-width: 1024px) {
    .lg\:grid-span-2 {
        grid-column: span 2;
    }
}

/* a11y-autofix: link-in-text-block */
/* axe link-in-text-block: inline links inside body copy must be
   distinguishable without relying on color. Scope to text containers so
   nav/button/card links (already visually distinct) keep their styling. */
:where(p, li, blockquote, figcaption, dd, .prose, .seo-text, article)
  a:not([class]) {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

/* ============================================
   BONUS TIMELINE - 4-step deposit breakdown
   ============================================ */
.bonus-timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

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

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

.bonus-step {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-lg);
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition),
                border-color var(--transition);
}

.bonus-step:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-glow);
    border-color: var(--border-hover);
}

.bonus-step-badge {
    margin-bottom: var(--space-sm);
}

.bonus-step-badge img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.bonus-step h3 {
    margin-bottom: var(--space-xs);
}

.bonus-step-value {
    font-family: var(--font-heading);
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: var(--space-xs);
}

.bonus-step-fs {
    font-size: 14px;
    font-weight: 500;
    color: var(--foreground-secondary);
    margin: 0;
}

/* ============================================
   PROMO STEPS - numbered guide
   ============================================ */
.promo-steps {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.promo-step {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-md);
    transition: border-color var(--transition), box-shadow var(--transition);
}

@media (min-width: 1024px) {
    .promo-step {
        padding: var(--space-lg);
    }
}

.promo-step:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-card);
}

.promo-step-number {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-blue);
    color: var(--primary-foreground);
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
}

.promo-step-content {
    min-width: 0;
}

.promo-step-content h3 {
    margin-bottom: var(--space-xs);
    font-size: clamp(18px, 2vw, 20px);
}

.promo-step-content p {
    color: var(--foreground-secondary);
    margin: 0;
}

/* ============================================
   SITEMAP PAGE
   Structural list with bordered separators
   ============================================ */
.sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-item {
    border-bottom: 1px solid var(--border);
    padding: var(--space-lg) 0;
    transition: border-color var(--transition);
}

.sitemap-item:first-child {
    border-top: 1px solid var(--border);
}

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

.sitemap-item h2 {
    margin-bottom: var(--space-xs);
}

.sitemap-item h2 a {
    color: var(--foreground);
    text-decoration: none;
    transition: color var(--transition);
}

.sitemap-item h2 a:hover {
    color: var(--accent);
}

.sitemap-item p {
    color: var(--foreground-secondary);
    margin: 0;
}
