/* ============================================================
   JACK CASINO - DESIGN SYSTEM
   Single fixed dark theme (neon crypto aesthetic).
   No theme switcher per project brief.
   ============================================================ */

:root {
    --background: #0B0E17;
    --foreground: #E8ECF4;
    --card: #141A2A;
    --card-foreground: #E8ECF4;
    --popover: #0F1322;
    --popover-foreground: #E8ECF4;
    --primary: #00E676;
    --primary-foreground: #06130B;
    --secondary: #1B2338;
    --secondary-foreground: #E8ECF4;
    --muted: #26304A;
    --muted-foreground: #9AA3B8;
    --accent: #F5C542;
    --accent-foreground: #1A1206;
    --link: #3480f6;
    --link-hover: #5C9BFF;
    --destructive: #f2294b;
    --destructive-foreground: #FFF1F2;
    --border: #26304A;
    --input: #10152A;
    --ring: #00E676;

    --font-display: "Sora", sans-serif;
    --font-body: "Manrope", sans-serif;

    --container: 1200px;
    --header-height: 68px;

    --section-gap: 64px;
    --card-padding: 20px;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;

    --glow-green: 0 0 18px rgba(0, 230, 118, 0.35);
    --glow-green-strong: 0 0 28px rgba(0, 230, 118, 0.5);
    --shadow-lift: 0 14px 40px rgba(0, 0, 0, 0.45);
}

/* ============================================
   OVERFLOW PREVENTION - Safety Net
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    overflow-x: clip;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: clip;
}

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

[class*="grid"] > *,
[class*="flex"] > * {
    min-width: 0;
}

pre, code, .code-block, [class*="code"] {
    max-width: 100%;
    overflow-x: auto;
}

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

.table-wrapper,
[class*="table-"] {
    max-width: 100%;
    overflow-x: auto;
}

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

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

section {
    overflow: clip;
}

/* ============================================
   BASE TYPOGRAPHY
   Sora for display headings, Manrope for body.
   ============================================ */
body {
    background-color: var(--background);
    color: var(--foreground);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--foreground);
    margin: 0 0 16px;
}

h1 { font-size: 30px; font-weight: 700; }
h2 { font-size: 26px; font-weight: 600; }
h3 { font-size: 20px; font-weight: 600; }
h4 { font-size: 18px; font-weight: 500; }

p {
    margin: 0 0 24px;
    max-width: 70ch;
}

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

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

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

li { margin-bottom: 8px; }

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

::selection {
    background: rgba(0, 230, 118, 0.28);
    color: var(--foreground);
}

@media (min-width: 768px) {
    :root {
        --section-gap: 80px;
        --card-padding: 32px;
    }
    h1 { font-size: 48px; }
    h2 { font-size: 36px; }
    h3 { font-size: 24px; }
    h4 { font-size: 20px; }
}

/* ============================================
   LAYOUT HELPERS
   .container - 1200px centered content grid
   .section - vertical rhythm block
   .grid-2 / .grid-3 / .grid-4 - responsive card grids
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 20px;
}

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

.section {
    padding-block: var(--section-gap);
}

.section--tight {
    padding-block: calc(var(--section-gap) / 2);
}

.section__header {
    max-width: 760px;
    margin-bottom: 40px;
}

.section__header--center {
    margin-inline: auto;
    text-align: center;
}

.section__eyebrow {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
}

.section__lead {
    color: var(--muted-foreground);
    font-size: 17px;
    margin-bottom: 0;
}

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

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

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

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

/* ============================================
   SKIP LINK & SCREEN READER
   ============================================ */
.skip-link {
    position: absolute;
    top: -60px;
    left: 16px;
    z-index: 1200;
    background: var(--primary);
    color: var(--primary-foreground);
    font-weight: 700;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    transition: top 200ms ease-out;
}

.skip-link:focus {
    top: 12px;
}

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

