/*
 * File: wp-content/themes/fanclub-base/assets/css/base.css
 * Theme: fanclub-base v1.0.0
 */

/* ═══════════════════════════════════════════════════════════════
   0. FONT — Barlow Condensed (self-hosted, siehe assets/fonts/fonts.css)
   ═══════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════
   1. CSS CUSTOM PROPERTIES
   ═══════════════════════════════════════════════════════════════ */

:root {
    /* Signalisiert Browsern (Samsung Internet, Chrome Auto-Dark u.a.):
       Page ist bereits dark-styled — bitte keinen automatischen Farb-
       Filter drüberlegen. Verhindert "dunkelgelb statt gelb" + invertierte
       Schwarz-Töne im Samsung-Browser-Dark-Mode. */
    color-scheme: dark;

    /* ─────────────────────────────────────────────────────────────
       PRIMITIV-LAYER — statische Farbpalette (Single Source of Truth).
       NICHT direkt in Komponenten verwenden — immer Semantic-Layer nehmen.
       ───────────────────────────────────────────────────────────── */

    /* Brand – BVB-Gelb (Skala matcht bvb.de Web-CI: 300=hell → 800=Focus) */
    --fc-color-yellow-300:  #FFE500;   /* BVB Gelb 300 – Tabs aktiv */
    --fc-color-yellow-500:  #FFD900;   /* BVB Gelb 400 – Brand-Gelb */
    --fc-color-yellow-600:  #FFC400;   /* BVB Gelb 500 – Hover Button */
    --fc-color-yellow-700:  #FFB800;   /* BVB Gelb 600 – Hover Active */
    --fc-color-yellow-800:  #DEBE05;   /* BVB Gelb Focus – Focus-Ring */

    /* Brand – Neon-Grün (matcht bvb.de: 300=sanft, 500=Brand, 600=stark) */
    --fc-color-neon-300:    #E7FF66;   /* BVB Neon 400 – sanfter Akzent */
    --fc-color-neon-500:    #D8FF00;   /* BVB Neon 500 – Brand-Neon */
    --fc-color-neon-600:    #CBE80A;   /* BVB Neon 600 – starker Akzent */
    --fc-color-neon-700:    #C5F000;   /* Focus-Ring Neon */

    /* Neutral – matcht BVB Web-CI plus Dark-Theme-Erweiterungen */
    --fc-color-black:       #000000;
    --fc-color-white:       #FFFFFF;
    --fc-color-grey-950:    #0d0d0d;   /* Dark-Theme-Erweiterung: Surface */
    --fc-color-grey-900:    #1a1a1a;   /* Dark-Theme-Erweiterung: Surface-2 */
    --fc-color-grey-800:    #232323;   /* BVB Grau 900 – Text/Icon, Surface */
    --fc-color-grey-700:    #2a2a2a;   /* Dark-Theme-Erweiterung: subtile Borders */
    --fc-color-grey-500:    #3A3A3A;   /* BVB Grau 800 – Text-Disabled */
    --fc-color-grey-400:    #595959;   /* BVB Grau 600 – Text-Dim */
    --fc-color-grey-300:    #A5A5A5;   /* BVB Grau 400 – Text-Muted */
    --fc-color-grey-200:    #D6D6D6;   /* BVB Grau 200 – Borders */
    --fc-color-grey-100:    #E8E8E8;   /* BVB Grau 100 – Light-BG */
    --fc-color-alpha-white-07: rgba(255,255,255,0.07);
    --fc-color-alpha-white-13: rgba(255,255,255,0.13);

    /* Status */
    --fc-color-success:     #22C55E;
    --fc-color-warning:     #F59E0B;
    --fc-color-danger:      #EF4444;
    --fc-color-info:        #3B82F6;

    /* ─────────────────────────────────────────────────────────────
       SEMANTIC-LAYER — referenziert Primitives, reagiert auf Theme.
       DIES sind die Variablen die Komponenten nutzen sollen.
       ───────────────────────────────────────────────────────────── */

    /* Akzent / Brand (Theme-abhängig, siehe [data-theme="neon"]) */
    --fc-accent:            var(--fc-color-yellow-500);
    --fc-accent-hover:      var(--fc-color-yellow-700);
    --fc-accent-btn:        var(--fc-color-yellow-600);
    --fc-accent-light:      var(--fc-color-yellow-300);
    --fc-accent-focus:      var(--fc-color-yellow-800);
    --fc-accent-ghost:      rgba(255,217,0,0.08);
    --fc-border-accent:     rgba(255,217,0,0.25);
    --fc-shadow-accent:     0 0 28px rgba(255,217,0,0.18);

    /* Flächen.
       surface-3/4 mappen auf grey-800 (vorher eigene Primitives grey-750/850 —
       visuell nicht unterscheidbar, Aliase konsolidiert auf einen Wert). */
    --fc-bg:              var(--fc-color-black);
    --fc-surface:         var(--fc-color-grey-950);
    --fc-surface-2:       var(--fc-color-grey-800);
    --fc-surface-3:       var(--fc-color-grey-800);
    --fc-surface-4:       var(--fc-color-grey-800);

    /* Rahmen */
    --fc-border:          var(--fc-color-alpha-white-07);
    --fc-border-mid:      var(--fc-color-alpha-white-13);

    /* Text */
    --fc-text:            var(--fc-color-white);
    --fc-text-primary:    var(--fc-color-white);
    --fc-text-secondary:  var(--fc-color-white);
    --fc-text-muted:      var(--fc-color-grey-300);
    --fc-text-dim:        var(--fc-color-grey-400);
    --fc-text-disabled:   var(--fc-color-grey-500);

    /* Status semantisch */
    --fc-success:         var(--fc-color-success);
    --fc-warning:         var(--fc-color-warning);
    --fc-danger:          var(--fc-color-danger);
    --fc-info:            var(--fc-color-info);

    /* ─────────────────────────────────────────────────────────────
       KOMPATIBILITÄTS-ALIASE — alte Variablennamen.
       NICHT für neuen Code verwenden. Werden in späteren Phasen
       schrittweise durch die Semantic-Layer-Namen ersetzt.
       ───────────────────────────────────────────────────────────── */
    --fc-yellow:          var(--fc-accent);
    --fc-yellow-hover:    var(--fc-accent-hover);
    --fc-yellow-btn:      var(--fc-accent-btn);
    --fc-yellow-light:    var(--fc-accent-light);
    --fc-yellow-focus:    var(--fc-accent-focus);
    --fc-yellow-ghost:    var(--fc-accent-ghost);
    --fc-border-yellow:   var(--fc-border-accent);
    --fc-shadow-yellow:   var(--fc-shadow-accent);
    --fc-black:           var(--fc-color-black);
    --fc-neon:            var(--fc-color-neon-500);
    --fc-neon-strong:     var(--fc-color-neon-600);
    --fc-neon-soft:       var(--fc-color-neon-300);

    /* Typografie */
    --fc-font:            'Barlow Condensed', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Schriftgrößen fluid */
    --fc-size-xs:   clamp(0.80rem, 1.4vw,  0.875rem);
    --fc-size-sm:   clamp(0.875rem, 1.5vw, 1rem);
    --fc-size-base: clamp(1rem, 1.7vw,     1.125rem);
    --fc-size-md:   clamp(1.00rem, 1.8vw,  1.125rem);
    --fc-size-lg:   clamp(1.10rem, 2.2vw,  1.25rem);
    --fc-size-xl:   clamp(1.25rem, 2.8vw,  1.5rem);
    --fc-size-2xl:  clamp(1.50rem, 3.5vw,  2rem);
    --fc-size-3xl:  clamp(2.00rem, 5vw,    3rem);
    --fc-size-4xl:  clamp(2.50rem, 6.5vw,  4rem);
    --fc-size-hero: clamp(3.00rem, 8vw,    5.5rem);

    /* Zeilenhöhen */
    --fc-leading-tight:   1.15;
    --fc-leading-snug:    1.3;
    --fc-leading-normal:  1.6;
    --fc-leading-loose:   1.8;

    /* Letter Spacing */
    --fc-tracking-tight:   -0.02em;
    --fc-tracking-normal:   0;
    --fc-tracking-wide:     0.05em;
    --fc-tracking-wider:    0.10em;
    --fc-tracking-widest:   0.18em;

    /* Abstände */
    --fc-space-1:    4px;
    --fc-space-2:    8px;
    --fc-space-3:    12px;
    --fc-space-4:    16px;
    --fc-space-5:    20px;
    --fc-space-6:    24px;
    --fc-space-8:    32px;
    --fc-space-10:   40px;
    --fc-space-12:   48px;
    --fc-space-16:   64px;
    --fc-space-20:   80px;
    --fc-space-24:   96px;

    /* Section-Padding fluid */
    --fc-section-py: clamp(48px, 8vw, 96px);

    /* Layout */
    --fc-container:      2560px;
    --fc-container-pad:  clamp(16px, 4vw, 32px);
    --fc-nav-h:          72px;

    /* Radius */
    --fc-radius-sm:   3px;
    --fc-radius:      5px;
    --fc-radius-md:   8px;
    --fc-radius-lg:   12px;
    --fc-radius-full: 9999px;

    /* Schatten */
    --fc-shadow-sm:     0 1px 4px rgba(0,0,0,0.5);
    --fc-shadow:        0 4px 16px rgba(0,0,0,0.6);
    --fc-shadow-lg:     0 12px 40px rgba(0,0,0,0.7);
    --fc-shadow-yellow: 0 0 28px rgba(255,217,0,0.18);

    /* Transitionen */
    --fc-trans-fast:   150ms ease;
    --fc-trans:        250ms ease;
    --fc-trans-slow:   400ms ease;
    --fc-trans-spring: 300ms cubic-bezier(0.34,1.56,0.64,1);
}

