/* ============================================
   DESIGN TOKENS - Dark Forest Theme
   WildRobin Casino: charcoal-green background,
   neon green + gold accents, Robin Hood aesthetic
   ============================================ */

:root {
    /* Colors - Dark Theme Only */
    --background: #0F1A14;
    --foreground: #F4F1E6;
    --card: #16241B;
    --card-foreground: #F4F1E6;
    --popover: #1A2620;
    --popover-foreground: #F4F1E6;
    --primary: #00E676;
    --primary-foreground: #0F1A14;
    --secondary: #FFC107;
    --secondary-foreground: #0F1A14;
    --muted: #2C3E33;
    --muted-foreground: #A0A8A0;
    --accent: #FF8C00;
    --accent-foreground: #0F1A14;
    --destructive: #ea1414;
    --destructive-foreground: #FFFFFF;
    --border: #2C3E33;
    --input: #16241B;
    --ring: #00E676;

    /* Typography */
    --font-display: "Cinzel", Georgia, serif;
    --font-body: "Manrope", system-ui, sans-serif;

    /* Spacing - 8px base grid */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 72px;
    --space-3xl: 120px;

    /* Layout */
    --max-width: 1280px;
    --max-width-narrow: 800px;
    --header-height: 64px;

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

    /* Shadows & Glows */
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.35);
    --shadow-glow-green: 0 0 20px rgba(0, 230, 118, 0.35);
    --shadow-glow-gold: 0 0 20px rgba(255, 193, 7, 0.35);
    --shadow-glow-amber: 0 0 16px rgba(255, 140, 0, 0.3);
}

/* ============================================
   BASE RESET & OVERFLOW PREVENTION
   ============================================ */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

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

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

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

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

ul, ol {
    list-style: none;
}

section {
    overflow: clip;
}

/* ============================================
   TYPOGRAPHY SYSTEM
   Cinzel for display headings, Manrope for body
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--foreground);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

h1 {
    font-size: 28px;
    font-weight: 700;
}

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

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

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

p {
    margin-bottom: 16px;
    overflow-wrap: break-word;
}

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

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

@media (min-width: 768px) {
    h1 { font-size: 36px; }
    h2 { font-size: 28px; }
    h3 { font-size: 24px; }
}

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

/* ============================================
   LAYOUT - Container, Grid, Section
   ============================================ */

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

.container--narrow {
    max-width: var(--max-width-narrow);
}

.section {
    padding: 72px 0;
}

.section--tight {
    padding: 48px 0;
}

@media (min-width: 1024px) {
    .container {
        padding: 0 32px;
    }
    .section {
        padding: 120px 0;
    }
    .section--tight {
        padding: 64px 0;
    }
}

.grid {
    display: grid;
    gap: 16px;
}

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

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

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

/* ============================================
   BUTTONS
   .btn - base, .btn--primary, .btn--ghost, .btn--gold, .btn--pulse
   ============================================ */

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

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

.btn--primary:hover {
    box-shadow: var(--shadow-glow-green);
    transform: translateY(-2px);
    color: var(--primary-foreground);
}

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

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

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

.btn--gold:hover {
    box-shadow: var(--shadow-glow-gold);
    transform: translateY(-2px);
    color: var(--secondary-foreground);
}

.btn--pulse {
    animation: pulseGlow 2.5s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(0, 230, 118, 0.25); }
    50% { box-shadow: 0 0 28px rgba(0, 230, 118, 0.55); }
}

/* ============================================
   SKIP LINK - Accessibility
   ============================================ */

.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 12px 24px;
    z-index: 2000;
    font-weight: 600;
    border-radius: 0 0 8px 0;
    transition: top 200ms ease;
}

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

/* ============================================
   HEADER - Sticky, semi-transparent with blur on desktop
   ============================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(15, 26, 20, 0.95);
    border-bottom: 1px solid var(--border);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    gap: 16px;
}

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

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

.site-brand__icon {
    flex-shrink: 0;
}

.site-brand__text {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--foreground);
    letter-spacing: -0.01em;
}

@media (min-width: 1024px) {
    .site-header {
        background: rgba(15, 26, 20, 0.85);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
    .site-brand__text {
        font-size: 20px;
    }
}

/* ============================================
   PRIMARY NAVIGATION - Desktop inline, mobile drawer
   ============================================ */

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

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

.primary-nav__list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 24px;
}

.primary-nav__list a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 16px;
    font-size: 17px;
    font-weight: 500;
    color: var(--foreground);
    border-bottom: 1px solid var(--border);
    transition: color var(--transition);
}

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

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

.header-cta .btn {
    width: 100%;
}