/* ============================================
   BUTTONS
   .btn - base pill button
   .btn--primary - glowing neon green CTA (52px tap target)
   .btn--ghost - outlined secondary action
   .btn--xl - oversized hero/banner CTA
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    text-decoration: none;
    transition: transform 200ms ease-out, box-shadow 200ms ease-out,
                background-color 200ms ease-out, border-color 200ms ease-out,
                color 200ms ease-out;
}

.btn--primary {
    background: var(--primary);
    color: var(--primary-foreground);
    box-shadow: var(--glow-green);
    animation: btn-glow 2s ease-in-out infinite;
}

.btn--primary:hover {
    background: #3CFA9B;
    color: var(--primary-foreground);
    box-shadow: var(--glow-green-strong);
    transform: translateY(-1px);
}

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

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

.btn--xl {
    min-height: 52px;
    padding: 14px 34px;
    font-size: 17px;
}

@keyframes btn-glow {
    0%, 100% { box-shadow: 0 0 14px rgba(0, 230, 118, 0.30); }
    50% { box-shadow: 0 0 26px rgba(0, 230, 118, 0.55); }
}

/* ============================================
   SITE HEADER
   Sticky dark bar, brand left, nav center,
   Login/Registrieren right, burger on mobile.
   NOTE: no backdrop-filter (would trap fixed drawer).
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(11, 14, 23, 0.97);
    border-bottom: 1px solid var(--border);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: var(--container);
    min-height: var(--header-height);
    margin-inline: auto;
    padding-inline: 20px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--foreground);
    text-decoration: none;
    flex-shrink: 0;
}

.site-brand__mark {
    display: block;
    filter: drop-shadow(0 0 6px rgba(0, 230, 118, 0.4));
}

.site-brand__text {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--foreground);
}

.site-brand__accent {
    color: var(--primary);
    margin-left: 4px;
}

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

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-header__login,
.site-header__register {
    display: none;
}

/* Hamburger toggle */
.nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    padding: 0;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    position: relative;
    z-index: 1001;
}

.nav-toggle__line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--foreground);
    border-radius: 2px;
    transition: transform 250ms ease-out, opacity 250ms ease-out;
}

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

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

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

/* ============================================
   PRIMARY NAV & MOBILE DRAWER
   Drawer: fixed full-height panel below header,
   opaque background, vertical link stack.
   ============================================ */
.primary-nav {
    display: none;
}

.primary-nav.is-open {
    display: block;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: var(--background);
    border-top: 1px solid var(--border);
    overflow-y: auto;
    padding: 24px 20px 40px;
}

.primary-nav__list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
}

.primary-nav__link {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--foreground);
    text-decoration: none;
    transition: background-color 200ms ease-out, color 200ms ease-out;
}

.primary-nav__link:hover,
.primary-nav__link[aria-current="page"] {
    background: var(--card);
    color: var(--primary);
}

.primary-nav__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 8px;
    border-top: 1px solid var(--border);
}

.primary-nav__actions .btn {
    width: 100%;
    min-height: 52px;
}

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

    .site-header__login,
    .site-header__register { display: inline-flex; }

    .primary-nav {
        display: flex;
        align-items: center;
        gap: 32px;
        flex: 1;
        justify-content: center;
    }

    .primary-nav__list {
        flex-direction: row;
        align-items: center;
        gap: 4px;
        margin: 0;
    }

    .primary-nav__link {
        min-height: 44px;
        padding: 8px 14px;
        font-size: 15px;
    }

    .primary-nav__actions { display: none; }
}

/* ============================================
   HERO
   Full-bleed banner with background image,
   dark gradient overlay, floating neon accents.
   ============================================ */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 520px;
    padding-top: 120px;
    padding-bottom: 72px;
    isolation: isolate;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    overflow: hidden;
}

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

.hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(11, 14, 23, 0.72) 0%,
        rgba(11, 14, 23, 0.55) 45%,
        var(--background) 100%
    );
}

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

.hero__content {
    max-width: 640px;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 230, 118, 0.45);
    border-radius: 999px;
    background: rgba(0, 230, 118, 0.08);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
}