/* ═══════════════════════════════════════════════════════════════
   1b. NEON COLOR MODE
   Ändert ausschließlich den Semantic-Layer (Accent-Tokens).
   Primitiv-Layer und alle anderen Tokens bleiben konstant.
   Alle Aliase ziehen automatisch nach, weil sie auf Semantic zeigen.
   Aktiviert via: <html data-theme="neon">
   ═══════════════════════════════════════════════════════════════ */

[data-theme="neon"] {
    --fc-accent:          var(--fc-color-neon-500);
    --fc-accent-hover:    var(--fc-color-neon-600);
    --fc-accent-btn:      var(--fc-color-neon-600);
    --fc-accent-light:    var(--fc-color-neon-300);
    --fc-accent-focus:    var(--fc-color-neon-700);
    --fc-accent-ghost:    rgba(216,255,0,0.08);
    --fc-border-accent:   rgba(216,255,0,0.25);
    --fc-shadow-accent:   0 0 28px rgba(216,255,0,0.18);
}

/* ═══════════════════════════════════════════════════════════════
   2. RESET
   ═══════════════════════════════════════════════════════════════ */

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

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

body {
    font-family: var(--fc-font);
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    font-weight: 400;
    line-height: var(--fc-leading-normal);
    color: var(--fc-text-primary);
    background-color: var(--fc-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: var(--fc-nav-h);
}

/* Overflow nur auf dem html-Element – nicht body, sonst bricht position:fixed */
html { overflow-x: hidden; }

/* Dashboard-Unterseiten */
body.parent-pageid-40 { background-color: #232323; }

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

a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2px solid var(--fc-yellow-focus); outline-offset: 3px; border-radius: 2px; }

ul, ol { list-style: none; }

button { font-family: var(--fc-font); cursor: pointer; border: none; background: none; }

input, textarea, select { font-family: var(--fc-font); font-size: var(--fc-size-base); }

hr { border: none; border-top: 1px solid var(--fc-border); margin: var(--fc-space-8) 0; }

/* ═══════════════════════════════════════════════════════════════
   3. LAYOUT UTILITIES
   ═══════════════════════════════════════════════════════════════ */

.fc-container {
    width: 100%;
    max-width: var(--fc-container);
    margin: 0 auto;
    padding-left: var(--fc-container-pad);
    padding-right: var(--fc-container-pad);
}

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

.fc-section--flush-top    { padding-top: 0; }
.fc-section--flush-bottom { padding-bottom: 0; }
.fc-section--dark         { background-color: var(--fc-surface); }
.fc-section--darker       { background-color: var(--fc-surface-2); }
.fc-section--black        { background-color: var(--fc-black); }

.fc-section__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: var(--fc-space-4);
    margin-bottom: clamp(24px,4vw,48px);
}