@media (min-width: 1024px) {
    .primary-nav {
        display: flex;
        position: static;
        flex-direction: row;
        align-items: center;
        background: none;
        border: none;
        padding: 0;
        overflow: visible;
        gap: 32px;
    }

    .primary-nav__list {
        flex-direction: row;
        gap: 28px;
        margin-bottom: 0;
    }

    .primary-nav__list a {
        min-height: auto;
        padding: 0;
        border: none;
        font-size: 16px;
    }

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

    .header-cta .btn {
        width: auto;
        padding: 10px 24px;
    }
}

/* ============================================
   MOBILE MENU TOGGLE - Hamburger → X
   ============================================ */

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

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--foreground);
    border-radius: 2px;
    transition: transform 300ms ease, opacity 200ms ease;
}

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

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

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

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

/* ============================================
   FOOTER - Four-column layout, stacked on mobile
   ============================================ */

.site-footer {
    background: var(--card);
    border-top: 1px solid var(--border);
    padding: 48px 0 0;
}

.site-footer__inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-bottom: 40px;
}

.site-footer__col {
    min-width: 0;
}

.site-footer__heading {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 16px;
}

.site-footer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-footer__links a {
    font-size: 15px;
    color: var(--muted-foreground);
    transition: color var(--transition);
}

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

.site-footer__payments {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.site-footer__payments span {
    font-size: 14px;
    padding: 6px 12px;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--muted-foreground);
    font-weight: 500;
}

.site-footer__license,
.site-footer__age,
.site-footer__responsible {
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.5;
    margin-bottom: 8px;
}

.site-footer__age {
    font-weight: 600;
    color: var(--secondary);
}

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

.site-footer__bottom p {
    font-size: 14px;
    color: var(--muted-foreground);
}

@media (min-width: 768px) {
    .site-footer__inner {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 32px;
    }
    .site-footer__col {
        flex: 1;
        min-width: 200px;
    }
}

@media (min-width: 1024px) {
    .site-footer__inner {
        flex-wrap: nowrap;
        gap: 48px;
    }
    .site-footer__col {
        flex: 1;
    }
}

/* ============================================
   HERO - Full-bleed dark forest banner with model
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 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(15, 26, 20, 0.92) 0%, rgba(15, 26, 20, 0.55) 50%, rgba(15, 26, 20, 0.88) 100%);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.hero__title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--foreground);
    line-height: 1.15;
    margin-bottom: 16px;
    max-width: 700px;
}

.hero__subtext {
    font-size: 17px;
    color: var(--muted-foreground);
    line-height: 1.6;
    max-width: 540px;
    margin-bottom: 28px;
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero__model {
    display: none;
}

@media (min-width: 768px) {
    .hero__title { font-size: 36px; }
}

@media (min-width: 1024px) {
    .hero__title { font-size: 48px; }
    .hero__content {
        max-width: calc(var(--max-width) * 0.62);
    }
    .hero__model {
        display: block;
        position: absolute;
        right: 4%;
        bottom: 0;
        max-height: 85%;
        z-index: 2;
        pointer-events: none;
    }
    .hero__model img {
        max-height: 85vh;
        object-fit: bottom;
    }
}

/* ============================================
   ARROW-STRIKE DIVIDER - Diagonal neon line motif
   ============================================ */

.arrow-strike {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary) 15%, var(--primary) 85%, transparent 100%);
    opacity: 0.5;
    position: relative;
}

.arrow-strike::after {
    content: '';
    position: absolute;
    left: 50%;
    top: -5px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 10px solid var(--primary);
    opacity: 0.8;
}

.arrow-strike--top {
    margin-bottom: 0;
}

/* ============================================
   CARDS - Game cards, feature cards, provider cards
   ============================================ */

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

.card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-card);
    border-color: var(--primary);
}

.card--elevated {
    box-shadow: var(--shadow-card);
}

.card__title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
}

.card__desc {
    font-size: 15px;
    color: var(--muted-foreground);
    line-height: 1.5;
}

/* Game cards */
.game-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    min-width: 0;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.game-card:hover {
    transform: scale(1.03);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow-green);
}

.game-card__image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.game-card__body {
    padding: 20px;
}

.game-card__title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
}

.game-card__desc {
    font-size: 15px;
    color: var(--muted-foreground);
    line-height: 1.5;
}

/* Provider cards */
.provider-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    min-width: 0;
    transition: all var(--transition);
}

.provider-card:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow-glow-gold);
}

.provider-card__name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--foreground);
}

