/*
 * CLEOBETRA CASINO - DESIGN SYSTEM
 * Dark luxury Egyptian theme with gold-turquoise accents
 * Fonts: Cinzel (headings) + Marcellus (body)
 * Mobile-first, single dark theme (no toggle)
 */

/* ============================================
   DESIGN TOKENS
   Near-black blue background, luminous gold and
   bright turquoise accents on dark obsidian cards
   ============================================ */
:root {
    /* Core palette */
    --background: #0A0E1A;
    --foreground: #F5F0E1;
    --card: #141822;
    --card-foreground: #F5F0E1;
    --popover: #141822;
    --popover-foreground: #F5F0E1;
    --primary: #20B2AA;
    --primary-foreground: #0A0E1A;
    --secondary: #1E2535;
    --secondary-foreground: #F5F0E1;
    --muted: #2A2F3D;
    --muted-foreground: #A8B5C8;
    --accent: #D4AF37;
    --accent-foreground: #0A0E1A;
    --destructive: #d71212;
    --destructive-foreground: #F5F0E1;
    --border: #2A2F3D;
    --input: #141822;
    --ring: #20B2AA;

    /* Extended palette */
    --gold-light: #D4AF37;
    --gold-dark: #B8860B;
    --gold-glow: rgba(255, 215, 0, 0.3);
    --turquoise-glow: rgba(32, 178, 170, 0.4);

    /* Typography */
    --font-heading: "Cinzel", serif;
    --font-body: "Marcellus", serif;

    /* Spacing */
    --section-gap: 70px;
    --component-padding: 24px;
    --header-height: 64px;
    --container-max: 1200px;
    --grid-gap: 24px;

    /* Motion */
    --transition: 300ms ease-out;
}

@media (min-width: 1024px) {
    :root {
        --section-gap: 80px;
        --component-padding: 40px;
    }
}

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

html {
    scroll-behavior: smooth;
}

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

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

section {
    overflow: clip;
}

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

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

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

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

/* ============================================
   ACCESSIBILITY
   ============================================ */
:focus-visible {
    outline: 2px solid var(--primary);
    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;
}

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

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

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

/* ============================================
   TYPOGRAPHY
   Cinzel headings with wide letter-spacing
   Marcellus body at 17px / 1.6 line-height
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 28px;
    letter-spacing: 0.02em;
}

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

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

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

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

p {
    margin: 0 0 28px;
}

@media (min-width: 1024px) {
    h1 { font-size: 56px; }
    h2 { font-size: 40px; }
    h3 { font-size: 28px; }
    h4 { font-size: 20px; }
}

/* Gold gradient text fill */
.gold-text {
    background: linear-gradient(135deg, #D4AF37 0%, #FFA500 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Turquoise glowing accent text */
.turquoise-text {
    color: #40E0D0;
    text-shadow: 0 0 12px rgba(32, 178, 170, 0.4);
}

/* ============================================
   LAYOUT UTILITIES
   .container - max 1200px centered
   .section - 80px desktop / 70px mobile vertical padding
   ============================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

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

.section-header {
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.content-block {
    max-width: 800px;
    margin: 0 auto;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--grid-gap);
}

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

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

#main-content {
    min-height: 60vh;
}

/* ============================================
   HEADER & NAVIGATION
   Sticky header with logo, nav, Login/Registrieren
   Mobile drawer below 1024px
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 14, 26, 0.98);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-height);
    gap: 24px;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.site-brand:hover {
    color: inherit;
}

.logo {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    flex-shrink: 0;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.03em;
    white-space: nowrap;
}

/* Desktop nav - visible at 1024px+ */
.primary-nav {
    display: none;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 15px;
    color: var(--foreground);
    text-decoration: none;
    padding: 8px 16px;
    transition: color var(--transition);
    white-space: nowrap;
}

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

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

.nav-btn-register {
    padding: 10px 24px;
    font-size: 14px;
}

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

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: all var(--transition);
}

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

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

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

/* Mobile drawer - full-width opaque panel below header */
.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;
}

.primary-nav.is-open .nav-list {
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 16px;
}

.primary-nav.is-open .nav-link {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 12px 16px;
    font-size: 18px;
    border-radius: 8px;
    background: var(--secondary);
}

.primary-nav.is-open .nav-btn-register {
    text-align: center;
    font-size: 18px;
    padding: 14px 24px;
}

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

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

    /* Apply blur only on desktop - avoids containing-building trap on mobile */
    .site-header {
        background: rgba(10, 14, 26, 0.92);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
}