.fc-section__title {
    font-size: var(--fc-size-2xl);
    font-weight: 800;
    letter-spacing: var(--fc-tracking-tight);
    line-height: var(--fc-leading-tight);
    color: var(--fc-text-primary);
}

.fc-spieltag .fc-section__title { display: none; }

.fc-spieltag .fc-section__head {
    justify-content: center;
    margin-bottom: clamp(16px, 3vw, 32px);
}

.fc-spieltag__prev,
.fc-spieltag__next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--fc-text-primary);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--fc-trans-fast), border-color var(--fc-trans-fast);
    outline: none;
}

.fc-spieltag__prev:hover,
.fc-spieltag__next:hover {
    background: var(--fc-yellow);
    color: var(--fc-black);
    border-color: var(--fc-yellow);
}

.fc-section__subtitle {
    font-size: var(--fc-size-md);
    color: var(--fc-text-secondary);
    margin-top: var(--fc-space-2);
    line-height: var(--fc-leading-normal);
    font-weight: 400;
}

.fc-section__link {
    font-size: var(--fc-size-xs);
    font-weight: 700;
    letter-spacing: var(--fc-tracking-widest);
    text-transform: uppercase;
    color: var(--fc-yellow);
    white-space: nowrap;
    transition: color var(--fc-trans-fast);
}
.fc-section__link:hover { color: var(--fc-yellow-hover); }
.fc-section__link::after { content: ' →'; }

/* Overline Label */
.fc-overline {
    display: block;
    font-size: var(--fc-size-xs);
    font-weight: 700;
    letter-spacing: var(--fc-tracking-widest);
    text-transform: uppercase;
    color: var(--fc-yellow);
    margin-bottom: var(--fc-space-3);
}

/* ═══════════════════════════════════════════════════════════════
   4. TYPOGRAFIE
   ═══════════════════════════════════════════════════════════════ */

h1,h2,h3,h4,h5,h6 {
    font-family: var(--fc-font);
    font-weight: 800;
    line-height: var(--fc-leading-tight);
    letter-spacing: var(--fc-tracking-tight);
    color: var(--fc-text-primary);
}

h1 { font-size: var(--fc-size-4xl); }
h2 { font-size: var(--fc-size-3xl); }
h3 { font-size: var(--fc-size-2xl); }
h4 { font-size: var(--fc-size-xl); }
h5 { font-size: var(--fc-size-lg); }
h6 { font-size: var(--fc-size-md); }

p { line-height: var(--fc-leading-normal); color: var(--fc-text-secondary); }
p + p { margin-top: var(--fc-space-4); }
strong, b { font-weight: 700; color: var(--fc-text-primary); }

/* ═══════════════════════════════════════════════════════════════
   5. BUTTONS
   ═══════════════════════════════════════════════════════════════ */

.fc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--fc-space-2);
    padding: 11px 24px;
    font-family: var(--fc-font);
    font-size: var(--fc-size-sm);
    font-weight: 700;
    letter-spacing: var(--fc-tracking-wider);
    text-transform: uppercase;
    line-height: 1;
    border-radius: var(--fc-radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition:
        background var(--fc-trans-fast),
        color var(--fc-trans-fast),
        border-color var(--fc-trans-fast),
        transform var(--fc-trans-fast),
        box-shadow var(--fc-trans-fast);
    white-space: nowrap;
    text-decoration: none;
}
.fc-btn:active { transform: scale(0.97); }

.fc-btn--primary { background: var(--fc-yellow); color: var(--fc-black); border-color: var(--fc-yellow); }
.fc-btn--primary:hover { background: var(--fc-yellow-hover); border-color: var(--fc-yellow-hover); box-shadow: var(--fc-shadow-yellow); }

.fc-btn--secondary { background: transparent; color: var(--fc-text-primary); border-color: var(--fc-border-mid); }
.fc-btn--secondary:hover { background: var(--fc-surface-3); border-color: rgba(255,255,255,0.25); }

.fc-btn--ghost { background: transparent; color: var(--fc-yellow); border-color: var(--fc-yellow); }
.fc-btn--ghost:hover { background: var(--fc-yellow-ghost); box-shadow: var(--fc-shadow-yellow); }

.fc-btn--dark { background: var(--fc-black); color: var(--fc-text-primary); border-color: var(--fc-black); }
.fc-btn--dark:hover { background: var(--fc-surface-3); }

.fc-btn--sm { padding: 8px 16px; font-size: var(--fc-size-xs); }
.fc-btn--lg { padding: 15px 32px; font-size: var(--fc-size-md); }
.fc-btn--xl { padding: 18px 40px; font-size: var(--fc-size-lg); }

/* ═══════════════════════════════════════════════════════════════
   6. BADGES
   ═══════════════════════════════════════════════════════════════ */

.fc-badge {
    display: inline-block;
    padding: 3px 9px;
    font-size: var(--fc-size-xs);
    font-weight: 700;
    letter-spacing: var(--fc-tracking-wide);
    text-transform: uppercase;
    border-radius: var(--fc-radius-sm);
    line-height: 1.6;
}

.fc-badge--yellow  { background: var(--fc-yellow);    color: var(--fc-black); }
.fc-badge--dark    { background: var(--fc-surface-4); color: var(--fc-text-primary); }
.fc-badge--outline { border: 1px solid var(--fc-border-mid); color: var(--fc-text-secondary); }
.fc-badge--neon    { background: var(--fc-neon);       color: var(--fc-black); }
.fc-badge--red     { background: var(--fc-danger);     color: #fff; }
.fc-badge--green   { background: var(--fc-success);    color: #fff; }

/* ═══════════════════════════════════════════════════════════════
   7. NAVIGATION
   ═══════════════════════════════════════════════════════════════ */

.fc-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--fc-nav-h);
    background: rgba(8,8,8,0.92);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    border-bottom: 1px solid var(--fc-border);
    transition: background var(--fc-trans), border-color var(--fc-trans);
}

.fc-nav--scrolled {
    background: rgba(8,8,8,0.98);
    border-bottom-color: var(--fc-border-yellow);
}

.fc-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--fc-container);
    margin: 0 auto;
    padding: 0 var(--fc-container-pad);
    gap: var(--fc-space-8);
}

.fc-nav__logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: var(--fc-space-3);
    text-decoration: none;
}

