/*
 * CSS STYLES - Casina Casino Design System
 * Corrida arena theme: dark, cinematic, scarlet & gold neon.
 * Single fixed dark theme - no toggle.
 */

:root {
    --background: #12080b;
    --foreground: #f7ead9;
    --card: #1a0c10;
    --card-foreground: #f7ead9;
    --popover: #1f0e13;
    --popover-foreground: #f7ead9;
    --primary: #d92639;
    --primary-foreground: #ffffff;
    --secondary: #2a0f16;
    --secondary-foreground: #f7ead9;
    --muted: #3a1a21;
    --muted-foreground: #c6a892;
    --accent: #f2b84b;
    --accent-foreground: #17100c;
    --destructive: #dc2626;
    --destructive-foreground: #ffffff;
    --border: #4a232b;
    --input: #1c0d11;
    --ring: #f2b84b;

    --header-height: 60px;
    --font-display: "Cinzel", serif;
    --font-body: "Manrope", sans-serif;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.55);
    --transition: 280ms ease;
}

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

*,
*::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);
    background-color: var(--background);
    color: var(--foreground);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

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

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

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

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

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

section {
    overflow: clip;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--foreground);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 0.6em;
}

h1 {
    font-size: clamp(30px, 5.5vw, 56px);
    line-height: 1.12;
    letter-spacing: 0.02em;
}

h2 {
    font-size: clamp(26px, 4.5vw, 40px);
    line-height: 1.15;
    letter-spacing: 0.01em;
}

h3 {
    font-size: clamp(20px, 3vw, 26px);
    line-height: 1.2;
}

h4 {
    font-size: clamp(18px, 2.5vw, 22px);
    line-height: 1.25;
}

p {
    margin-bottom: 1em;
}

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

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

/* ============================================
   LAYOUT CONTAINERS
   ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 56px 0;
}

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

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

@media (min-width: 1280px) {
    .section {
        padding: 112px 0;
    }
}

.section__title {
    margin-bottom: 16px;
}

.section__intro {
    color: var(--muted-foreground);
    font-size: 17px;
    line-height: 1.6;
    max-width: 72ch;
    margin-bottom: 40px;
}

/* ============================================
   HEADER & NAVIGATION
   Sticky header with brand, nav, and CTA actions.
   ============================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--background);
    border-bottom: 1px solid var(--border);
    min-height: var(--header-height);
}

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

.site-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.site-brand__icon {
    display: inline-block;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    position: relative;
    flex-shrink: 0;
}

.site-brand__icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    background: var(--primary);
    transform: translate(-50%, -50%) rotate(45deg);
    border-radius: 2px;
}

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

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

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    border-radius: var(--radius-sm);
    z-index: 1001;
    flex-shrink: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--foreground);
    border-radius: 2px;
    transition: transform 250ms 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);
}

/* Primary nav - mobile drawer by default */
.primary-nav {
    display: none;
}

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

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

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

.nav-list a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 4px;
    font-size: 17px;
    font-weight: 500;
    color: var(--foreground);
}

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

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

.nav-actions .btn {
    text-align: center;
}

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

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

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

    .primary-nav.is-open {
        position: static;
        background: transparent;
        padding: 0;
    }

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

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

    .nav-list a {
        min-height: auto;
        padding: 8px 0;
        font-size: 15px;
        font-weight: 500;
    }

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    line-height: 1;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    min-height: 48px;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    box-shadow: 0 2px 12px rgba(217, 38, 57, 0.3);
}

.btn-primary:hover {
    background: #e8364a;
    color: var(--primary-foreground);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(217, 38, 57, 0.45);
}

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

.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(242, 184, 75, 0.05);
}

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

/* CTA pulse animation - plays once on viewport entry */
.cta-pulse {
    animation: cta-pulse-anim 600ms ease-out;
}

.cta-pulse.pulsed {
    animation: none;
}

@keyframes cta-pulse-anim {
    0% { transform: scale(1); }
    50% { transform: scale(1.04); box-shadow: 0 8px 32px rgba(217, 38, 57, 0.6); }
    100% { transform: scale(1); }
}