/* ============================================
   BUTTONS
   .btn - base with 44px touch target
   .btn-primary - turquoise with glow
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 32px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.05em;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    box-shadow: 0 0 20px var(--turquoise-glow);
}

.btn-primary:hover {
    background: #2DD4CF;
    color: var(--primary-foreground);
    box-shadow: 0 0 30px rgba(32, 178, 170, 0.6);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: var(--accent);
    color: var(--accent-foreground);
}

/* ============================================
   HERO SECTION
   Full-bleed with background image, golden light
   shaft, particles, and dramatic text overlay
   ============================================ */
.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: clip;
}

@media (min-width: 1024px) {
    .hero {
        min-height: 700px;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 14, 26, 0.6) 0%, rgba(10, 14, 26, 0.88) 100%);
    z-index: 1;
}

.hero-light-shaft {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    max-width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.12) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 24px;
    max-width: 700px;
}

.hero-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--muted-foreground);
    margin-bottom: 32px;
    max-width: 600px;
}

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

@media (min-width: 1024px) {
    .hero-title { font-size: 56px; }
    .hero-subtitle { font-size: 20px; }
}

/* Golden floating particles */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.8), transparent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

@keyframes float-particle {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
    50% { transform: translateY(-40px) translateX(15px); opacity: 0.8; }
}

.particle:nth-child(1) { animation: float-particle 8s ease-in-out infinite; top: 20%; left: 10%; }
.particle:nth-child(2) { animation: float-particle 10s ease-in-out infinite 1s; top: 60%; left: 20%; }
.particle:nth-child(3) { animation: float-particle 12s ease-in-out infinite 2s; top: 30%; left: 70%; }
.particle:nth-child(4) { animation: float-particle 9s ease-in-out infinite 0.5s; top: 70%; left: 80%; }
.particle:nth-child(5) { animation: float-particle 11s ease-in-out infinite 1.5s; top: 40%; left: 50%; }

/* ============================================
   INFO CARD GRID
   3 columns desktop, 2 tablet, 1 mobile
   Dark obsidian cards with gold gradient titles
   1.05 scale hover with golden shadow lift
   ============================================ */
.info-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--grid-gap);
}

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

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

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

.info-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px var(--gold-glow);
}

.card-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.card-icon-text {
    font-size: 48px;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 12px;
}

.card-description {
    font-size: 17px;
    line-height: 1.6;
    color: var(--foreground);
    margin: 0;
}

/* ============================================
   FAQ ACCORDION
   Native details/summary with CSS-animated height
   Gold gradient question text, turquoise +/- icon
   Active panel: golden shadow + left accent border
   ============================================ */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow var(--transition), border-color var(--transition);
}

.faq-item[open] {
    border-left: 3px solid var(--accent);
    box-shadow: 0 4px 20px var(--gold-glow);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    cursor: pointer;
    list-style: none;
    user-select: none;
}

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

.faq-question-text {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--accent);
    font-weight: 500;
    flex: 1;
    padding-right: 16px;
}

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

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--primary);
    border-radius: 2px;
}

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

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

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

.faq-answer-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows var(--transition);
}

.faq-item[open] .faq-answer-wrapper {
    grid-template-rows: 1fr;
}

.faq-answer {
    overflow: hidden;
    min-height: 0;
}

.faq-answer p {
    padding: 0 24px 24px;
    margin: 0;
    color: var(--foreground);
    font-size: 17px;
    line-height: 1.6;
}

/* ============================================
   CTA BANNER
   Full-bleed with golden light shaft overlay
   Centered Cinzel headline + turquoise button
   80px desktop / 70px mobile vertical padding
   ============================================ */
.cta-banner {
    position: relative;
    background: var(--background);
    padding: 70px 24px;
    text-align: center;
    overflow: clip;
}

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

.cta-banner-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

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

.cta-headline {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
}

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

.cta-subtext {
    font-size: 18px;
    color: var(--foreground);
    margin-bottom: 32px;
}

.cta-button {
    font-size: 18px;
    padding: 16px 48px;
}

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

/* ============================================
   ENGAGEMENT PATTERNS
   TL;DR box, callout, stat highlight, pull quote
   ============================================ */

/* TL;DR / Summary box */
.tldr-box {
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    margin: 28px 0;
}

.tldr-box-title {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--accent);
    margin: 0 0 12px;
}

/* Callout / highlight box */
.callout-box {
    border-left: 4px solid var(--primary);
    background: var(--secondary);
    padding: 20px 24px;
    border-radius: 0 8px 8px 0;
    margin: 28px 0;
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--accent);
    display: block;
    line-height: 1.1;
    margin-bottom: 8px;
}

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