.fc-nav__logo img { height: 40px; width: auto; }

.fc-nav__logo-inner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fc-nav__logo-img img,
.fc-nav__logo-img svg.fc-nav__logo-main {
    height: 40px;
    width: auto;
    display: block;
    flex-shrink: 0;
}

/* Logo-SVG inline: fills nutzen currentColor, Farbe kommt vom Container.
   So trifft das Logo exakt den gleichen Wert wie der Text daneben. */
.fc-nav__logo-img svg.fc-nav__logo-main { color: var(--fc-accent); }

.fc-nav__logo-text {
    font-size: clamp(1.25rem, 2.4vw, 1.75rem);
    font-weight: 800;
    letter-spacing: var(--fc-tracking-wide);
    text-transform: uppercase;
    color: var(--fc-accent);
    line-height: 1;
}

/* Desktop-Menü */
.fc-nav__menu {
    display: flex;
    align-items: center;
    list-style: none;
    height: 100%;
    margin: 0; padding: 0;
}

.fc-nav__menu > li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.fc-nav__menu > li > a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 var(--fc-space-5);
    font-size: var(--fc-size-xs);
    font-weight: 700;
    letter-spacing: var(--fc-tracking-widest);
    text-transform: uppercase;
    color: var(--fc-text-secondary);
    text-decoration: none;
    transition: color var(--fc-trans-fast);
    position: relative;
}

.fc-nav__menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: var(--fc-space-5);
    right: var(--fc-space-5);
    height: 2px;
    background: var(--fc-yellow);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--fc-trans);
}

.fc-nav__menu > li > a:hover { color: var(--fc-text-primary); }
.fc-nav__menu > li > a:hover::after,
.fc-nav__menu > li.current-menu-item > a::after,
.fc-nav__menu > li.current-page-ancestor > a::after { transform: scaleX(1); }
.fc-nav__menu > li.current-menu-item > a { color: var(--fc-text-primary); }

/* Dezente Trennpunkte zwischen Menüpunkten */
.fc-nav__menu > li + li::before {
    content: '';
    display: block;
    width: 1px;
    height: 14px;
    background: var(--fc-border-mid);
    pointer-events: none;
}

/* Rechte Seite: Login + CTA */
.fc-nav__actions {
    display: flex;
    align-items: center;
    gap: var(--fc-space-3);
    flex-shrink: 0;
}

.fc-nav__login {
    font-size: var(--fc-size-xs);
    font-weight: 700;
    letter-spacing: var(--fc-tracking-wider);
    text-transform: uppercase;
    color: var(--fc-text-secondary);
    transition: color var(--fc-trans-fast);
    padding: var(--fc-space-2) var(--fc-space-3);
}
.fc-nav__login:hover { color: var(--fc-text-primary); }

/* Hamburger – mobil */
.fc-nav__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.fc-nav__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fc-text-primary);
    border-radius: 2px;
    transition: transform var(--fc-trans), opacity var(--fc-trans);
}

.fc-nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.fc-nav__burger.is-open span:nth-child(2) { opacity: 0; }
.fc-nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Overlay */
.fc-nav__mobile {
    display: none;
    position: fixed;
    top: var(--fc-nav-h);
    left: 0; right: 0; bottom: 0;
    background: rgba(8,8,8,0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    padding: var(--fc-space-8) var(--fc-container-pad);
    gap: var(--fc-space-2);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform var(--fc-trans-slow);
}

.fc-nav__mobile.is-open {
    display: flex;
    transform: translateX(0);
}

.fc-nav__mobile a {
    display: block;
    padding: var(--fc-space-4) 0;
    font-size: var(--fc-size-xl);
    font-weight: 800;
    letter-spacing: var(--fc-tracking-tight);
    color: var(--fc-text-secondary);
    border-bottom: 1px solid var(--fc-border);
    transition: color var(--fc-trans-fast);
}
.fc-nav__mobile a:hover { color: var(--fc-yellow); }
.fc-nav__mobile .fc-btn { margin-top: var(--fc-space-6); }

/* ═══════════════════════════════════════════════════════════════
   8. HERO SECTION
   ═══════════════════════════════════════════════════════════════ */

.fc-hero {
    position: relative;
    width: 100%;
    min-height: clamp(460px, 85vh, 900px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.fc-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

/* Gradient-Overlay: stark unten, leicht oben */
.fc-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    /* Kein Gradient – nur leichtes Bottom-Overlay für Lesbarkeit des Textes */
    background: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 50%,
        rgba(8,8,8,0.55) 100%
    );
}

.fc-hero__content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--fc-container);
    margin: 0 auto;
    padding: var(--fc-space-16) var(--fc-container-pad);
}

.fc-hero__eyebrow {
    display: inline-block;
    font-size: var(--fc-size-xs);
    font-weight: 700;
    letter-spacing: var(--fc-tracking-widest);
    text-transform: uppercase;
    color: var(--fc-yellow);
    margin-bottom: var(--fc-space-4);
    border-left: 3px solid var(--fc-yellow);
    padding-left: var(--fc-space-3);
}

.fc-hero__title {
    font-size: var(--fc-size-hero);
    font-weight: 800;
    letter-spacing: var(--fc-tracking-tight);
    line-height: 1.0;
    color: var(--fc-text-primary);
    max-width: 820px;
    margin-bottom: var(--fc-space-5);
}

.fc-hero__subtitle {
    font-size: var(--fc-size-lg);
    font-weight: 400;
    color: rgba(255,255,255,0.75);
    max-width: 560px;
    line-height: var(--fc-leading-snug);
    margin-bottom: var(--fc-space-8);
}

.fc-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--fc-space-3);
}

/* Hero Varianten */
.fc-hero--center .fc-hero__content { text-align: center; }
.fc-hero--center .fc-hero__title,
.fc-hero--center .fc-hero__subtitle { max-width: 100%; }
.fc-hero--center .fc-hero__actions { justify-content: center; }
.fc-hero--center .fc-hero__eyebrow { border-left: none; border-bottom: 2px solid var(--fc-yellow); padding-left: 0; padding-bottom: 2px; }

/* ═══════════════════════════════════════════════════════════════
   9. KACHELN (TILES)
   ═══════════════════════════════════════════════════════════════ */

.fc-tiles {
    display: grid;
    gap: clamp(8px, 1.5vw, 16px);
}

