/* ============================================
   DESIGN TOKENS - Casea Casino
   Dark theme only (no light/dark toggle)
   Palette: deep navy background, electric blue
   accents, vivid azure highlights
   ============================================ */

:root {
    --background: #020617;
    --foreground: #f8fafc;
    --card: #1e293b;
    --card-foreground: #f8fafc;
    --popover: #1e293b;
    --popover-foreground: #f8fafc;
    --primary: #1d4ed8;
    --primary-foreground: #ffffff;
    --secondary: #334155;
    --secondary-foreground: #f8fafc;
    --muted: #1e293b;
    --muted-foreground: #94a3b8;
    --accent: #e1f4fd;
    --accent-foreground: #ffffff;
    --destructive: #ea0d33;
    --destructive-foreground: #ffffff;
    --border: #334155;
    --input: #1e293b;
    --ring: #1d4ed8;
    --link: #60a5fa;

    --header-height: 60px;
    --container-max: 1200px;
    --section-padding-y: 56px;
    --card-padding: 20px;
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 300ms ease-out;
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Manrope', sans-serif;
    --gradient-blue: linear-gradient(135deg, #618ef0, #e1f4fd);
}

@media (min-width: 768px) {
    :root {
        --header-height: 72px;
        --section-padding-y: 72px;
        --card-padding: 32px;
    }
}

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

/* ============================================
   RESET & BASE
   ============================================ */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

main {
    flex: 1;
}

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

section {
    overflow: clip;
}

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

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

a:visited {
    color: var(--link);
}

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

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

/* ============================================
   TYPOGRAPHY
   Syne for headlines, Manrope for body
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--foreground);
    line-height: 1.2;
}

h1 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

h2 {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 20px;
    font-weight: 500;
}

h4 {
    font-size: 18px;
    font-weight: 500;
}

p {
    margin-bottom: 20px;
}

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

@media (min-width: 1024px) {
    h1 { font-size: 48px; }
    h2 { font-size: 36px; }
    h3 { font-size: 26px; }
    h4 { font-size: 20px; }
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

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

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

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

.section-header.text-center {
    text-align: center;
}

.section-header.text-center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    color: var(--muted-foreground);
    max-width: 700px;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

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

.content-block {
    max-width: 700px;
}

.prose {
    max-width: 800px;
}

.prose p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.7;
}

.prose h2 {
    margin-top: 48px;
    margin-bottom: 20px;
}

.prose h3 {
    margin-top: 32px;
    margin-bottom: 16px;
}

.prose ul, .prose ol {
    margin-bottom: 20px;
}

.prose li {
    margin-bottom: 8px;
}

/* ============================================
   SKIP LINK
   ============================================ */

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 8px 16px;
    z-index: 2000;
    transition: top var(--transition);
    border-radius: 0 0 var(--radius-sm) 0;
}

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

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(2, 6, 23, 0.95);
    border-bottom: 1px solid var(--border);
    height: var(--header-height);
}

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

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    flex-shrink: 0;
}

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

.logo-icon {
    color: var(--primary);
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    color: var(--foreground);
}

/* ============================================
   MOBILE MENU TOGGLE
   ============================================ */

.mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    flex-shrink: 0;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--foreground);
    transition: all var(--transition);
    transform-origin: center;
}

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

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

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

/* ============================================
   PRIMARY NAV - Mobile drawer + Desktop inline
   ============================================ */

.primary-nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--background);
    z-index: 999;
    overflow-y: auto;
    padding: 24px 20px;
    flex-direction: column;
    gap: 16px;
}

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

.nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0;
}

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

.nav-list li:last-child {
    border-bottom: none;
}

.nav-link {
    display: flex;
    align-items: center;
    min-height: 48px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 18px;
    color: var(--foreground);
    padding: 12px 0;
    transition: color var(--transition);
}

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

.header-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.header-actions .btn {
    width: 100%;
    justify-content: center;
}

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

    .primary-nav {
        display: flex;
        position: static;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        background: transparent;
        z-index: auto;
        overflow: visible;
        padding: 0;
        flex-direction: row;
        align-items: center;
        gap: 32px;
    }

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

    .nav-list li {
        border-bottom: none;
    }

    .nav-link {
        min-height: auto;
        font-size: 16px;
        padding: 0;
        position: relative;
    }

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

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

    .header-actions {
        flex-direction: row;
        gap: 12px;
        margin-top: 0;
    }

    .header-actions .btn {
        width: auto;
    }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    min-height: 44px;
    white-space: nowrap;
}

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

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