/* ============================================
   FOOTER
   Four columns collapsing to one.
   ============================================ */

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

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 16px;
    letter-spacing: 0.03em;
}

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

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

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

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

.payment-mark {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    color: var(--muted-foreground);
}

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 24px 20px 0;
    border-top: 1px solid var(--border);
    text-align: center;
}

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

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

/* ============================================
   HERO SECTION
   Asymmetric layout with matador model and cape-slash.
   ============================================ */

.hero {
    position: relative;
    padding: 48px 0 56px;
    overflow: clip;
}

.hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero__cape-slash {
    position: absolute;
    top: 0;
    right: -10%;
    width: 70%;
    height: 100%;
    background: linear-gradient(135deg, transparent 40%, rgba(217, 38, 57, 0.08) 50%, transparent 60%);
    transform: skewX(-15deg);
    pointer-events: none;
    z-index: 0;
}

.hero__content {
    max-width: 600px;
}

.hero__title {
    font-size: clamp(30px, 6vw, 56px);
    line-height: 1.12;
    margin-bottom: 20px;
}

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

.hero__offer {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 28px;
}

.hero__offer-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero__offer-number {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 28px;
    color: var(--accent);
    line-height: 1;
}

.hero__offer-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted-foreground);
}

.hero__cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

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

.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__visual-ring {
    position: absolute;
    width: 90%;
    height: 90%;
    border: 2px solid rgba(242, 184, 75, 0.15);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero__visual img {
    position: relative;
    z-index: 1;
    max-height: 500px;
    width: auto;
}

.hero__neon-bloom {
    position: absolute;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(217, 38, 57, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

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

    .hero__inner {
        grid-template-columns: 1.2fr 1fr;
        gap: 60px;
    }
}

/* ============================================
   CARD GRID & INFO CARDS
   Responsive grid: 1 → 2 → 3 columns.
   ============================================ */

.card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

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

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

/* Modifier for 4-column grids */
.card-grid--4 {
    grid-template-columns: 1fr;
}

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

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

/* Modifier for 2-column grids */
.card-grid--2 {
    grid-template-columns: 1fr;
}

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

.info-card {
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.info-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent);
}

.info-card__image {
    margin: -20px -20px 16px;
    border-radius: var(--radius) var(--radius) 0 0;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--muted);
}

.info-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-card__body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.info-card__tag {
    display: inline-block;
    align-self: flex-start;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent);
    padding: 4px 10px;
    border: 1px solid rgba(242, 184, 75, 0.3);
    border-radius: 4px;
    margin-bottom: 4px;
}

.info-card__title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.25;
    color: var(--foreground);
    margin-bottom: 4px;
}

.info-card__text {
    font-size: 15px;
    line-height: 1.55;
    color: var(--muted-foreground);
    flex: 1;
}

.info-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    margin-top: 8px;
    transition: gap var(--transition), color var(--transition);
}

.info-card__link:hover {
    color: var(--primary);
    gap: 10px;
}

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

    .info-card__image {
        margin: -28px -28px 20px;
    }

    .info-card__title {
        font-size: 22px;
    }
}

/* ============================================
   STAT BLOCKS
   Row of large gold numerals with labels.
   ============================================ */

.stat-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 32px 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    position: relative;
    padding: 24px 16px;
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.stat-item__tick {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
    margin-bottom: 4px;
}

.stat-item__number {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: clamp(32px, 6vw, 48px);
    color: var(--accent);
    line-height: 1;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
    position: relative;
}

.stat-item__number::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: radial-gradient(ellipse, rgba(217, 38, 57, 0.12) 0%, transparent 70%);
    z-index: -1;
    border-radius: 50%;
}

.stat-item__label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--foreground);
    font-weight: 600;
}

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

@media (min-width: 1024px) {
    .stat-block {
        grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
        gap: 24px;
        padding: 40px 0;
    }
}

/* ============================================
   FAQ ACCORDION
   Bordered burgundy panels, rotating gold plus icon.
   ============================================ */

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 1120px;
    margin: 0 auto;
}

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

.faq-item.is-open {
    border-color: rgba(242, 184, 75, 0.4);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 20px 24px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    color: var(--foreground);
    text-align: left;
    cursor: pointer;
    transition: color var(--transition);
}

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

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

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

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--accent);
    border-radius: 2px;
    transition: transform 250ms ease;
}

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

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

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

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 250ms ease;
}