.fc-tiles--2 { grid-template-columns: repeat(2, 1fr); }
.fc-tiles--3 { grid-template-columns: repeat(3, 1fr); }
.fc-tiles--4 { grid-template-columns: repeat(4, 1fr); }

/* Tiles auf Tablet: 2 Spalten */
@media (max-width: 900px) {
    .fc-tiles--3,
    .fc-tiles--4 { grid-template-columns: repeat(2, 1fr); }
}

/* Tiles auf Mobil: 1 Spalte */
@media (max-width: 540px) {
    .fc-tiles--2,
    .fc-tiles--3,
    .fc-tiles--4 { grid-template-columns: 1fr; }
}

.fc-tile {
    position: relative;
    overflow: hidden;
    border-radius: var(--fc-radius);
    background: var(--fc-surface-2);
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: flex-end;
    cursor: pointer;
}

.fc-tile--wide { aspect-ratio: 16 / 9; }
.fc-tile--square { aspect-ratio: 1; }
.fc-tile--tall { aspect-ratio: 3 / 4; }

.fc-tile__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.fc-tile__bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform var(--fc-trans-slow);
}

.fc-tile:hover .fc-tile__bg img { transform: scale(1.04); }

.fc-tile__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
    transition: opacity var(--fc-trans);
}

.fc-tile--color-yellow { background: var(--fc-yellow); }
.fc-tile--color-black  { background: var(--fc-black); }
.fc-tile--color-dark   { background: var(--fc-surface-3); }

.fc-tile__content {
    position: relative;
    z-index: 1;
    padding: clamp(16px, 3vw, 28px);
    width: 100%;
}

.fc-tile__label {
    font-size: var(--fc-size-xs);
    font-weight: 700;
    letter-spacing: var(--fc-tracking-widest);
    text-transform: uppercase;
    color: var(--fc-yellow);
    margin-bottom: var(--fc-space-2);
}

.fc-tile--color-yellow .fc-tile__label { color: var(--fc-black); opacity: 0.6; }

.fc-tile__title {
    font-size: var(--fc-size-xl);
    font-weight: 800;
    letter-spacing: var(--fc-tracking-tight);
    line-height: var(--fc-leading-tight);
    color: var(--fc-text-primary);
    margin-bottom: var(--fc-space-3);
}

.fc-tile--color-yellow .fc-tile__title { color: var(--fc-black); }

.fc-tile__text {
    font-size: var(--fc-size-sm);
    color: rgba(255,255,255,0.75);
    line-height: var(--fc-leading-snug);
    margin-bottom: var(--fc-space-4);
}

.fc-tile--color-yellow .fc-tile__text { color: rgba(0,0,0,0.65); }

/* ── Tiles-Sektion: Padding = Tile-Gap (kein separater Section-Abstand) ──── */
.fc-section--tiles {
    padding-top: clamp(8px, 1.5vw, 16px);
    padding-bottom: clamp(8px, 1.5vw, 16px);
}

.fc-section--tiles > .fc-container {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
}

/* Section-Titel bei Tiles: seitliches Padding wiederherstellen */
.fc-section__head--tiles {
    padding: 0 var(--fc-container-pad) clamp(8px, 1.5vw, 16px);
}

/* ── Text-Kachel: plakativer Werbungsstil ────────────────────────────────── */
.fc-tile--text {
    align-items: stretch; /* überschreibt fc-tile { align-items: flex-end } */
    cursor: default;
}

/* Kein Gradient-Overlay bei Text-Kacheln */
.fc-tile--text .fc-tile__bg::after { display: none; }

.fc-tile--text .fc-tile__content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;   /* vertikal immer mittig */
    padding: clamp(24px, 4vw, 48px);
}

/* Headline in Text-Kachel: riesig und plakatif */
.fc-tile--text .fc-tile__title {
    font-size: clamp(2.5rem, 9vw, 7.5rem);
    line-height: 0.88;
    letter-spacing: -0.04em;
    margin-bottom: var(--fc-space-4);
    color: var(--fc-yellow);
}

.fc-tile--text .fc-tile__label {
    color: var(--fc-yellow);
    opacity: 0.55;
    margin-bottom: var(--fc-space-4);
}

.fc-tile--text .fc-tile__subline {
    font-size: var(--fc-size-xl);
    font-weight: 400;
    color: inherit;
    opacity: 0.72;
    line-height: var(--fc-leading-snug);
    margin-bottom: var(--fc-space-5);
}

.fc-tile--text .fc-tile__text {
    font-size: var(--fc-size-base);
    color: inherit;
    opacity: 0.65;
    margin-bottom: var(--fc-space-5);
}

/* ── Subline für Bild-Kacheln ─────────────────────────────────────────────── */
.fc-tile__subline {
    font-size: var(--fc-size-sm);
    font-weight: 400;
    color: rgba(255,255,255,0.65);
    line-height: var(--fc-leading-snug);
    margin-bottom: var(--fc-space-3);
}

/* ── Textausrichtung (gilt für Bild- und Text-Kacheln) ───────────────────── */
.fc-tile--align-left   .fc-tile__content { text-align: left;   align-items: flex-start; }
.fc-tile--align-center .fc-tile__content { text-align: center; align-items: center; }
.fc-tile--align-right  .fc-tile__content { text-align: right;  align-items: flex-end; }

/* ═══════════════════════════════════════════════════════════════
   10. BLOG / NEWS CARDS
   ═══════════════════════════════════════════════════════════════ */

/* Scroll-Container */
.fc-blog-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: var(--fc-space-4);
    /* Scrollbar verstecken aber nutzbar */
    scrollbar-width: thin;
    scrollbar-color: var(--fc-surface-4) transparent;
}

.fc-blog-scroll::-webkit-scrollbar { height: 4px; }
.fc-blog-scroll::-webkit-scrollbar-track { background: transparent; }
.fc-blog-scroll::-webkit-scrollbar-thumb { background: var(--fc-surface-4); border-radius: 4px; }

.fc-blog-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: clamp(260px, 30vw, 360px);
    gap: clamp(8px, 1.5vw, 16px);
}

/* Ab 1024px: normales Grid */
@media (min-width: 1024px) {
    .fc-blog-scroll { overflow: visible; }
    .fc-blog-grid {
        grid-auto-flow: row;
        grid-template-columns: repeat(3, 1fr);
        grid-auto-columns: unset;
    }
}

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