.hero h1 {
    margin-bottom: 20px;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
}

.hero__lead {
    font-size: 18px;
    color: #C6CEDD;
    margin-bottom: 32px;
    max-width: 56ch;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 16px;
}

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

@media (min-width: 768px) {
    .hero {
        min-height: 620px;
        padding-bottom: 96px;
    }
    .hero__inner { padding-inline: 32px; }
    .hero__lead { font-size: 19px; }
}

/* ============================================
   FEATURE CARD
   Universal dark slate card with neon hover glow.
   ============================================ */
.feature-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform 250ms ease-out, box-shadow 250ms ease-out,
                border-color 250ms ease-out;
}

.feature-card:hover {
    transform: scale(1.02);
    border-color: rgba(0, 230, 118, 0.6);
    box-shadow: var(--shadow-lift), 0 0 20px rgba(0, 230, 118, 0.18);
}

.feature-card__media {
    position: relative;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

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

.feature-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    border-radius: 999px;
    background: var(--accent);
    color: var(--accent-foreground);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.feature-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin: var(--card-padding) var(--card-padding) 0;
    border-radius: var(--radius-sm);
    background: rgba(0, 230, 118, 0.1);
    border: 1px solid rgba(0, 230, 118, 0.35);
    font-size: 26px;
    line-height: 1;
}

.feature-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: var(--card-padding);
}

.feature-card__title {
    margin-bottom: 10px;
}

.feature-card__text {
    color: var(--muted-foreground);
    font-size: 16px;
    margin-bottom: 16px;
    flex: 1;
}

.feature-card__link {
    position: relative;
    align-self: flex-start;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    color: var(--link);
    text-decoration: none;
}

.feature-card__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: var(--link);
    transition: width 250ms ease-out;
}

.feature-card__link:hover::after {
    width: 100%;
}

.feature-card__arrow {
    display: inline-block;
    margin-left: 6px;
    transition: transform 200ms ease-out;
}

.feature-card__link:hover .feature-card__arrow {
    transform: translateX(4px);
}

/* ============================================
   STAT BLOCK & STAT ROW
   Large neon-gradient numbers that count up.
   ============================================ */
.stat-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
}

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

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

.stat-block {
    position: relative;
    min-width: 0;
    padding: 28px 24px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    text-align: center;
}

.stat-block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    box-shadow: 0 0 12px rgba(0, 230, 118, 0.5);
}

.stat-block__number {
    display: block;
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    background: linear-gradient(100deg, var(--primary) 20%, var(--link) 90%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 8px;
}

.stat-block__label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--foreground);
}

.stat-block__sublabel {
    display: block;
    margin-top: 4px;
    font-size: 14px;
    color: var(--muted-foreground);
}

@media (min-width: 900px) {
    .stat-block__number { font-size: 44px; }
}

/* ============================================
   FAQ ACCORDION
   Dark slate items, gold chevron, neon left
   accent when open. JS-enhanced (script.js).
   ============================================ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 820px;
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--border);
    border-radius: var(--radius-md);
    transition: border-color 250ms ease-out;
}

.faq-item.is-open {
    border-left-color: var(--primary);
}

.faq-item__heading {
    margin: 0;
    font-size: inherit;
}

.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    min-height: 56px;
    padding: 16px 20px;
    background: transparent;
    border: 0;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--foreground);
}

.faq-item__chevron {
    flex-shrink: 0;
    color: var(--accent);
    transition: transform 300ms ease;
}

.faq-item.is-open .faq-item__chevron {
    transform: rotate(180deg);
}

.faq-item__answer {
    overflow: hidden;
    transition: height 300ms ease;
}

.faq-item__answer-inner {
    padding: 0 20px 20px;
}

.faq-item__answer-inner p {
    color: var(--muted-foreground);
    font-size: 17px;
    line-height: 1.6;
    margin: 0;
}

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

/* ============================================
   CTA BANNER
   Full-bleed conversion band with animated
   neon gradient border (the "rakeback glow").
   ============================================ */