.provider-card__image {
    width: 100%;
    max-width: 200px;
    margin: 0 auto 12px;
    border-radius: 8px;
}

/* ============================================
   CTA BANNER - Full-bleed conversion band
   ============================================ */

.cta-banner {
    position: relative;
    background-color: #0A1410;
    background-image: linear-gradient(135deg, rgba(10, 20, 16, 0.95) 0%, rgba(15, 26, 20, 0.85) 100%);
    padding: 48px 0;
    overflow: clip;
}

.cta-banner__inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.cta-banner__headline {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--foreground);
    line-height: 1.2;
}

.cta-banner__subtext {
    font-size: 17px;
    color: var(--muted-foreground);
    max-width: 600px;
}

.cta-banner__microcopy {
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.4;
}

@media (min-width: 1024px) {
    .cta-banner {
        padding: 80px 0;
    }
    .cta-banner__headline {
        font-size: 36px;
    }
}

/* ============================================
   FAQ ACCORDION - Native details/summary styling
   ============================================ */

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    border-left: 3px solid var(--border);
    overflow: hidden;
    transition: border-color var(--transition), background var(--transition);
}

.faq-item[open] {
    border-left-color: var(--primary);
    background: #1A2D20;
}

.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: var(--foreground);
    list-style: none;
    user-select: none;
}

.faq-item__question::-webkit-details-marker {
    display: none;
}

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

.faq-item__chevron {
    flex-shrink: 0;
    color: var(--muted-foreground);
    transition: transform var(--transition), color var(--transition);
}

.faq-item[open] .faq-item__chevron {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-item__answer {
    padding: 0 24px 24px;
}

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

.faq-item[open] .faq-item__answer {
    animation: faqFadeIn 0.3s ease-out;
}

@keyframes faqFadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   HIGHLIGHT BOX - Gold-accent callout for terms & facts
   ============================================ */

.highlight-box {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #1A2D20;
    border: 1px solid var(--border);
    border-left: 4px solid var(--secondary);
    border-radius: 8px;
    padding: 24px;
    margin: 32px 0;
    max-width: 100%;
    transition: transform var(--transition), box-shadow var(--transition);
}

.highlight-box:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-glow-gold);
}

.highlight-box__icon {
    flex-shrink: 0;
    font-size: 24px;
    line-height: 1;
}

.highlight-box__body {
    flex: 1;
    min-width: 0;
}

.highlight-box__title {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 8px;
}

.highlight-box__content {
    font-size: 17px;
    line-height: 1.6;
    color: var(--foreground);
}

.highlight-box__content p {
    margin-bottom: 8px;
}

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

.highlight-box__content strong {
    color: var(--secondary);
}

@media (min-width: 1024px) {
    .highlight-box {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ============================================
   TABLES - Comparison & data tables
   ============================================ */

.table-wrapper {
    min-width: 0;
    max-width: 100%;
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid var(--border);
    -webkit-overflow-scrolling: touch;
}

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

.data-table thead {
    background: var(--primary);
    color: var(--primary-foreground);
}

.data-table th {
    padding: 16px;
    text-align: left;
    font-weight: 600;
    font-family: var(--font-body);
    white-space: nowrap;
    font-size: 15px;
}

.data-table td {
    padding: 16px;
    border-top: 1px solid var(--border);
    color: var(--foreground);
}

.data-table tbody tr:nth-child(even) {
    background: rgba(0, 230, 118, 0.04);
}

.data-table tbody tr:hover {
    background: rgba(0, 230, 118, 0.08);
}

/* ============================================
   TRUST BADGES - License, 18+, responsible gambling
   ============================================ */

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.trust-badge {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    min-width: 0;
    transition: border-color var(--transition);
}

.trust-badge:hover {
    border-color: var(--primary);
}

.trust-badge__icon {
    margin: 0 auto 12px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-badge__icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.trust-badge__text {
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.4;
}

@media (min-width: 768px) {
    .trust-badges {
        flex-direction: row;
    }
    .trust-badge {
        flex: 1;
    }
}

/* ============================================
   PAYMENT STRIP - Grayscale logo row, color on hover
   ============================================ */

.payment-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

.payment-strip__item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--muted-foreground);
    transition: all var(--transition);
    filter: grayscale(1);
}

.payment-strip__item:hover {
    filter: grayscale(0);
    color: var(--foreground);
    border-color: var(--primary);
}

.payment-strip__caption {
    text-align: center;
    font-size: 14px;
    color: var(--muted-foreground);
    margin-top: 16px;
}

/* ============================================
   VIP TIERS - Five-tier progression display
   ============================================ */

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

.vip-tier {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--border);
    border-radius: 10px;
    padding: 20px;
    min-width: 0;
    transition: all var(--transition);
}