.fc-blog-card {
    scroll-snap-align: start;
    background: var(--fc-surface);
    border-radius: var(--fc-radius);
    border: 1px solid var(--fc-border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color var(--fc-trans-fast), transform var(--fc-trans);
}

.fc-blog-card:hover {
    border-color: var(--fc-border-yellow);
    transform: translateY(-3px);
}

.fc-blog-card__thumb {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--fc-surface-3);
}

.fc-blog-card__thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform var(--fc-trans-slow);
}

.fc-blog-card:hover .fc-blog-card__thumb img { transform: scale(1.04); }

.fc-blog-card__badges {
    position: absolute;
    top: var(--fc-space-3);
    left: var(--fc-space-3);
    display: flex;
    gap: var(--fc-space-2);
}

.fc-blog-card__body {
    padding: var(--fc-space-5);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.fc-blog-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--fc-space-3);
}

.fc-blog-card__cat {
    font-size: var(--fc-size-xs);
    font-weight: 700;
    letter-spacing: var(--fc-tracking-wider);
    text-transform: uppercase;
    color: var(--fc-yellow);
}

.fc-blog-card__date {
    font-size: var(--fc-size-xs);
    color: var(--fc-text-muted);
}

.fc-blog-card__title {
    font-size: var(--fc-size-md);
    font-weight: 700;
    letter-spacing: var(--fc-tracking-tight);
    line-height: var(--fc-leading-snug);
    color: var(--fc-text-primary);
    margin-bottom: var(--fc-space-3);
    flex: 1;
    /* Zweizeilig abschneiden */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fc-blog-card__title a { color: inherit; }
.fc-blog-card__title a:hover { color: var(--fc-yellow); }

/* ═══════════════════════════════════════════════════════════════
   11. SPIELTAG SLIDER
   ═══════════════════════════════════════════════════════════════ */

.fc-spieltag {
    overflow: hidden;
}

/* ── 3D Karussell ────────────────────────────────────────── */
.fc-spieltag__carousel-wrap {
    perspective: 1100px;
    height: clamp(420px, 55vh, 600px);
    position: relative;
    overflow: visible;
    transform: translateZ(0);
}

.fc-spieltag__carousel {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.fc-game-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(210px, 18vw, 272px);
    aspect-ratio: 3 / 4;
    background: var(--fc-yellow);
    border-radius: var(--fc-radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform-origin: center center;
    transition: box-shadow var(--fc-trans), filter var(--fc-trans);
}

.fc-game-card.is-active {
    box-shadow: 0 24px 60px rgba(0,0,0,0.8), var(--fc-shadow-yellow);
    filter: brightness(1);
    z-index: 2;
}

.fc-game-card.is-adjacent {
    filter: brightness(0.65);
}

/* Mittlere Karte hervorgehoben – siehe fc-game-card oben */

.fc-game-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--fc-black);
    padding: var(--fc-space-3) var(--fc-space-5);
}

.fc-game-card__sport,
.fc-game-card__comp {
    font-size: var(--fc-size-xs);
    font-weight: 700;
    letter-spacing: var(--fc-tracking-wider);
    text-transform: uppercase;
    color: var(--fc-text-primary);
}

.fc-game-card__body {
    padding: var(--fc-space-5) var(--fc-space-6);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--fc-space-4);
}

.fc-game-card__info {
    text-align: center;
    font-size: var(--fc-size-sm);
    font-weight: 700;
    color: var(--fc-black);
    letter-spacing: var(--fc-tracking-tight);
    line-height: var(--fc-leading-snug);
}

.fc-game-card__matchup {
    display: flex;
    align-items: center;
    gap: var(--fc-space-5);
    width: 100%;
    justify-content: center;
}

.fc-game-card__team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--fc-space-2);
    flex: 1;
}

.fc-game-card__logo {
    width: clamp(40px, 6vw, 56px);
    height: clamp(40px, 6vw, 56px);
    object-fit: contain;
}

.fc-game-card__logo--placeholder {
    background: rgba(0,0,0,0.12);
    border-radius: var(--fc-radius-sm);
}

.fc-game-card__team-name {
    font-size: var(--fc-size-xs);
    font-weight: 700;
    text-align: center;
    color: var(--fc-black);
    letter-spacing: var(--fc-tracking-tight);
    line-height: var(--fc-leading-tight);
}

.fc-game-card__vs {
    font-size: var(--fc-size-xl);
    font-weight: 800;
    color: var(--fc-black);
    letter-spacing: var(--fc-tracking-tight);
    flex-shrink: 0;
}

/* Score statt VS für gespielte Spiele */
.fc-game-card__score {
    font-size: var(--fc-size-2xl);
    font-weight: 800;
    color: var(--fc-black);
    letter-spacing: var(--fc-tracking-tight);
}

.fc-game-card__footer {
    padding: 0 var(--fc-space-6) var(--fc-space-5);
    display: flex;
    flex-direction: column;
    gap: var(--fc-space-2);
    align-items: center;
}

/* Ticket-Badge */
.fc-game-card__ticket-badge {
    font-size: var(--fc-size-xs);
    font-weight: 700;
    letter-spacing: var(--fc-tracking-wide);
    text-transform: uppercase;
    color: var(--fc-black);
    background: var(--fc-neon);
    border-radius: var(--fc-radius-sm);
    padding: 3px 10px;
}

/* ═══════════════════════════════════════════════════════════════
   12. FOOTER
   ═══════════════════════════════════════════════════════════════ */

/* Self-contained: feste Werte, damit Footer in Standard-Theme UND Onepage
   identisch rendert (Onepage definiert --fc-size-xs / --fc-surface-2 neu). */
.fc-footer {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 600px;
    background: #232323;
    color: #FFFFFF;
    display: flex;
    align-items: stretch;
    font-family: 'Barlow Condensed', sans-serif;
}

.fc-footer__inner {
    width: 100%;
    max-width: 1040px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 48px;
    padding: clamp(48px, 6vw, 80px) clamp(24px, 5vw, 64px);
}

.fc-footer__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    justify-items: start;
}

@media (max-width: 900px) {
    .fc-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 540px) {
    .fc-footer__grid { grid-template-columns: 1fr; gap: 24px; }
}