.btn-primary:hover {
    background: #1e40af;
    color: var(--primary-foreground);
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
}

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

.btn-ghost:visited {
    color: var(--foreground);
}

.btn-ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
}

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

/* ============================================
   CARDS & GRIDS
   ============================================ */

.card-grid {
    display: grid;
    gap: 24px;
}

.card-grid-2,
.card-grid-3,
.card-grid-4 {
    grid-template-columns: 1fr;
}

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

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

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

.info-card:hover {
    transform: scale(1.02);
    border-color: rgba(37, 99, 235, 0.5);
    box-shadow: 0 0 24px rgba(37, 99, 235, 0.15);
}

.card-image {
    margin: calc(-1 * var(--card-padding)) calc(-1 * var(--card-padding)) 20px;
    border-radius: var(--radius) var(--radius) 0 0;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

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

.card-icon {
    font-size: 32px;
    margin-bottom: 16px;
    line-height: 1;
}

.card-stat {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 36px;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
    line-height: 1.1;
}

.card-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--foreground);
}

.card-description {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--muted-foreground);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--link);
    margin-top: 16px;
    transition: gap var(--transition), color var(--transition);
}

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

/* ============================================
   NUMBERED BADGE (for deposit steps)
   ============================================ */

.numbered-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-blue);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 16px;
}

/* ============================================
   HERO SECTIONS
   ============================================ */

.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    padding: 64px 0;
    overflow: clip;
}

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(2, 6, 23, 0.95) 0%, rgba(2, 6, 23, 0.7) 50%, rgba(2, 6, 23, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--foreground);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin-bottom: 32px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.hero-micro-copy {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--muted-foreground);
    margin-top: 16px;
}

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

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 18px;
    }
}

/* ============================================
   FAQ ACCORDION
   ============================================ */

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(51, 65, 85, 0.5);
    transition: box-shadow var(--transition);
}

.faq-item.active {
    box-shadow: 0 0 16px rgba(37, 99, 235, 0.1);
}

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

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

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

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

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

.faq-icon::before {
    width: 16px;
    height: 2px;
    top: 11px;
    left: 4px;
}

.faq-icon::after {
    width: 2px;
    height: 16px;
    top: 4px;
    left: 11px;
}

.faq-question[aria-expanded="true"] .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

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

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

/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner {
    background: linear-gradient(135deg, #020617 0%, #0a1a3e 50%, #020617 100%);
    border-top: 1px solid rgba(37, 99, 235, 0.3);
    border-bottom: 1px solid rgba(37, 99, 235, 0.3);
    padding: 56px 0;
    position: relative;
    overflow: clip;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

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

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 24px;
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin-bottom: 16px;
}

.cta-text {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin-bottom: 32px;
}

.cta-micro-copy {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--muted-foreground);
    margin-top: 16px;
}

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

/* ============================================
   VIP STEPPER
   ============================================ */

.vip-stepper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 768px) {
    .vip-stepper {
        flex-direction: row;
        gap: 12px;
    }
}

.vip-node {
    flex: 1;
    text-align: center;
    padding: 24px 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.vip-node:hover {
    transform: scale(1.02);
    border-color: rgba(37, 99, 235, 0.5);
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.15);
}

.vip-level {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--muted-foreground);
}

.vip-cashback {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 32px;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

/* ============================================
   STAT HIGHLIGHTS
   ============================================ */

.stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

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

.stat-highlight {
    text-align: center;
    padding: 24px 16px;
}

.stat-number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 36px;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    margin-bottom: 8px;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--muted-foreground);
}

@media (min-width: 1024px) {
    .stat-number {
        font-size: 48px;
    }
}

/* ============================================
   TABLES
   ============================================ */

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

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    min-width: 0;
}

.comparison-table th,
.comparison-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.comparison-table th {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    color: var(--foreground);
    background: var(--card);
}

.comparison-table td {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--muted-foreground);
}

.comparison-table tr:hover td {
    color: var(--foreground);
}

/* ============================================
   CALLOUT & TL;DR BOXES
   ============================================ */

.callout {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    padding: 24px;
    border-radius: var(--radius-sm);
    margin: 24px 0;
}

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

.tldr-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 20px;
    margin: 32px 0;
}

@media (min-width: 768px) {
    .tldr-box {
        padding: 32px;
    }
}

/* ============================================
   WAGERING LIST (bonus terms)
   ============================================ */

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

.wagering-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(51, 65, 85, 0.5);
    gap: 16px;
}