.vip-tier:hover {
    transform: scale(1.02);
    border-color: var(--secondary);
}

.vip-tier__name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.vip-tier__badge {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
}

.vip-tier__badge img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.vip-tier__benefits {
    font-size: 15px;
    color: var(--muted-foreground);
    line-height: 1.5;
}

.vip-tier__benefits li {
    padding-left: 16px;
    position: relative;
    margin-bottom: 6px;
}

.vip-tier__benefits li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.vip-tier--bronze { border-left-color: #CD7F32; }
.vip-tier--silver { border-left-color: #C0C0C0; }
.vip-tier--gold { border-left-color: #FFD700; }
.vip-tier--platinum { border-left-color: #E5E4E2; }
.vip-tier--diamond { border-left-color: var(--primary); box-shadow: var(--shadow-glow-green); }

@media (min-width: 1024px) {
    .vip-tiers {
        flex-direction: row;
    }
    .vip-tier {
        flex: 1;
    }
}

/* VIP tier list (zahlungen page) */
.vip-tier-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--border);
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 12px;
    transition: all var(--transition);
}

.vip-tier-row:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow-glow-gold);
}

.vip-tier-row__name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--foreground);
}

.vip-tier-row__speed {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary);
}

.vip-tier-row--bronze { border-left-color: #CD7F32; }
.vip-tier-row--silver { border-left-color: #C0C0C0; }
.vip-tier-row--gold { border-left-color: #FFD700; }
.vip-tier-row--platinum { border-left-color: #E5E4E2; }
.vip-tier-row--diamond { border-left-color: var(--primary); }

/* ============================================
   CRYPTO BADGES - Circular coin icons
   ============================================ */

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

.crypto-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.crypto-badge__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--card);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all var(--transition);
}

.crypto-badge:hover .crypto-badge__icon {
    border-color: var(--secondary);
    box-shadow: var(--shadow-glow-gold);
}

.crypto-badge__icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.crypto-badge__name {
    font-size: 14px;
    color: var(--muted-foreground);
    font-weight: 500;
}

/* ============================================
   STAT HIGHLIGHT - Large number with label
   ============================================ */

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

.stat-highlight__number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

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

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

/* ============================================
   PULL QUOTE - Oversized quote with attribution
   ============================================ */

.pull-quote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 24px;
    line-height: 1.4;
    color: var(--foreground);
    padding: 32px;
    border-left: 4px solid var(--secondary);
    background: var(--card);
    border-radius: 0 12px 12px 0;
    margin: 32px 0;
}

.pull-quote__cite {
    display: block;
    font-family: var(--font-body);
    font-style: normal;
    font-size: 15px;
    color: var(--muted-foreground);
    margin-top: 16px;
}

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

/* ============================================
   TL;DR BOX - Quick verdict / key takeaways
   ============================================ */

.tldr-box {
    background: #1A2D20;
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 32px;
}

.tldr-box__title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.tldr-box__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tldr-box__list li {
    font-size: 17px;
    line-height: 1.6;
    color: var(--foreground);
    padding-left: 28px;
    position: relative;
}

.tldr-box__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 18px;
}

/* ============================================
   SECTION LABEL - Heading above FAQ groups
   ============================================ */

.section-label {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
}

@media (min-width: 1024px) {
    .section-label {
        font-size: 28px;
    }
}

/* ============================================
   COMPACT HEADER - For pages without full hero
   ============================================ */

.compact-header {
    padding: 80px 0 0;
}

.compact-header__title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 12px;
}

.compact-header__subtext {
    font-size: 17px;
    color: var(--muted-foreground);
    max-width: 600px;
    margin-bottom: 16px;
}

.compact-header__accent {
    width: 60px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
    margin-bottom: 8px;
}

@media (min-width: 1024px) {
    .compact-header {
        padding-top: 100px;
    }
    .compact-header__title {
        font-size: 36px;
    }
}

/* ============================================
   TWO-COLUMN LAYOUT - Content + visual
   ============================================ */

.two-col {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: stretch;
}

.two-col__text {
    min-width: 0;
}

.two-col__visual {
    min-width: 0;
}

.two-col__visual img {
    border-radius: 12px;
    width: 100%;
}

@media (min-width: 768px) {
    .two-col {
        flex-direction: row;
        align-items: center;
    }
    .two-col__text,
    .two-col__visual {
        flex: 1;
    }
}

/* ============================================
   CASHBACK RING - Circular progress indicator
   ============================================ */