.fc-footer__brand {
    font-size: 22px;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #FFFFFF;
    margin: 0 0 16px;
    line-height: 1;
}

.fc-footer__address {
    font-style: normal;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

.fc-footer__address a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 150ms ease;
}

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

.fc-footer__col-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--fc-accent);
    margin: 0 0 16px;
    line-height: 1;
}

.fc-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fc-footer__links a {
    font-size: 14px;
    color: #FFFFFF;
    text-decoration: none;
    transition: color 150ms ease;
}

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

.fc-footer__social {
    display: flex;
    gap: 12px;
}

.fc-footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: color 150ms ease, border-color 150ms ease;
}

.fc-footer__social a:hover {
    color: var(--fc-accent);
    border-color: var(--fc-accent);
}

.fc-footer__bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.fc-footer__copy {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   13. ADMIN BAR OFFSET
   ═══════════════════════════════════════════════════════════════ */

.admin-bar .fc-nav {
    top: 32px;
}

@media (max-width: 782px) {
    .admin-bar .fc-nav { top: 46px; }
}

/* ═══════════════════════════════════════════════════════════════
   14. RESPONSIVE – Navigation
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    .fc-nav__menu,
    .fc-nav__login { display: none; }
    .fc-nav__burger { display: flex; }
}

/* ═══════════════════════════════════════════════════════════════
   15. UTILITY CLASSES
   ═══════════════════════════════════════════════════════════════ */

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

.fc-text-yellow    { color: var(--fc-yellow); }
.fc-text-muted     { color: var(--fc-text-muted); }
.fc-text-secondary { color: var(--fc-text-secondary); }
.fc-text-center    { text-align: center; }
.fc-text-upper     { text-transform: uppercase; letter-spacing: var(--fc-tracking-wider); }

.fc-mt-section { margin-top: var(--fc-section-py); }
.fc-mb-section { margin-bottom: var(--fc-section-py); }

/* ── Semantische Label/Value Klassen – gelten seitenübergreifend ── */
.fc-label {
    font-size: var(--fc-size-sm);
    font-weight: 700;
    letter-spacing: var(--fc-tracking-wider);
    text-transform: uppercase;
    color: var(--fc-text-primary);
    line-height: 1.4;
}

.fc-label--muted {
    font-size: var(--fc-size-sm);
    font-weight: 600;
    letter-spacing: var(--fc-tracking-wider);
    text-transform: uppercase;
    color: var(--fc-text-secondary);
    line-height: 1.4;
}

.fc-value {
    font-size: var(--fc-size-md);
    font-weight: 700;
    color: var(--fc-yellow);
    line-height: 1.2;
}

/* ═══════════════════════════════════════════════════════════════
   16. HERO SLIDER
   ═══════════════════════════════════════════════════════════════ */

.fc-hero-slider {
    position: relative;
    overflow: hidden;
    max-width: 2560px;
    margin-left: auto;
    margin-right: auto;
    outline: none;
    border: none;
}

.fc-hero-slider__track {
    display: flex;
    width: 100%;
    height: 100%;
    min-height: inherit;
}

.fc-hero-slider__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 800ms ease;
    pointer-events: none;
    min-height: inherit;
}

.fc-hero-slider__slide.is-active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
    min-height: inherit;
}

/* Arrows – ausgeblendet */
.fc-hero-slider__arrow { display: none; }

/* Striche unten */
.fc-hero-slider__dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 6px;
    align-items: center;
}

.fc-hero-slider__dot {
    width: 32px;
    height: 3px;
    border-radius: 2px;
    background: rgba(255,255,255,0.35);
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    transition: background var(--fc-trans), width var(--fc-trans);
}

.fc-hero-slider__dot:focus { outline: none; }

.fc-hero-slider__dot.is-active {
    background: var(--fc-yellow);
    width: 48px;
}

.fc-hero-slider__progress { display: none; }

/* ═══════════════════════════════════════════════════════════════
   17. COLOR MODE TOGGLE
   ═══════════════════════════════════════════════════════════════ */

.fc-color-toggle {
    display: flex;
    align-items: center;
    gap: var(--fc-space-2);
    padding: 5px 10px;
    background: transparent;
    border: 1px solid var(--fc-border-mid);
    border-radius: var(--fc-radius-full);
    cursor: pointer;
    transition:
        border-color var(--fc-trans-fast),
        background var(--fc-trans-fast);
    flex-shrink: 0;
}

.fc-color-toggle:hover {
    border-color: var(--fc-yellow);
    background: var(--fc-yellow-ghost);
}

/* Palette-Icon (linear, monochrom) – zeigt Akzentfarbe an */
.fc-color-toggle__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--fc-accent);
    transition: color var(--fc-trans-fast);
    display: block;
}

.fc-color-toggle__label {
    font-size: var(--fc-size-xs);
    font-weight: 700;
    letter-spacing: var(--fc-tracking-widest);
    text-transform: uppercase;
    color: var(--fc-text-secondary);
    transition: color var(--fc-trans-fast);
    line-height: 1;
}

.fc-color-toggle:hover .fc-color-toggle__label {
    color: var(--fc-text-primary);
}

/* Mobil: nur Dot, kein Label */
@media (max-width: 768px) {
    .fc-color-toggle__label { display: none; }
    .fc-color-toggle { padding: 6px; }
}

/* ═══════════════════════════════════════════════════════════════
   14. NAV MOBILE LAYOUT (≤768 px)
   ═══════════════════════════════════════════════════════════════ */

/* Fanclub-Name: Desktop einzeilig, Mobile zweizeilig. */
.fc-nav__logo-text {
    display: flex;
    flex-direction: row;
    gap: 0.35em;
    flex-wrap: wrap;
    line-height: 1;
}