.faq-item.is-open .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer__inner {
    overflow: hidden;
}

.faq-answer__inner p {
    padding: 0 24px 20px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--muted-foreground);
}

/* ============================================
   CTA BANNER
   Full-bleed burgundy panel with diagonal scarlet slash.
   ============================================ */

.cta-banner {
    position: relative;
    background: var(--secondary);
    padding: 56px 20px;
    text-align: center;
    overflow: clip;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cta-banner__slash {
    position: absolute;
    top: 0;
    left: -10%;
    width: 120%;
    height: 100%;
    background: linear-gradient(135deg, transparent 42%, rgba(217, 38, 57, 0.12) 50%, transparent 58%);
    transform: skewX(-12deg);
    pointer-events: none;
}

.cta-banner__ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(500px, 80%);
    height: 80%;
    border: 1px solid rgba(242, 184, 75, 0.12);
    border-radius: 50%;
    pointer-events: none;
}

.cta-banner__inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.cta-banner__heading {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(26px, 4.5vw, 40px);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--foreground);
    line-height: 1.15;
    margin-bottom: 0;
}

.cta-banner__subline {
    font-size: 16px;
    color: var(--muted-foreground);
    max-width: 50ch;
    margin-bottom: 8px;
}

.cta-banner__micro {
    font-size: 13px;
    color: var(--muted-foreground);
    margin-top: 4px;
}

@media (min-width: 768px) {
    .cta-banner {
        padding: 80px 20px;
    }
}

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

/* ============================================
   TRUST SIGNALS
   Full-bleed strip with badges.
   ============================================ */

.trust-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 32px 20px;
    background: var(--card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.trust-badge__icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: var(--accent);
    font-family: var(--font-display);
}

.trust-badge__text {
    font-size: 13px;
    color: var(--muted-foreground);
    font-weight: 500;
}

/* ============================================
   ENGAGEMENT PATTERNS
   Callout, TL;DR, pull quote, details/summary.
   ============================================ */

.callout {
    background: var(--secondary);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin: 24px 0;
}

.callout p {
    margin-bottom: 0;
    color: var(--foreground);
    font-size: 16px;
    line-height: 1.6;
}

.tldr {
    background: linear-gradient(135deg, var(--secondary), var(--card));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin: 24px 0;
}

.tldr__title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 12px;
}

.tldr p {
    margin-bottom: 0;
    color: var(--foreground);
    font-size: 16px;
    line-height: 1.6;
}

.pull-quote {
    margin: 32px 0;
    padding: 24px 28px;
    border-left: 3px solid var(--primary);
    background: rgba(217, 38, 57, 0.05);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.pull-quote p {
    font-family: var(--font-display);
    font-size: clamp(18px, 2.5vw, 22px);
    font-style: italic;
    color: var(--foreground);
    line-height: 1.4;
    margin-bottom: 12px;
}

.pull-quote cite {
    font-family: var(--font-body);
    font-size: 14px;
    font-style: normal;
    color: var(--muted-foreground);
}

/* Details/summary styled accordion */
details {
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
}

details summary {
    padding: 18px 24px;
    font-weight: 700;
    font-size: 16px;
    color: var(--foreground);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

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

details summary::after {
    content: '+';
    font-size: 22px;
    color: var(--accent);
    font-weight: 400;
    transition: transform 250ms ease;
}

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

details > *:not(summary) {
    padding: 0 24px 18px;
    color: var(--muted-foreground);
    font-size: 15px;
    line-height: 1.6;
}

/* ============================================
   TABLE STYLES
   ============================================ */

.table-wrapper {
    overflow-x: auto;
    max-width: 100%;
    margin: 24px 0;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

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

th {
    background: var(--secondary);
    font-weight: 700;
    color: var(--accent);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

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

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

/* ============================================
   ANIMATIONS
   Scroll-reveal with staggered fade-up.
   ============================================ */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 320ms ease-out, transform 320ms ease-out;
}

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

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

.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }
.text-muted { color: var(--muted-foreground); }
.font-display { font-family: var(--font-display); }
.font-body { font-family: var(--font-body); }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 16px; }
.mb-2 { margin-bottom: 16px; }
.mt-4 { margin-top: 32px; }
.mb-4 { margin-bottom: 32px; }

.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

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

.flex-col {
    display: flex;
    flex-direction: column;
}

.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }

/* ============================================
   PAGE HERO
   Full-bleed background hero with dark gradient
   overlay and centered content (inner pages).
   ============================================ */

.page-hero {
    position: relative;
    padding: 72px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: clip;
    border-bottom: 1px solid var(--border);
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(18, 8, 11, 0.82) 0%, rgba(18, 8, 11, 0.62) 50%, rgba(18, 8, 11, 0.95) 100%);
    z-index: 1;
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    width: 120%;
    height: 100%;
    background: linear-gradient(135deg, transparent 44%, rgba(217, 38, 57, 0.1) 50%, transparent 56%);
    transform: skewX(-12deg);
    z-index: 1;
    pointer-events: none;
}

.page-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.page-hero__title {
    font-size: clamp(30px, 5.5vw, 52px);
    line-height: 1.12;
    margin-bottom: 16px;
}

.page-hero__subline {
    font-size: 17px;
    line-height: 1.6;
    color: var(--muted-foreground);
    max-width: 64ch;
    margin: 0 auto 28px;
}

@media (min-width: 768px) {
    .page-hero {
        padding: 96px 0;
    }
}

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

/* ============================================
   VIP TIER LIST
   Compact ladder rows inside VIP teaser card.
   ============================================ */

.vip-tiers {
    display: flex;
    flex-direction: column;
    margin: 8px 0 4px;
}

.vip-tiers li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    color: var(--muted-foreground);
}

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

.vip-tiers__name {
    font-weight: 700;
    color: var(--foreground);
    flex-shrink: 0;
}

.vip-tiers__benefit {
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
    text-align: right;
}

/* ============================================
   SITEMAP PAGE LIST
   Vertical stack of page entries with scarlet hover underline.
   ============================================ */

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

.sitemap-entry {
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}

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

.sitemap-entry__title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.25;
    color: var(--foreground);
    margin-bottom: 10px;
}

.sitemap-entry__link {
    color: var(--foreground);
    background-image: linear-gradient(var(--primary), var(--primary));
    background-size: 0% 2px;
    background-position: 0 100%;
    background-repeat: no-repeat;
    transition: background-size 250ms ease, color var(--transition);
    padding-bottom: 2px;
}

.sitemap-entry__link:hover {
    color: var(--accent);
    background-size: 100% 2px;
}

.sitemap-entry__text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted-foreground);
    max-width: 74ch;
    margin-bottom: 0;
}

/* ============================================
   VIP TIER CARDS (vip-programm.html)
   Gold border intensity rises per level.
   ============================================ */

.tier-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

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

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

.tier-card {
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.tier-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.tier-card--1 { border-color: rgba(242, 184, 75, 0.12); }
.tier-card--2 { border-color: rgba(242, 184, 75, 0.25); }
.tier-card--3 { border-color: rgba(242, 184, 75, 0.4); }
.tier-card--4 { border-color: rgba(242, 184, 75, 0.6); }
.tier-card--5 {
    border-color: var(--accent);
    box-shadow: 0 0 24px rgba(242, 184, 75, 0.16);
}

.tier-card__crest {
    width: 88px;
    height: 88px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(242, 184, 75, 0.35);
    flex-shrink: 0;
}

.tier-card__crest img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tier-card__level {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted-foreground);
    font-weight: 700;
}

.tier-card__name {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--accent);
    margin-bottom: 0;
}

.tier-card__desc {
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.55;
    flex: 1;
}

.tier-card__facts {
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-top: 1px solid var(--border);
    padding-top: 12px;
}

.tier-card__facts li {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    font-size: 13px;
    color: var(--muted-foreground);
}

.tier-card__facts strong {
    color: var(--foreground);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

/* Gold neon bloom variant for VIP hero */
.hero__neon-bloom--gold {
    background: radial-gradient(circle, rgba(242, 184, 75, 0.2) 0%, transparent 70%);
}

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

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