.cashback-ring {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 4px solid var(--border);
    border-top-color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    animation: ringGlow 3s ease-in-out infinite;
}

.cashback-ring__value {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary);
}

@keyframes ringGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 193, 7, 0.2); }
    50% { box-shadow: 0 0 25px rgba(255, 193, 7, 0.5); }
}

/* ============================================
   TIER PROGRESSION BAR - VIP visual progression
   ============================================ */

.tier-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    position: relative;
}

.tier-bar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #CD7F32, #C0C0C0, #FFD700, #E5E4E2, var(--primary));
    transform: translateY(-50%);
    z-index: 0;
}

.tier-bar__node {
    position: relative;
    z-index: 1;
    background: var(--background);
    padding: 8px 16px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--foreground);
    border: 2px solid var(--border);
    border-radius: 20px;
    text-align: center;
    min-width: 60px;
}

@media (min-width: 768px) {
    .tier-bar__node {
        font-size: 16px;
        padding: 10px 20px;
    }
}

/* ============================================
   PHONE MOCKUP - Mobile live play illustration
   ============================================ */

.phone-mockup {
    max-width: 240px;
    margin: 0 auto;
    position: relative;
}

.phone-mockup img {
    width: 100%;
    border-radius: 16px;
    filter: drop-shadow(0 0 20px rgba(0, 230, 118, 0.3));
}

/* ============================================
   ANIMATIONS - Scroll reveal & staggered cards
   ============================================ */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Staggered delays for grid children */
.grid .animate-on-scroll:nth-child(1) { transition-delay: 0ms; }
.grid .animate-on-scroll:nth-child(2) { transition-delay: 100ms; }
.grid .animate-on-scroll:nth-child(3) { transition-delay: 200ms; }
.grid .animate-on-scroll:nth-child(4) { transition-delay: 300ms; }
.grid .animate-on-scroll:nth-child(5) { transition-delay: 400ms; }
.grid .animate-on-scroll:nth-child(6) { transition-delay: 500ms; }

/* Arrow-strike draw-in animation */
.arrow-strike {
    transform-origin: left center;
    animation: drawIn 1s ease-out forwards;
}

@keyframes drawIn {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

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

.text-center { text-align: center; }
.text-gold { color: var(--secondary); }
.text-green { color: var(--primary); }
.text-muted { color: var(--muted-foreground); }
.text-cream { color: var(--foreground); }

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: 16px; }
.mb-md { margin-bottom: 24px; }
.mb-lg { margin-bottom: 32px; }
.mt-lg { margin-top: 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;
}

/* ============================================
   HERO ARROW-STRIKE - Positioned at bottom of hero
   ============================================ */

.hero__arrow-strike {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
}

/* ============================================
   INTRO LEAD - Larger lead paragraph after hero
   ============================================ */

.intro-lead {
    font-size: 19px;
    line-height: 1.7;
    color: var(--foreground);
}

/* ============================================
   BONUS IMAGE - Inline treasure chest image
   ============================================ */

.bonus-image {
    border-radius: 12px;
    margin: 32px auto;
    display: block;
    max-width: 100%;
}

/* ============================================
   BENEFIT LIST - VIP advantages list
   ============================================ */

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

.benefit-list li {
    font-size: 17px;
    line-height: 1.6;
    color: var(--foreground);
    padding-left: 24px;
    position: relative;
}

.benefit-list li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* ============================================
   FAQ TEASER - Compact Q&A list (not accordion)
   ============================================ */

.faq-teaser {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.faq-teaser__item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px 24px;
    transition: border-color var(--transition);
}

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

.faq-teaser__question {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 8px;
}

.faq-teaser__answer {
    font-size: 17px;
    line-height: 1.6;
    color: var(--muted-foreground);
}

.faq-teaser__more {
    text-align: center;
    margin-top: 24px;
}

.faq-teaser__more a {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
}

/* ============================================
   CONCLUSION LEAD - Closing paragraph
   ============================================ */

.conclusion-lead {
    font-size: 19px;
    line-height: 1.7;
    color: var(--foreground);
}

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

/* ============================================
   SITEMAP LIST - Vertical page list with gold accents
   ============================================ */

.sitemap-section {
    padding: 72px 0;
}

.sitemap-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.sitemap-list__entry {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 2px solid var(--secondary);
    border-radius: 8px;
    padding: 24px;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.sitemap-list__entry:hover {
    border-left-color: var(--primary);
    box-shadow: var(--shadow-glow-gold);
}

.sitemap-list__title {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 8px;
}

.sitemap-list__desc {
    font-size: 17px;
    line-height: 1.6;
    color: var(--muted-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;
}