.wagering-list li:last-child {
    border-bottom: none;
}

.wagering-label {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 16px;
    color: var(--foreground);
}

.wagering-value {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--accent);
    font-weight: 600;
    text-align: right;
}

/* ============================================
   CATEGORY LIST (game categories)
   ============================================ */

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

.category-list li {
    padding: 16px 0;
    border-bottom: 1px solid rgba(51, 65, 85, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 17px;
    color: var(--foreground);
    transition: color var(--transition);
}

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

.category-list li:last-child {
    border-bottom: none;
}

.category-count {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--muted-foreground);
}

/* ============================================
   PAYMENT BADGES
   ============================================ */

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

.payment-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--muted-foreground);
    transition: all var(--transition);
}

.payment-badge:hover {
    border-color: rgba(37, 99, 235, 0.5);
    color: var(--foreground);
    box-shadow: 0 0 12px rgba(37, 99, 235, 0.1);
}

/* ============================================
   TRUST BADGES ROW
   ============================================ */

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

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

/* ============================================
   BADGE (inline)
   ============================================ */

.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 20px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--link);
}

/* ============================================
   BLOCKQUOTE / PULL QUOTE
   ============================================ */

blockquote {
    border-left: 4px solid var(--primary);
    padding: 16px 24px;
    margin: 32px 0;
    background: var(--card);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--foreground);
}

blockquote cite {
    display: block;
    margin-top: 12px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--muted-foreground);
    font-style: normal;
}

/* ============================================
   DETAILS / SUMMARY (native expandable)
   ============================================ */

details {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    margin-bottom: 12px;
}

summary {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 17px;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 32px;
    color: var(--foreground);
}

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

summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--primary);
    transition: transform var(--transition);
}

details[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

details > *:not(summary) {
    margin-top: 12px;
    color: var(--muted-foreground);
    font-size: 16px;
    line-height: 1.6;
}

/* ============================================
   NO-STICKY FLOW DIAGRAM (bonus)
   ============================================ */

.no-sticky-flow {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
}

.flow-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: rgba(2, 6, 23, 0.5);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.flow-step:hover {
    border-color: rgba(37, 99, 235, 0.5);
    box-shadow: 0 0 16px rgba(37, 99, 235, 0.1);
}

.flow-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gradient-blue);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.flow-step-text {
    flex: 1;
    min-width: 0;
}

.flow-step-text strong {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    color: var(--foreground);
    margin-bottom: 4px;
}

.flow-step-text p {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--muted-foreground);
    margin: 0;
}

/* ============================================
   LIVE ODDS BOARD (sportwetten)
   ============================================ */

.live-odds-board {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}

.live-odds-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(51, 65, 85, 0.5);
    gap: 16px;
}

.live-odds-row:last-child {
    border-bottom: none;
}

.live-odds-event {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--muted-foreground);
    min-width: 0;
}

.live-odds-value {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 18px;
    color: var(--accent);
    flex-shrink: 0;
}

/* ============================================
   PHONE MOCKUP
   ============================================ */

.phone-mockup {
    max-width: 280px;
    margin: 0 auto;
}

.phone-mockup img {
    width: 100%;
    height: auto;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background: #01040f;
    border-top: 1px solid var(--border);
    padding: 56px 0 32px;
}

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

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-brand .logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    color: var(--foreground);
}

.footer-description {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted-foreground);
}

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

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

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

.footer-links a {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--muted-foreground);
    transition: color var(--transition);
}

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

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

.license-info {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--muted-foreground);
    margin-bottom: 8px;
}

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

/* ============================================
   ANIMATIONS
   ============================================ */

.animate-on-scroll {
    transform: translateY(24px);
    transition: transform 0.6s ease-out;
}

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

.animate-on-scroll:nth-child(1) { transition-delay: 0ms; }
.animate-on-scroll:nth-child(2) { transition-delay: 150ms; }
.animate-on-scroll:nth-child(3) { transition-delay: 300ms; }
.animate-on-scroll:nth-child(4) { transition-delay: 450ms; }
.animate-on-scroll:nth-child(5) { transition-delay: 600ms; }
.animate-on-scroll:nth-child(6) { transition-delay: 750ms; }

@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll {
        transform: none;
        transition: none;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ============================================
   UTILITIES
   ============================================ */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

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

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

.hidden { display: none; }

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

/* Focus visible for keyboard navigation */
:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Selection */
::selection {
    background: rgba(37, 99, 235, 0.3);
    color: var(--foreground);
}

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