.cta-banner {
    position: relative;
    margin-block: var(--section-gap);
    padding: calc(var(--section-gap) / 2 + 24px) 20px;
    background: var(--card);
    text-align: center;
}

.cta-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 0;
    pointer-events: none;
    background: linear-gradient(110deg, var(--primary), var(--link), var(--accent), var(--primary));
    background-size: 300% 100%;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    animation: border-flow 6s linear infinite;
}

.cta-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    box-shadow: inset 0 0 60px rgba(0, 230, 118, 0.06);
}

@keyframes border-flow {
    to { background-position: 300% 0; }
}

.cta-banner__inner {
    position: relative;
    max-width: 720px;
    margin-inline: auto;
}

.cta-banner__headline {
    margin-bottom: 14px;
}

.cta-banner__subline {
    color: var(--muted-foreground);
    font-size: 17px;
    margin: 0 auto 28px;
    max-width: 54ch;
}

.cta-banner__btn {
    margin-bottom: 12px;
}

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

/* ============================================
   ENGAGEMENT PATTERNS
   TL;DR box, callouts, pull quote, highlight,
   details/summary accordion.
   ============================================ */
.tldr-box {
    padding: 24px;
    margin-bottom: 32px;
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-md);
}

.tldr-box__title {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    margin: 0 0 10px;
}

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

.callout {
    padding: 20px 24px;
    margin: 32px 0;
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--link);
    border-radius: var(--radius-md);
}

.callout--warning {
    border-left-color: var(--destructive);
    background: rgba(244, 63, 94, 0.07);
}

.callout--tip {
    border-left-color: var(--primary);
    background: rgba(0, 230, 118, 0.06);
}

.callout--gold {
    border-left-color: var(--accent);
    background: rgba(245, 197, 66, 0.07);
}

.callout__title {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 8px;
}

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

.pull-quote {
    margin: 40px 0;
    padding-left: 24px;
    border-left: 4px solid var(--accent);
    font-family: var(--font-display);
    font-size: 21px;
    font-style: italic;
    font-weight: 500;
    line-height: 1.45;
    color: var(--foreground);
}

.pull-quote cite {
    display: block;
    margin-top: 12px;
    font-family: var(--font-body);
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    color: var(--muted-foreground);
}

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

.stat-highlight {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 24px;
    margin: 32px 0;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.stat-highlight__value {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(100deg, var(--primary) 20%, var(--link) 90%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

/* Native details/summary accordion (zero-JS) */
details.acc {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
}

details.acc summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 56px;
    padding: 16px 20px;
    cursor: pointer;
    list-style: none;
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--foreground);
}

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

details.acc summary::after {
    content: "";
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    border-right: 2.2px solid var(--accent);
    border-bottom: 2.2px solid var(--accent);
    transform: rotate(45deg);
    transition: transform 300ms ease;
}

details.acc[open] summary::after {
    transform: rotate(225deg);
}

details.acc .acc__body {
    padding: 0 20px 20px;
    color: var(--muted-foreground);
}

details.acc .acc__body p:last-child { margin-bottom: 0; }

/* ============================================
   CRO PATTERNS
   Trust badges, comparison table, review cards.
   ============================================ */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 18px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--muted-foreground);
}

.trust-badge--gold {
    border-color: rgba(245, 197, 66, 0.5);
    color: var(--accent);
}

.trust-badge svg {
    color: var(--accent);
}

.table-wrapper {
    margin: 32px 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow-x: auto;
    background: var(--card);
}

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

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

.data-table thead th {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--foreground);
    background: var(--secondary);
}

.data-table tbody tr:last-child td { border-bottom: 0; }

.data-table td { color: var(--muted-foreground); }

.data-table td.col-highlight,
.data-table th.col-highlight {
    background: rgba(0, 230, 118, 0.07);
    color: var(--foreground);
    font-weight: 600;
}