/* Pull quote */
.pull-quote {
    font-family: var(--font-heading);
    font-size: 24px;
    font-style: italic;
    color: var(--accent);
    border-left: 4px solid var(--accent);
    padding: 24px 32px;
    margin: 40px 0;
    line-height: 1.4;
    background: var(--secondary);
    border-radius: 0 8px 8px 0;
}

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

/* ============================================
   TABLES
   Styled comparison tables with gold headers
   ============================================ */
.table-wrapper {
    max-width: 100%;
    overflow-x: auto;
    margin: 28px 0;
}

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

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

.comparison-table th {
    font-family: var(--font-heading);
    color: var(--accent);
    font-weight: 600;
    background: var(--secondary);
}

.comparison-table tbody tr:hover {
    background: var(--secondary);
}

/* ============================================
   STEP LIST
   Numbered guide steps with gold circular badges
   ============================================ */
.step-list {
    counter-reset: step;
    list-style: none;
    padding: 0;
    margin: 28px 0;
}

.step-list li {
    counter-increment: step;
    position: relative;
    padding-left: 60px;
    margin-bottom: 24px;
    min-height: 44px;
}

.step-list li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: var(--background);
}

/* ============================================
   SOCIAL PROOF - Winner cards
   ============================================ */
.winner-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--grid-gap);
}

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

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

.winner-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}

.winner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px var(--gold-glow);
}

.winner-amount {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 8px;
}

.winner-game {
    font-size: 16px;
    color: var(--foreground);
    margin-bottom: 4px;
}

.winner-time {
    font-size: 14px;
    color: var(--muted-foreground);
}

/* ============================================
   TRUST BADGES ROW
   ============================================ */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: center;
    margin: 28px 0;
}

.trust-badge {
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 14px;
    color: var(--muted-foreground);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ============================================
   BONUS HIGHLIGHTS - Two-column layout
   ============================================ */
.bonus-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--grid-gap);
}

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

.bonus-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: var(--component-padding);
}

.bonus-item-title {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--accent);
    margin-bottom: 12px;
}

.bonus-item-value {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 16px;
}

/* ============================================
   LICENSING SECTION
   Near-black blue background with Anjouan info
   ============================================ */
.licensing-section {
    background: var(--secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.license-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--card);
    border: 1px solid var(--accent);
    border-radius: 8px;
    padding: 16px 24px;
    margin: 16px 0;
}

.license-badge-text {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--accent);
}

/* ============================================
   SEO TEXT SECTION
   Max-width for readability, inline anchor styling
   ============================================ */
.seo-text {
    max-width: 800px;
    margin: 0 auto;
}

.seo-text p {
    margin-bottom: 20px;
}

.seo-text a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

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

/* ============================================
   FOOTER
   4 columns desktop, stacked on mobile
   Internal links, payments, license, 18+
   ============================================ */
.site-footer {
    background: var(--card);
    border-top: 1px solid var(--border);
    padding: 60px 0 24px;
}

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

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

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

.footer-heading {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--accent);
    margin-bottom: 16px;
}

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

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

.footer-link {
    color: var(--foreground);
    text-decoration: none;
    font-size: 16px;
    transition: color var(--transition);
}

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

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

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

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

/* ============================================
   SITEMAP / SEITENÜBERSICHT
   Vertical list of page entries with descriptions
   ============================================ */
.sitemap-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sitemap-entry {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: var(--component-padding);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.sitemap-entry:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 20px var(--gold-glow);
}

.sitemap-entry-title {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 12px;
}

.sitemap-link {
    color: #E5C04A;
    text-decoration: none;
    transition: color var(--transition);
}

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

.sitemap-link-static {
    cursor: default;
}

.sitemap-link-static:hover {
    color: #E5C04A;
}

.sitemap-entry-desc {
    margin: 0;
    color: var(--foreground);
    font-size: 17px;
    line-height: 1.6;
}

/* ============================================
   SCROLL ANIMATIONS
   Fade-in slide-up with staggered delays
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 600ms ease-out, transform 600ms ease-out;
}

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

/* Stagger delays for grid items */
.info-card-grid .info-card:nth-child(1) { transition-delay: 0ms; }
.info-card-grid .info-card:nth-child(2) { transition-delay: 100ms; }
.info-card-grid .info-card:nth-child(3) { transition-delay: 200ms; }
.info-card-grid .info-card:nth-child(4) { transition-delay: 300ms; }
.info-card-grid .info-card:nth-child(5) { transition-delay: 400ms; }
.info-card-grid .info-card:nth-child(6) { transition-delay: 500ms; }

.winner-grid .winner-card:nth-child(1) { transition-delay: 0ms; }
.winner-grid .winner-card:nth-child(2) { transition-delay: 100ms; }
.winner-grid .winner-card:nth-child(3) { transition-delay: 200ms; }

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