@media (max-width: 768px) {

    /* Header-Struktur: Logo links · Burger mittig · Page-Title rechts. */
    .fc-nav__inner {
        position: relative;
        justify-content: flex-start;
        gap: var(--fc-space-3);
    }

    /* Logo: kompakter + Name zweizeilig. */
    .fc-nav__logo-img img,
    .fc-nav__logo-img svg.fc-nav__logo-main { height: 32px; }

    .fc-nav__logo-text {
        flex-direction: column;
        gap: 2px;
        font-size: 0.95rem;
        max-width: 40vw;
    }
    .fc-nav__logo-text-1,
    .fc-nav__logo-text-2 {
        display: block;
        line-height: 1;
    }

    /* Desktop-Menü weg. */
    .fc-nav__menu { display: none; }

    /* Actions-Wrapper auflösen → Kinder werden direkte Flex-Kinder von .fc-nav__inner,
       damit der Burger relativ zum Header (nicht zum Actions-Container) positioniert. */
    .fc-nav__actions { display: contents; }

    /* Alles außer Page-Title + Burger aus dem Header verbannen (landet im Overlay). */
    .fc-nav__login,
    .fc-nav__actions .fc-btn,
    .fc-color-toggle,
    .fc-light-toggle { display: none; }

    /* Page-Title: rechts, umbricht bei zu langem Text. */
    .fc-nav__dash-title {
        margin-left: auto;
        max-width: 35vw;
        text-align: right;
        white-space: normal;
        line-height: 1.1;
        font-size: 0.72rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--fc-text-secondary);
    }

    /* Burger: mittig horizontal + vertikal relativ zum Header. */
    .fc-nav__burger {
        display: flex;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin: 0;
    }
    .fc-nav__burger.is-open span:nth-child(1) { transform: translate(0, 7px) rotate(45deg); }
    .fc-nav__burger.is-open span:nth-child(3) { transform: translate(0, -7px) rotate(-45deg); }

    /* Dashboard-Seiten: weißer Burger weg → der gelbe Dashboard-Toggle übernimmt. */
    body.fc-dashboard-bg .fc-nav__burger { display: none; }
}

/* ─── Mobile-Overlay: Close-Btn + Top-Bar (Mein Bereich + Icons) ─────────── */

.fc-nav__mobile-close {
    position: absolute;
    top: var(--fc-space-4);
    right: var(--fc-container-pad);
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--fc-text-primary);
    cursor: pointer;
    padding: 0;
    transition: color var(--fc-trans-fast);
}
.fc-nav__mobile-close:hover { color: var(--fc-accent); }

.fc-nav__mobile-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--fc-space-4);
    padding: var(--fc-space-6) 0;
    margin-bottom: var(--fc-space-4);
    border-bottom: 1px solid var(--fc-border);
}

.fc-nav__mobile-primary {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--fc-accent);
    text-decoration: none;
    transition: color var(--fc-trans-fast);
}
.fc-nav__mobile-primary:hover { color: var(--fc-text-primary); }

.fc-nav__mobile-icons {
    display: flex;
    gap: var(--fc-space-2);
    flex-shrink: 0;
}

.fc-nav__mobile-icon,
.fc-nav__mobile a.fc-nav__mobile-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    background: transparent;
    border: 1px solid var(--fc-border);
    border-bottom: 1px solid var(--fc-border);
    color: var(--fc-text-primary);
    cursor: pointer;
    text-decoration: none;
    font-size: 0;
    line-height: 1;
    transition: color var(--fc-trans-fast), border-color var(--fc-trans-fast);
}
.fc-nav__mobile-icon:hover,
.fc-nav__mobile a.fc-nav__mobile-icon:hover {
    color: var(--fc-accent);
    border-color: var(--fc-accent);
}

/* ═══════════════════════════════════════════════════════════════
   15. ONBOARDING-HINTS (Empty-States mit Erklärung + CTA)
   ═══════════════════════════════════════════════════════════════ */

.fc-onboarding-hint {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: clamp(20px, 3vw, 32px);
    background: var(--fc-surface-2);
    border: 1px solid var(--fc-border);
    border-left: 3px solid var(--fc-accent);
    color: var(--fc-text);
    margin: 8px 0;
}

.fc-onboarding-hint__icon {
    font-size: 2rem;
    line-height: 1;
}

.fc-onboarding-hint__title {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    color: var(--fc-text);
    margin: 0;
    line-height: 1.2;
}

.fc-onboarding-hint__text {
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--fc-text-muted);
    margin: 0;
    max-width: 62ch;
}

.fc-onboarding-hint__text strong {
    color: var(--fc-text);
    font-weight: 700;
}

.fc-onboarding-hint__cta {
    margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════════════
   16. KONTEXT-HILFE (?-Icon + Slide-In-Drawer)
   ═══════════════════════════════════════════════════════════════ */

.fc-help-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-left: 8px;
    padding: 0;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 14px;
    line-height: 1;
    color: var(--fc-accent);
    background: transparent;
    border: 1.5px solid var(--fc-accent);
    border-radius: 50%;
    cursor: pointer;
    vertical-align: middle;
    transition: background 150ms ease, color 150ms ease;
}
.fc-help-icon:hover,
.fc-help-icon:focus {
    background: var(--fc-accent);
    color: #000;
    outline: none;
}

/* Overlay + zentriertes Modal (Dashboard-Look, analog zur Feature-Tour) */
.fc-help-overlay {
    position: fixed;
    inset: 0;
    z-index: 10015;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms ease;
}
.fc-help-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.fc-help-drawer {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 10016;
    width: calc(100% - 40px);
    max-width: 560px;
    max-height: 85vh;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid var(--fc-accent);
    color: #FFFFFF;
    padding: clamp(28px, 5vw, 44px) clamp(22px, 4vw, 36px) clamp(22px, 4vw, 32px);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transform: translate(-50%, -50%) scale(0.96);
    opacity: 0;
    pointer-events: none;
    transition: transform 240ms cubic-bezier(0.4, 0, 0.2, 1), opacity 240ms ease;
}
.fc-help-drawer.is-open {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    pointer-events: auto;
}

.fc-help-drawer__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 0;
    transition: color 150ms ease;
    align-self: auto;
}
.fc-help-drawer__close:hover { color: var(--fc-accent); }

.fc-help-drawer__title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.4rem, 3.5vw, 1.85rem);
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--fc-accent);
    margin: 4px 44px 4px 0;
    line-height: 1.15;
}

.fc-help-drawer__body {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.02rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}
.fc-help-drawer__body strong { color: #FFFFFF; font-weight: 700; }
.fc-help-drawer__body p { margin: 0 0 14px; }
.fc-help-drawer__body p:last-child { margin-bottom: 0; }

@media (max-width: 540px) {
    .fc-help-drawer { padding: 36px 20px 22px; max-height: 88vh; }
    .fc-help-drawer__title { margin-right: 40px; }
}