.review-card {
    padding: var(--card-padding);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.review-card__stars {
    display: inline-flex;
    gap: 3px;
    color: var(--accent);
    margin-bottom: 12px;
}

.review-card__text {
    color: var(--muted-foreground);
    font-size: 16px;
}

.review-card__author {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--foreground);
}

/* ============================================
   LIVE FEED (scroll-snap strip, finite width)
   Horizontal swipeable on mobile, wraps to a
   full row on desktop. No infinite marquee.
   ============================================ */
.live-feed {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 4px 4px 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--muted) transparent;
}

.live-feed__item {
    flex: 0 0 240px;
    scroll-snap-align: start;
    padding: 16px 18px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.live-feed__game {
    display: block;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 6px;
}

.live-feed__amount {
    display: block;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    text-shadow: 0 0 14px rgba(0, 230, 118, 0.4);
}

.live-feed__meta {
    display: block;
    margin-top: 4px;
    font-size: 13px;
    color: var(--muted-foreground);
}

@media (min-width: 1100px) {
    .live-feed {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        overflow-x: visible;
    }
    .live-feed__item { flex: none; }
}

/* ============================================
   COIN STRIP (Krypto-Zahlungen page)
   Row of transparent coin images with hover lift.
   ============================================ */
.coin-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 40px;
    list-style: none;
    margin: 0 0 48px;
    padding: 0;
}

.coin-strip__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.coin-strip__item img {
    width: 84px;
    height: 84px;
    filter: drop-shadow(0 0 14px rgba(0, 230, 118, 0.25));
    transition: transform 250ms ease-out, filter 250ms ease-out;
}

.coin-strip__item:hover img {
    transform: scale(1.1) translateY(-4px);
    filter: drop-shadow(0 0 22px rgba(0, 230, 118, 0.45));
}

.coin-strip__name {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--muted-foreground);
}

@media (min-width: 900px) {
    .coin-strip__item img {
        width: 108px;
        height: 108px;
    }
}

/* ============================================
   FOOTER
   4-column grid, crypto badges, legal row.
   ============================================ */
.site-footer {
    margin-top: var(--section-gap);
    background: var(--popover);
    border-top: 1px solid var(--border);
}

.site-footer__inner {
    max-width: var(--container);
    margin-inline: auto;
    padding: 56px 20px 32px;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
    margin-bottom: 48px;
}

.site-footer__heading {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--foreground);
    margin: 0 0 16px;
}

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

.site-footer__links li { margin-bottom: 10px; }

.site-footer__links a {
    color: var(--muted-foreground);
    font-size: 15px;
    text-decoration: none;
    transition: color 200ms ease-out;
}

.site-footer__links a:hover { color: var(--primary); }

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

.site-footer__license {
    font-size: 13px;
    color: var(--muted-foreground);
    margin-bottom: 0;
}

.site-brand--footer { margin-bottom: 16px; }

.crypto-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
}

.crypto-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--muted-foreground);
}

.crypto-badge__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.crypto-badge__dot--btc { background: #F7931A; }
.crypto-badge__dot--eth { background: #627EEA; }
.crypto-badge__dot--usdt { background: #26A17B; }
.crypto-badge__dot--xrp { background: #25A0E8; }
.crypto-badge__dot--ltc { background: #A6B9D0; }

.age-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--muted-foreground);
    margin: 0;
}

.age-badge__circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 2px solid var(--destructive);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
    color: var(--destructive);
}

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

.site-footer__bottom p {
    font-size: 13px;
    color: var(--muted-foreground);
    margin: 0 auto 6px;
}

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

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

/* ============================================
   SCROLL ANIMATIONS
   .animate-on-scroll starts hidden, JS adds
   .is-visible on intersection. Reduced-motion safe.
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 500ms ease-out, transform 500ms ease-out;
}

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

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

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

    .btn--primary,
    .cta-banner::before {
        animation: none;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* ============================================
   FOCUS STATES
   ============================================ */
a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 3px;
    border-radius: 4px;
}

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