/* ==========================================================================
   Eintracht Pirmasens e.V. – Design System v2
   Schwarz · Grau · Weiß · Flutlicht · Schräge Kanten
   ========================================================================== */

:root {
  --bg: #070708;
  --bg-2: #0d0d10;
  --surface: #141417;
  --surface-2: #1b1b20;
  --surface-3: #232329;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f5f5f6;
  --muted: #a6a6ae;
  --muted-2: #6f6f78;
  --white: #ffffff;
  --silver: linear-gradient(135deg, #ffffff 0%, #d2d2d7 40%, #8a8a93 100%);
  --glass: rgba(255, 255, 255, 0.04);
  --glass-strong: rgba(255, 255, 255, 0.08);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  --radius-s: 10px;
  --radius: 18px;
  --radius-l: 26px;
  --font-display: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  --font-body: "Manrope", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --container: 1280px;
  --gutter: clamp(18px, 4vw, 40px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --topbar-h: 38px;
  --header-h: 78px;
  --skew: -12deg;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.055;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-weight: 800; line-height: 1.02; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
::selection { background: #fff; color: #000; }
:focus-visible { outline: 2px solid #fff; outline-offset: 3px; border-radius: 6px; }

.container {
  width: min(100% - 2 * var(--gutter), var(--container));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

/* Typo-Bausteine ------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 16px;
  background: #fff;
  transform: skewX(var(--skew));
}
.section { position: relative; padding: clamp(72px, 9vw, 120px) 0; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(28px, 4.5vw, 52px);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6.6vw, 82px);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.005em;
  margin-top: 12px;
  text-wrap: balance;
}
.section-title .thin { font-weight: 500; color: var(--muted); font-style: normal; }
.section-title .outline { color: transparent; -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.85); }
.section-sub { max-width: 600px; color: var(--muted); font-size: 16px; margin-top: 14px; }

.section-gray {
  background:
    radial-gradient(900px 500px at 10% 0%, rgba(255, 255, 255, 0.05), transparent 60%),
    linear-gradient(180deg, #0f0f12 0%, #141418 50%, #0b0b0d 100%);
}
.section-white {
  background:
    radial-gradient(800px 500px at 90% 0%, rgba(0, 0, 0, 0.07), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #eaeaee 100%);
  color: #0a0a0b;
}
.section-white .eyebrow { color: #55555e; }
.section-white .eyebrow::before { background: #0a0a0b; }
.section-white .section-sub { color: #55555e; }
.section-white .section-title .thin { color: #6f6f78; }
.section-white .section-title .outline { -webkit-text-stroke-color: rgba(0, 0, 0, 0.8); }
.section-white ::selection { background: #000; color: #fff; }
.section-white .btn-ghost { border-color: rgba(0, 0, 0, 0.18); color: #0a0a0b; }
.section-white .btn-ghost:hover { background: #0a0a0b; color: #fff; border-color: #0a0a0b; }
.section-white .btn-primary { background: #0a0a0b; color: #fff; box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18); }
.section-white .btn-primary:hover { background: #26262c; }

/* schräge Kanten */
.cut-bottom { clip-path: polygon(0 0, 100% 0, 100% calc(100% - 4vw), 0 100%); padding-bottom: calc(clamp(72px, 9vw, 120px) + 4vw); }
.cut-top { clip-path: polygon(0 4vw, 100% 0, 100% 100%, 0 100%); padding-top: calc(clamp(72px, 9vw, 120px) + 4vw); margin-top: -4vw; }

/* Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 26px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.35s;
  white-space: nowrap;
  position: relative;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary { background: #fff; color: #000; box-shadow: 0 10px 30px rgba(255, 255, 255, 0.12); }
.btn-primary:hover { background: #e9e9ec; box-shadow: 0 16px 40px rgba(255, 255, 255, 0.2); }
.btn-ghost { background: transparent; color: #fff; border-color: var(--line-strong); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: #fff; color: #000; border-color: #fff; }
.btn-sm { height: 42px; padding: 0 18px; font-size: 13px; }
.btn-icon {
  width: 46px; height: 46px; padding: 0; border-radius: 50%;
  border: 1px solid var(--line-strong); background: var(--glass);
  display: inline-grid; place-items: center;
  transition: background 0.25s, color 0.25s, transform 0.3s var(--ease), border-color 0.25s;
}
.btn-icon svg { width: 18px; height: 18px; }
.btn-icon:hover { background: #fff; color: #000; border-color: #fff; }
.btn-icon:disabled { opacity: 0.3; cursor: default; }
.btn-icon:disabled:hover { background: var(--glass); color: inherit; border-color: var(--line-strong); }
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 800; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); transition: color 0.25s, gap 0.3s var(--ease);
}
.link-arrow svg { width: 16px; height: 16px; }
.link-arrow:hover { color: #fff; gap: 12px; }
.section-white .link-arrow { color: #55555e; }
.section-white .link-arrow:hover { color: #000; }

/* Topbar + Header ------------------------------------------------------ */
.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 51;
  height: var(--topbar-h);
  background: #fff;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  transition: transform 0.4s var(--ease);
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.topbar-next { display: flex; align-items: center; gap: 10px; text-transform: uppercase; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.topbar-next .dot { width: 8px; height: 8px; border-radius: 50%; background: #000; animation: pulse 1.6s infinite; flex: none; }
.topbar-next b { font-weight: 800; }
.topbar-right { display: flex; align-items: center; gap: 4px; flex: none; }
.topbar-right a { display: inline-flex; align-items: center; gap: 6px; padding: 6px 10px; border-radius: 4px; text-transform: uppercase; }
.topbar-right a:hover { background: #000; color: #fff; }
.topbar-right svg { width: 15px; height: 15px; }
.scrolled-far .topbar { transform: translateY(-100%); }

.header {
  position: fixed;
  top: var(--topbar-h);
  left: 0; right: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.4s, border-color 0.4s, top 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.scrolled-far .header { top: 0; }
.header.scrolled {
  background: rgba(7, 7, 8, 0.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-color: var(--line);
}
.header .container { display: flex; align-items: center; gap: 24px; }
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-weight: 800; font-size: 24px; font-style: italic;
  letter-spacing: 0.03em; text-transform: uppercase; line-height: 1;
}
.brand img { width: 46px; height: 46px; filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6)); }
.brand span small { display: block; font-family: var(--font-body); font-style: normal; font-size: 10px; letter-spacing: 0.3em; color: var(--muted); font-weight: 700; margin-top: 4px; }
.nav { margin-left: auto; display: flex; align-items: center; gap: 2px; }
.nav a {
  padding: 10px 13px; border-radius: 6px;
  font-family: var(--font-display); font-size: 17px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted); transition: color 0.25s, background 0.25s;
}
.nav a:hover, .nav a.active { color: #fff; background: var(--glass-strong); }
.header .btn { margin-left: 8px; }
.burger {
  display: none; margin-left: auto; width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--line-strong); background: var(--glass); place-items: center;
}
.burger span, .burger span::before, .burger span::after {
  display: block; width: 20px; height: 2px; background: #fff; border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s; content: ""; position: relative;
}
.burger span::before { position: absolute; top: -6px; }
.burger span::after { position: absolute; top: 6px; }
.menu-open .burger span { background: transparent; }
.menu-open .burger span::before { transform: translateY(6px) rotate(45deg); }
.menu-open .burger span::after { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu {
  position: fixed; inset: 0; z-index: 40;
  background: rgba(7, 7, 8, 0.97); backdrop-filter: blur(20px);
  display: flex; flex-direction: column; justify-content: flex-start;
  padding: calc(var(--topbar-h) + var(--header-h) + 12px) var(--gutter) 24px; gap: 4px;
  opacity: 0; pointer-events: none; transition: opacity 0.35s; overflow-y: auto;
}
.menu-open .mobile-menu { opacity: 1; pointer-events: auto; }
body.menu-open { overflow: hidden; }
.mobile-menu a {
  flex: none;
  font-family: var(--font-display); font-style: italic; font-size: clamp(38px, 9vw, 64px); font-weight: 800; text-transform: uppercase;
  line-height: 1.05; padding: 6px 0; border-bottom: 1px solid var(--line);
  transform: translateY(20px); opacity: 0; transition: transform 0.5s var(--ease), opacity 0.4s;
}
.menu-open .mobile-menu a { transform: none; opacity: 1; }
.mobile-menu a:nth-child(2) { transition-delay: 0.05s; }
.mobile-menu a:nth-child(3) { transition-delay: 0.1s; }
.mobile-menu a:nth-child(4) { transition-delay: 0.15s; }
.mobile-menu a:nth-child(5) { transition-delay: 0.2s; }
.mobile-menu a:nth-child(6) { transition-delay: 0.25s; }
.mobile-menu a:nth-child(7) { transition-delay: 0.3s; }
.mobile-menu a:nth-child(8) { transition-delay: 0.35s; }
.mobile-menu .btn { margin-top: 24px; align-self: flex-start; font-family: var(--font-body); font-style: normal; font-size: 14px; border-bottom: 0; }

/* Hero: Flutlicht ------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: center;
  padding: calc(var(--topbar-h) + var(--header-h) + 40px) 0 96px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -3;
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(255, 255, 255, 0.14), transparent 60%),
    radial-gradient(900px 1100px at 8% 10%, rgba(255, 255, 255, 0.07), transparent 60%),
    radial-gradient(800px 1000px at 94% 6%, rgba(255, 255, 255, 0.06), transparent 60%),
    linear-gradient(180deg, #131316 0%, #09090b 55%, var(--bg) 100%);
}
.hero-light { display: none; }
.hero-stripes {
  position: absolute; inset: 0; z-index: -2; opacity: 0.35;
  background: repeating-linear-gradient(115deg, transparent 0 140px, rgba(255, 255, 255, 0.025) 140px 142px);
}
.hero-pitch {
  position: absolute; inset: 0; z-index: -2; opacity: 0.09;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 1000' preserveAspectRatio='xMidYMid slice'><g fill='none' stroke='%23ffffff' stroke-width='2'><rect x='80' y='80' width='1440' height='840'/><line x1='800' y1='80' x2='800' y2='920'/><circle cx='800' cy='500' r='140'/><rect x='80' y='230' width='260' height='540'/><rect x='1260' y='230' width='260' height='540'/><rect x='80' y='380' width='90' height='240'/><rect x='1430' y='380' width='90' height='240'/></g></svg>");
  background-size: cover; background-position: center;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 95%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 95%);
}
.hero-watermark {
  position: absolute; z-index: -1; right: -8vw; top: 6%;
  width: clamp(420px, 52vw, 900px); opacity: 0.08;
  filter: grayscale(1) contrast(1.2);
  transform: rotate(-8deg);
  pointer-events: none; user-select: none;
  animation: float 12s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: rotate(-8deg) translateY(0); } 50% { transform: rotate(-7deg) translateY(-14px); } }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr); gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero-copy .eyebrow { color: #fff; }
.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(64px, 10.4vw, 150px);
  line-height: 0.84;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  margin: 16px 0 22px;
}
.hero-title .line { display: block; }
.hero-title .line.outline { color: transparent; -webkit-text-stroke: 2px #fff; }
.hero-title .line.gray { background: var(--silver); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { max-width: 540px; font-size: clamp(16px, 1.5vw, 19px); color: var(--muted); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.result-chips { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 34px; }
.result-chips .label { font-size: 11px; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted-2); margin-right: 6px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  height: 36px; padding: 0 12px 0 6px; border-radius: 6px;
  background: rgba(255, 255, 255, 0.06); border: 1px solid var(--line);
  font-family: var(--font-display); font-size: 16px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  transition: background 0.25s, transform 0.3s var(--ease);
}
.chip:hover { background: rgba(255, 255, 255, 0.12); transform: translateY(-2px); }
.chip .res { width: 24px; height: 24px; border-radius: 4px; display: grid; place-items: center; font-size: 13px; font-weight: 800; background: #fff; color: #000; }
.chip .res.D { background: #9a9aa3; }
.chip .res.L { background: #3a3a41; color: #fff; }
.chip .crest img, .chip .crest-fallback { width: 24px; height: 24px; font-size: 8px; object-fit: contain; }

/* Nächstes-Spiel-Karte */
.next-card {
  position: relative;
  border-radius: var(--radius-l);
  padding: 26px 28px 28px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025));
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.next-card::before {
  content: "MATCHDAY";
  position: absolute; right: -10px; bottom: -22px;
  font-family: var(--font-display); font-style: italic; font-weight: 900; font-size: 96px; line-height: 1;
  color: rgba(255, 255, 255, 0.04); letter-spacing: -0.02em; pointer-events: none;
}
.next-card .badge-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px; height: 28px; padding: 0 12px; border-radius: 4px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; background: #fff; color: #000;
}
.badge.dark { background: rgba(255, 255, 255, 0.1); color: #fff; }
.badge .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; animation: pulse 1.6s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }
.next-teams { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 12px; margin: 24px 0 16px; text-align: center; }
.team-col { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.team-col img, .team-col .crest-fallback {
  width: 92px; height: 92px; object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.65));
}
.crest { display: inline-grid; place-items: center; position: relative; }
.crest > * { grid-area: 1 / 1; position: relative; z-index: 1; }
.crest::before {
  content: ""; grid-area: 1 / 1; z-index: 0; width: 175%; height: 175%; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.06) 38%, transparent 62%);
  pointer-events: none; opacity: 0; transition: opacity 0.4s;
}
.crest.glow::before { opacity: 1; }
.crest img + .crest-fallback { display: none; }
.crest-fallback {
  display: grid; place-items: center; border-radius: 50%;
  background: linear-gradient(160deg, #2b2b31, #141417); color: #fff;
  border: 1px solid var(--line-strong); font-family: var(--font-display); font-weight: 800; font-size: 20px; letter-spacing: 0.04em;
}
.team-col .name { font-family: var(--font-display); font-size: 20px; font-weight: 700; text-transform: uppercase; line-height: 1.05; letter-spacing: 0.02em; margin-top: 4px; }
.vs { font-family: var(--font-display); font-style: italic; font-size: 34px; font-weight: 900; color: var(--muted-2); }
.next-info { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; border-top: 1px solid var(--line); padding-top: 16px; font-size: 14px; color: var(--muted); }
.next-info > div { display: flex; flex-direction: column; gap: 2px; }
.next-info svg { width: 20px; height: 20px; color: var(--muted-2); margin-bottom: 6px; }
.next-info strong { color: #fff; font-weight: 700; font-size: 15px; }
.countdown { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 16px; }
.countdown div { border-radius: 10px; background: rgba(0, 0, 0, 0.4); border: 1px solid var(--line); padding: 10px 6px; text-align: center; }
.countdown b { display: block; font-family: var(--font-display); font-size: 32px; font-weight: 800; line-height: 1; font-variant-numeric: tabular-nums; }
.countdown small { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-2); }
.next-card .btn { margin-top: 16px; width: 100%; }
.next-card.empty { text-align: center; padding: 48px 28px; color: var(--muted); }

/* Zahlen-Band ---------------------------------------------------------- */
.band {
  position: relative; z-index: 2;
  margin-top: -56px;
  background: #fff; color: #000;
  clip-path: polygon(0 0, 100% 2.2vw, 100% 100%, 0 calc(100% - 2.2vw));
  padding: calc(2.2vw + 34px) 0 calc(2.2vw + 30px);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { display: flex; flex-direction: column; gap: 4px; padding-left: 18px; border-left: 3px solid #000; }
.stat b { font-family: var(--font-display); font-style: italic; font-size: clamp(44px, 5.4vw, 72px); font-weight: 900; line-height: 0.92; font-variant-numeric: tabular-nums; }
.stat b sup { font-size: 0.42em; vertical-align: top; margin-left: 2px; font-weight: 700; color: #6f6f78; }
.stat span { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: #55555e; font-weight: 800; }

/* Laufband ------------------------------------------------------------ */
.ticker { overflow: hidden; border-block: 1px solid var(--line); background: linear-gradient(90deg, #0a0a0c, #141418, #0a0a0c); padding: 14px 0; margin-top: 36px; }
.ticker-track {
  display: flex; gap: 44px; width: max-content; animation: ticker 44s linear infinite;
  font-family: var(--font-display); font-style: italic; font-size: 22px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted);
}
.ticker-track span { display: inline-flex; align-items: center; gap: 44px; white-space: nowrap; }
.ticker-track span::after { content: ""; width: 5px; height: 16px; background: #fff; transform: skewX(var(--skew)); opacity: 0.7; }
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* Match Slider ---------------------------------------------------------- */
.slider-wrap { position: relative; }
.slider-nav { display: flex; gap: 10px; }
.slider {
  display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline: var(--gutter);
  padding: 8px var(--gutter) 26px; margin-inline: calc(-1 * var(--gutter)); scrollbar-width: none; cursor: grab;
}
.slider::-webkit-scrollbar { display: none; }
.slider.dragging { cursor: grabbing; scroll-snap-type: none; }
.match-card {
  flex: 0 0 min(88vw, 440px); scroll-snap-align: start;
  border-radius: 24px; background: linear-gradient(165deg, #1b1b20 0%, #0f0f12 60%, #0b0b0d 100%);
  border: 1px solid var(--line); padding: 0 0 20px; display: flex; flex-direction: column; gap: 18px; position: relative; overflow: hidden;
  min-height: 420px; isolation: isolate;
  transition: transform 0.45s var(--ease), border-color 0.3s, box-shadow 0.45s var(--ease);
}
.match-card::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(360px 220px at 50% 42%, rgba(255, 255, 255, 0.07), transparent 70%),
    linear-gradient(115deg, transparent 0 46%, rgba(255, 255, 255, 0.035) 46% 58%, transparent 58%);
}
.match-card::after {
  content: attr(data-ghost); position: absolute; right: -6px; bottom: 44px; z-index: -1; pointer-events: none;
  font-family: var(--font-display); font-style: italic; font-weight: 900; font-size: 96px; line-height: 1; letter-spacing: -0.02em;
  color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, 0.06);
}
.match-card:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: 0 34px 70px rgba(0, 0, 0, 0.55); }
.match-card .top {
  display: flex; justify-content: space-between; align-items: center; gap: 8px;
  padding: 14px 22px; background: rgba(255, 255, 255, 0.05); border-bottom: 1px solid var(--line);
  font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-2);
}
.match-card.next .top { background: #fff; color: #000; }
.match-card.next .top .date, .match-card.next .top .date small { color: #000; }
.match-card .date { font-family: var(--font-display); font-size: 21px; font-weight: 700; color: #fff; letter-spacing: 0.03em; white-space: nowrap; }
.match-card .date small { font-family: var(--font-body); font-size: 11px; color: var(--muted); letter-spacing: 0.08em; margin-left: 8px; }
.match-card .comp-line { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 2px 22px 0; font-size: 11px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-2); text-align: center; }
.match-card .comp-line b { color: var(--muted); font-weight: 800; }
.match-card .teams { display: grid; grid-template-columns: 1fr auto 1fr; gap: 12px; align-items: center; text-align: center; padding: 4px 18px 0; }
.match-card .team-col { gap: 12px; }
.match-card .team-col img, .match-card .crest-fallback { width: 104px; height: 104px; font-size: 24px; }
.match-card .team-col .name { font-size: 18px; max-width: 150px; }
.match-card .score { font-family: var(--font-display); font-style: italic; font-size: 72px; font-weight: 900; letter-spacing: -0.01em; line-height: 1; font-variant-numeric: tabular-nums; min-width: 96px; }
.match-card .score .colon { color: var(--muted-2); font-weight: 700; margin: 0 2px; }
.match-card .score.tbd { font-size: 28px; color: var(--muted-2); font-style: normal; font-weight: 700; letter-spacing: 0.06em; }
.match-card .score.tbd small { display: block; font-family: var(--font-body); font-size: 10px; letter-spacing: 0.2em; margin-top: 6px; font-weight: 800; }
.match-card .top .right { display: inline-flex; align-items: center; gap: 8px; }
.match-card .result-pill {
  height: 26px; padding: 0 9px; border-radius: 5px; display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-weight: 800; font-size: 14px; letter-spacing: 0.06em; background: #fff; color: #000;
}
.match-card .result-pill small { font-family: var(--font-body); font-size: 10px; letter-spacing: 0.12em; font-weight: 800; }
.match-card .result-pill.D { background: #9a9aa3; }
.match-card .result-pill.L { background: #3a3a41; color: #fff; }
.match-card .bottom { display: flex; justify-content: space-between; align-items: center; gap: 12px; border-top: 1px solid var(--line); padding: 14px 22px 0; font-size: 13px; color: var(--muted); margin-top: auto; }
.match-card .bottom .venue { display: flex; align-items: center; gap: 8px; min-width: 0; }
.match-card .bottom .venue span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.match-card .bottom svg { width: 15px; height: 15px; flex: none; }
.match-card .bottom a { color: #fff; font-weight: 800; white-space: nowrap; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 6px; }
.match-card .bottom a svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease); }
.match-card .bottom a:hover svg { transform: translateX(3px); }
.home-tag { font-size: 10px; font-weight: 800; letter-spacing: 0.2em; padding: 4px 9px; border-radius: 4px; border: 1px solid var(--line-strong); color: var(--muted); }
.home-tag.home { background: #fff; color: #000; border-color: #fff; }
.match-card.next .home-tag { border-color: #000; color: #000; }
.slider-dots { display: flex; gap: 6px; justify-content: center; margin-top: 4px; }
.slider-dots button { width: 22px; height: 4px; border-radius: 2px; border: 0; background: var(--line-strong); padding: 0; transition: background 0.25s, width 0.3s var(--ease); }
.slider-dots button.active { background: #fff; width: 40px; }

/* Tabelle -------------------------------------------------------------- */
.table-card { border-radius: var(--radius-l); border: 1px solid var(--line); background: linear-gradient(180deg, #131316, #0c0c0e); overflow: hidden; box-shadow: var(--shadow); }
.table-wrap { overflow-x: auto; }
.league-table { width: 100%; border-collapse: collapse; min-width: 560px; }
.league-table th, .league-table td { padding: 13px 14px; text-align: center; white-space: nowrap; }
.league-table th { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-2); font-weight: 800; border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, 0.02); }
.league-table td { border-bottom: 1px solid var(--line); font-size: 15px; font-variant-numeric: tabular-nums; }
.league-table tr:last-child td { border-bottom: 0; }
.league-table td.club, .league-table th.club { text-align: left; }
.league-table .club-cell { display: flex; align-items: center; gap: 12px; font-weight: 700; }
.league-table .club-cell .crest { flex: none; }
.league-table .club-cell img, .league-table .club-cell .crest-fallback { width: 32px; height: 32px; font-size: 10px; object-fit: contain; filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.6)); }
.league-table .rank { font-family: var(--font-display); font-size: 20px; font-weight: 800; width: 56px; }
.league-table .pts { font-family: var(--font-display); font-size: 22px; font-weight: 800; }
.league-table tr.own td { background: linear-gradient(90deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03)); }
.league-table tr.own td:first-child { box-shadow: inset 4px 0 0 #fff; }
.league-table tr.hidden-row { display: none; }
.league-table.expanded tr.hidden-row { display: table-row; }
.trend { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--muted-2); margin-right: 8px; vertical-align: middle; }
.trend.up { background: #fff; }
.trend.down { background: #444; }
.table-foot { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 14px 18px; border-top: 1px solid var(--line); font-size: 12px; color: var(--muted-2); flex-wrap: wrap; }
.table-grid { display: grid; grid-template-columns: 1.4fr 0.6fr; gap: 24px; align-items: start; }
.form-card { border-radius: var(--radius-l); border: 1px solid var(--line); padding: 26px; background: linear-gradient(160deg, #1a1a1f, #0e0e11); }
.form-card h3 { font-family: var(--font-display); font-style: italic; font-size: 28px; text-transform: uppercase; }
.form-row { display: flex; gap: 8px; margin: 18px 0 22px; }
.form-row span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 8px; font-family: var(--font-display); font-weight: 800; font-size: 16px; background: #fff; color: #000; }
.form-row span.D { background: #9a9aa3; }
.form-row span.L { background: #3a3a41; color: #fff; }
.mini-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mini-stats div { border-top: 1px solid var(--line); padding-top: 12px; }
.mini-stats b { display: block; font-family: var(--font-display); font-size: 30px; font-weight: 800; line-height: 1; }
.mini-stats small { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); }
.form-card .btn { margin-top: 22px; width: 100%; }

/* Team: Spielerkarten -------------------------------------------------- */
.players-row {
  display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline: var(--gutter);
  padding: 8px var(--gutter) 26px; margin-inline: calc(-1 * var(--gutter)); scrollbar-width: none;
}
.players-row::-webkit-scrollbar { display: none; }
.player-card {
  flex: 0 0 236px; scroll-snap-align: start; position: relative;
  border-radius: var(--radius); overflow: hidden; aspect-ratio: 3 / 4.15;
  background: linear-gradient(180deg, #202026, #0e0e11); border: 1px solid var(--line);
  transition: transform 0.45s var(--ease), border-color 0.3s, box-shadow 0.45s var(--ease);
}
.player-card:hover { transform: translateY(-8px); border-color: var(--line-strong); box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55); }
.player-card img { width: 100%; height: 100%; object-fit: cover; object-position: top; filter: grayscale(1) contrast(1.05); transition: filter 0.5s, transform 0.8s var(--ease); }
.player-card:hover img { filter: grayscale(0); transform: scale(1.04); }
.player-card .fade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 30%, rgba(0, 0, 0, 0.92) 100%); }
.player-card .num {
  position: absolute; top: 8px; right: 12px;
  font-family: var(--font-display); font-style: italic; font-weight: 900; font-size: 64px; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.8);
}
.player-card .role { position: absolute; top: 14px; left: 14px; }
.player-card .info { position: absolute; left: 16px; right: 16px; bottom: 14px; }
.player-card .info b { display: block; font-family: var(--font-display); font-style: italic; font-size: 26px; font-weight: 800; text-transform: uppercase; line-height: 0.95; }
.player-card .info b small { display: block; font-size: 16px; font-weight: 600; color: var(--muted); font-style: normal; }
.player-card .info span { display: block; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); font-weight: 800; margin-top: 6px; }
.player-card .stats { display: flex; gap: 14px; margin-top: 10px; padding-top: 10px; border-top: 1px solid rgba(255, 255, 255, 0.15); }
.player-card .stats div { font-family: var(--font-display); font-size: 22px; font-weight: 800; line-height: 1; }
.player-card .stats div small { display: block; font-family: var(--font-body); font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); font-weight: 800; margin-top: 3px; }
.player-card .avatar-big { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--font-display); font-size: 80px; font-weight: 900; color: rgba(255, 255, 255, 0.15); }
.team-grid { display: grid; grid-template-columns: 1fr 360px; gap: 24px; align-items: start; }
.scorers { border-radius: var(--radius-l); border: 1px solid var(--line); background: linear-gradient(160deg, #1a1a1f, #0e0e11); padding: 24px; }
.scorers h3 { font-family: var(--font-display); font-style: italic; font-size: 28px; text-transform: uppercase; margin-bottom: 14px; }
.scorer { display: grid; grid-template-columns: 26px 44px 1fr auto; align-items: center; gap: 12px; padding: 9px 0; border-top: 1px solid var(--line); }
.scorer .pos { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--muted-2); }
.scorer .pic { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; background: #2b2b31; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; }
.scorer .pic img { width: 100%; height: 100%; object-fit: cover; object-position: top; filter: grayscale(1); }
.scorer .who b { display: block; font-weight: 800; font-size: 15px; }
.scorer .who small { font-size: 11px; color: var(--muted-2); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; }
.scorer .bar { grid-column: 3; height: 4px; background: var(--line); border-radius: 2px; overflow: hidden; margin-top: -2px; }
.scorer .bar i { display: block; height: 100%; background: #fff; }
.scorer .goals { font-family: var(--font-display); font-style: italic; font-size: 30px; font-weight: 900; line-height: 1; }
.scorer .goals small { font-family: var(--font-body); font-style: normal; font-size: 10px; letter-spacing: 0.16em; color: var(--muted-2); margin-left: 3px; }
.coach-card { display: flex; align-items: center; gap: 14px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.coach-card .pic { width: 54px; height: 54px; border-radius: 12px; background: linear-gradient(160deg, #fff, #9a9aa3); color: #000; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 20px; }
.coach-card b { display: block; font-family: var(--font-display); font-size: 22px; text-transform: uppercase; font-style: italic; }
.coach-card small { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); font-weight: 800; }

/* Kader-Seite */
.position-group { margin-bottom: 30px; }
.position-group h3 { font-family: var(--font-display); font-style: italic; font-size: 24px; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; display: flex; align-items: center; gap: 12px; }
.position-group h3::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.squad-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.squad-grid .player-card { flex: none; aspect-ratio: 3 / 4; }
.staff-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.staff { border-radius: var(--radius); border: 1px solid var(--line); background: linear-gradient(180deg, #16161a, #0e0e11); padding: 20px; display: flex; gap: 16px; align-items: center; }
.staff .avatar { width: 56px; height: 56px; border-radius: 50%; flex: none; display: grid; place-items: center; background: linear-gradient(160deg, #fff, #9a9aa3); color: #000; font-family: var(--font-display); font-weight: 800; font-size: 20px; }
.staff .avatar.ph { background: var(--surface-3); color: var(--muted-2); }
.staff b { display: block; font-family: var(--font-display); font-style: italic; font-size: 22px; text-transform: uppercase; line-height: 1; }
.staff small { color: var(--muted-2); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 800; }

/* News / Instagram ------------------------------------------------------ */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.news-card {
  border-radius: var(--radius); border: 1px solid var(--line); background: linear-gradient(180deg, #16161a, #0f0f12);
  overflow: hidden; display: flex; flex-direction: column; transition: transform 0.45s var(--ease), border-color 0.3s; min-height: 300px;
}
.news-card:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.news-card .media { aspect-ratio: 16 / 9; background: linear-gradient(140deg, #26262c, #101013); position: relative; overflow: hidden; }
.news-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.news-card:hover .media img { transform: scale(1.05); }
.news-card .media .placeholder-crest { position: absolute; inset: 0; display: grid; place-items: center; background: repeating-linear-gradient(115deg, transparent 0 60px, rgba(255, 255, 255, 0.025) 60px 62px); }
.news-card .media .placeholder-crest img { width: 100px; height: 100px; opacity: 0.35; object-fit: contain; filter: grayscale(1); }
.news-card .body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.news-card .meta { display: flex; gap: 10px; align-items: center; font-size: 11px; color: var(--muted-2); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 800; }
.news-card h3 { font-family: var(--font-display); font-style: italic; font-size: 27px; text-transform: uppercase; line-height: 0.98; }
.news-card.featured h3 { font-size: 38px; }
.news-card p { color: var(--muted); font-size: 15px; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.news-card .link-arrow { margin-top: auto; padding-top: 10px; }
.insta-head { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.insta-avatar { width: 64px; height: 64px; border-radius: 50%; padding: 3px; background: conic-gradient(from 180deg, #fff, #666, #fff); }
.insta-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; background: #000; }
.insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.insta-item { position: relative; aspect-ratio: 1; border-radius: 12px; overflow: hidden; background: linear-gradient(140deg, #26262c, #101013); border: 1px solid var(--line); }
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.insta-item:hover img { transform: scale(1.06); }
.insta-item .cap { position: absolute; inset: 0; padding: 14px; display: flex; align-items: flex-end; font-size: 12px; line-height: 1.4; color: #fff; background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.85)); opacity: 0; transition: opacity 0.3s; }
.insta-item:hover .cap { opacity: 1; }
.insta-item .cap span { display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.insta-item.ph { display: grid; place-items: center; color: var(--muted-2); }
.insta-item.ph svg { width: 28px; height: 28px; opacity: 0.5; }
.insta-embeds { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 18px; margin-top: 18px; }
.insta-embeds blockquote { margin: 0 !important; min-width: 0 !important; }
.insta-setup { margin-top: 18px; border: 1px dashed var(--line-strong); border-radius: var(--radius); padding: 18px 22px; color: var(--muted); font-size: 14px; display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.insta-setup svg { width: 22px; height: 22px; flex: none; }
.insta-setup code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; color: #fff; background: rgba(255, 255, 255, 0.08); padding: 2px 6px; border-radius: 6px; }

/* Vorteile (weiß) -------------------------------------------------------- */
.perk-head { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 32px; align-items: end; margin-bottom: 40px; }
.perk-title { font-family: var(--font-display); font-style: italic; font-weight: 900; font-size: clamp(52px, 8vw, 116px); line-height: 0.86; text-transform: uppercase; letter-spacing: -0.01em; margin-top: 12px; }
.perk-title .sub { display: block; font-weight: 500; font-style: normal; color: #6f6f78; font-size: 0.5em; margin-top: 8px; letter-spacing: 0.02em; }
.perk-intro { color: #3d3d45; font-size: 17px; max-width: 480px; }
.perk-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.perk {
  display: flex; flex-direction: column; gap: 12px; padding: 18px 18px 16px; min-height: 250px;
  background: #fff; border: 1px solid rgba(0, 0, 0, 0.08); border-radius: var(--radius-s); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
  position: relative; overflow: hidden;
}
.perk:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(0, 0, 0, 0.14); }
.perk .icon { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: #0a0a0b; color: #fff; }
.perk .icon svg { width: 20px; height: 20px; }
.perk .value { font-family: var(--font-display); font-style: italic; font-weight: 900; font-size: 44px; line-height: 0.9; letter-spacing: -0.01em; }
.perk .title { font-size: 13.5px; font-weight: 700; color: #26262c; line-height: 1.35; flex: 1; }
.perk .partner { display: flex; align-items: center; min-height: 44px; border-top: 1px solid rgba(0, 0, 0, 0.08); padding-top: 12px; }
.perk .partner img { max-height: 36px; max-width: 100%; object-fit: contain; object-position: left; }
.perk .partner .tile-dark { background: #0a0a0b; border-radius: 6px; padding: 6px 10px; }
.perk .partner .name-only { font-family: var(--font-display); font-weight: 800; font-size: 17px; text-transform: uppercase; line-height: 1; color: #0a0a0b; }
.perk .cta { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: #0a0a0b; }
.perk .cta svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease); }
.perk:hover .cta svg { transform: translateX(4px); }
.perk-note { margin-top: 20px; font-size: 12px; color: #6f6f78; }
.tabs { display: inline-flex; padding: 4px; border-radius: 8px; background: rgba(0, 0, 0, 0.06); border: 1px solid rgba(0, 0, 0, 0.08); margin-bottom: 26px; }
.tabs button { height: 42px; padding: 0 20px; border-radius: 6px; border: 0; background: transparent; font-weight: 800; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: #55555e; transition: background 0.3s, color 0.3s, box-shadow 0.3s; }
.tabs button.active { background: #0a0a0b; color: #fff; box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18); }
.benefit-panel { display: none; }
.benefit-panel.active { display: block; animation: fadeUp 0.5s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.benefit { border-radius: var(--radius-s); padding: 24px; background: #fff; border: 1px solid rgba(0, 0, 0, 0.08); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); display: flex; flex-direction: column; gap: 12px; transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease); }
.benefit:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12); }
.benefit .icon { width: 44px; height: 44px; border-radius: 10px; display: grid; place-items: center; background: #0a0a0b; color: #fff; }
.benefit .icon svg { width: 20px; height: 20px; }
.benefit h3 { font-family: var(--font-display); font-style: italic; font-size: 24px; text-transform: uppercase; line-height: 1; }
.benefit p { color: #55555e; font-size: 14.5px; }
.benefit-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }

/* Partnerwand ---------------------------------------------------------- */
.partner-wall { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.partner-tile {
  position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius-s);
  background: linear-gradient(180deg, #ffffff, #e9e9ed); display: grid; place-items: center; padding: 18px 20px; overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.partner-tile:hover { transform: translateY(-5px); box-shadow: 0 22px 44px rgba(0, 0, 0, 0.45); }
.partner-tile img { position: absolute; inset: 13% 9%; width: 82%; height: 74%; object-fit: contain; filter: grayscale(1); transition: filter 0.3s; }
.partner-tile:hover img { filter: none; }
.partner-tile.dark { background: linear-gradient(180deg, #202026, #0f0f12); border: 1px solid var(--line-strong); }
.partner-tile.dark img { filter: grayscale(1) brightness(1.1); }
.partner-tile.dark:hover img { filter: none; }
.partner-tile.typo {
  background: linear-gradient(180deg, #1c1c21, #0f0f12); border: 1px solid var(--line-strong); text-align: center;
}
.partner-tile.typo::before { content: ""; position: absolute; inset: 8px; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 6px; }
.partner-tile.typo { padding: 18px 16px; }
.partner-tile.typo b { display: block; font-family: var(--font-display); font-style: italic; font-weight: 800; font-size: clamp(18px, 1.6vw, 24px); text-transform: uppercase; line-height: 0.98; letter-spacing: 0.01em; }
.partner-tile.typo small { display: block; margin-top: 8px; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); font-weight: 800; }
.partner-cta {
  margin-top: 36px; border-radius: var(--radius-l); padding: clamp(26px, 4vw, 44px);
  background: linear-gradient(120deg, #ffffff 0%, #d9d9de 100%); color: #0a0a0b;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.partner-cta h3 { font-family: var(--font-display); font-style: italic; font-size: clamp(30px, 4vw, 50px); text-transform: uppercase; line-height: 0.95; }
.partner-cta p { color: #3d3d45; margin-top: 8px; max-width: 560px; }
.partner-marquee { overflow: hidden; border-block: 1px solid var(--line); background: #fff; padding: 18px 0; }
.partner-marquee .track { display: flex; gap: 56px; width: max-content; animation: ticker 60s linear infinite; align-items: center; }
.partner-marquee:hover .track { animation-play-state: paused; }
.partner-marquee img { height: 38px; width: auto; max-width: 180px; object-fit: contain; filter: grayscale(1); opacity: 0.85; }
.partner-marquee .word { font-family: var(--font-display); font-style: italic; font-weight: 800; font-size: 22px; text-transform: uppercase; color: #0a0a0b; white-space: nowrap; }
.partner-marquee .word.dark-logo { background: #0a0a0b; border-radius: 6px; padding: 4px 10px; display: inline-flex; }
.partner-marquee .word.dark-logo img { filter: none; opacity: 1; height: 30px; }

/* Verein --------------------------------------------------------------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.about-text p { color: var(--muted); font-size: 17px; margin-bottom: 16px; }
.about-text p strong { color: #fff; }
.about-visual {
  position: relative; aspect-ratio: 1; border-radius: var(--radius-l);
  background: radial-gradient(500px 400px at 30% 30%, rgba(255, 255, 255, 0.14), transparent 60%), linear-gradient(160deg, #1c1c21, #08080a);
  border: 1px solid var(--line); display: grid; place-items: center; overflow: hidden;
}
.about-visual img { width: 62%; filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.7)); }
.about-visual .ring { position: absolute; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.1); animation: spin 40s linear infinite; }
.about-visual .ring.r1 { width: 86%; aspect-ratio: 1; border-style: dashed; }
.about-visual .ring.r2 { width: 110%; aspect-ratio: 1; animation-direction: reverse; animation-duration: 60s; }
@keyframes spin { to { transform: rotate(360deg); } }
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 28px; }
.fact { border-top: 2px solid #fff; padding-top: 12px; }
.fact b { display: block; font-family: var(--font-display); font-style: italic; font-size: 36px; font-weight: 900; line-height: 1; }
.fact small { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); font-weight: 800; }

/* Mitglied werden ------------------------------------------------------- */
.join { position: relative; overflow: hidden; isolation: isolate; }
.join::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(900px 600px at 20% 30%, rgba(255, 255, 255, 0.1), transparent 60%), radial-gradient(700px 500px at 90% 80%, rgba(255, 255, 255, 0.06), transparent 60%), linear-gradient(180deg, #0a0a0c, #101014);
}
.join-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.join h2 { font-family: var(--font-display); font-style: italic; font-size: clamp(50px, 8vw, 112px); text-transform: uppercase; line-height: 0.86; }
.join h2 .gray { background: var(--silver); -webkit-background-clip: text; background-clip: text; color: transparent; }
.join p { color: var(--muted); font-size: 17px; margin-top: 20px; max-width: 480px; }
.join .checks { margin-top: 24px; display: grid; gap: 10px; }
.join .checks li { display: flex; gap: 12px; align-items: center; color: var(--text); font-weight: 600; }
.join .checks svg { width: 20px; height: 20px; flex: none; }
.form-panel { border-radius: var(--radius-l); border: 1px solid var(--line-strong); background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)); backdrop-filter: blur(20px); padding: clamp(22px, 3vw, 34px); box-shadow: var(--shadow); }
.form-panel h3 { font-family: var(--font-display); font-style: italic; font-size: 30px; text-transform: uppercase; margin-bottom: 18px; }
.field { display: grid; gap: 6px; margin-bottom: 14px; }
.field label { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; border-radius: 8px; border: 1px solid var(--line-strong); background: rgba(0, 0, 0, 0.35); color: #fff; font: inherit; padding: 13px 14px; transition: border-color 0.25s, box-shadow 0.25s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: #fff; box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08); }
.field select option { color: #000; }
.field textarea { min-height: 110px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-note { font-size: 12px; color: var(--muted-2); margin-top: 12px; }
.form-panel .btn { width: 100%; margin-top: 6px; }

/* Footer --------------------------------------------------------------- */
.footer { border-top: 1px solid var(--line); background: linear-gradient(180deg, #08080a, #000); padding: 64px 0 28px; color: var(--muted); font-size: 14px; position: relative; overflow: hidden; }
.footer::after { content: "EINTRACHT"; position: absolute; right: -2vw; bottom: -3vw; font-family: var(--font-display); font-style: italic; font-weight: 900; font-size: clamp(120px, 22vw, 340px); line-height: 0.8; color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, 0.05); pointer-events: none; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; position: relative; z-index: 1; }
.footer h4 { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: #fff; margin-bottom: 14px; }
.footer li { margin-bottom: 8px; }
.footer a:hover { color: #fff; }
.footer .brand { margin-bottom: 16px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 48px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 12px; color: var(--muted-2); position: relative; z-index: 1; }
.socials { display: flex; gap: 8px; margin-top: 14px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-strong); display: grid; place-items: center; transition: background 0.25s, color 0.25s; }
.socials a:hover { background: #fff; color: #000; }
.socials svg { width: 18px; height: 18px; }

/* Unterseiten ------------------------------------------------------------ */
.page-hero {
  position: relative; overflow: hidden;
  padding: calc(var(--topbar-h) + var(--header-h) + 56px) 0 52px;
  background: radial-gradient(900px 500px at 20% 0%, rgba(255, 255, 255, 0.1), transparent 60%), linear-gradient(180deg, #121215, var(--bg));
  border-bottom: 1px solid var(--line);
}
.page-hero::after { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(115deg, transparent 0 140px, rgba(255, 255, 255, 0.025) 140px 142px); pointer-events: none; }
.page-hero h1 { font-family: var(--font-display); font-style: italic; font-size: clamp(50px, 9vw, 124px); text-transform: uppercase; line-height: 0.88; margin-top: 12px; }
.page-hero p { color: var(--muted); font-size: 17px; margin-top: 16px; max-width: 620px; }
.page-hero .container { z-index: 1; }
.hero-facts { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 26px; }
.hero-facts div b { display: block; font-family: var(--font-display); font-style: italic; font-size: 40px; font-weight: 900; line-height: 1; }
.hero-facts div small { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-2); font-weight: 800; }
.prose { max-width: 760px; color: var(--muted); font-size: 16px; }
.prose h2 { font-family: var(--font-display); font-style: italic; font-size: 32px; text-transform: uppercase; color: #fff; margin: 40px 0 12px; }
.prose h3 { font-size: 18px; color: #fff; margin: 24px 0 8px; }
.prose p { margin-bottom: 14px; }
.prose ul { list-style: disc; padding-left: 20px; margin-bottom: 14px; }
.prose li { margin-bottom: 6px; }
.prose a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.prose .todo { background: rgba(255, 255, 255, 0.08); border-left: 3px solid #fff; padding: 12px 16px; border-radius: 8px; color: #fff; }
.matches-list { display: grid; gap: 10px; }
.match-row { display: grid; grid-template-columns: 120px 1fr auto 1fr 130px; align-items: center; gap: 14px; padding: 14px 18px; border-radius: var(--radius-s); border: 1px solid var(--line); background: linear-gradient(180deg, #141418, #0e0e11); transition: border-color 0.25s, transform 0.35s var(--ease); }
.match-row:hover { border-color: var(--line-strong); transform: translateX(4px); }
.match-row.next { border-color: rgba(255, 255, 255, 0.5); }
.match-row .when { font-size: 13px; color: var(--muted); }
.match-row .when b { display: block; font-family: var(--font-display); font-size: 20px; color: #fff; }
.match-row .club { display: flex; align-items: center; gap: 10px; font-weight: 700; min-width: 0; }
.match-row .club.away { justify-content: flex-end; text-align: right; }
.match-row .club img, .match-row .club .crest-fallback { width: 36px; height: 36px; object-fit: contain; font-size: 10px; flex: none; filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.6)); }
.match-row .club span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.match-row .club.own span { color: #fff; }
.match-row .score { font-family: var(--font-display); font-style: italic; font-size: 30px; font-weight: 900; min-width: 72px; text-align: center; font-variant-numeric: tabular-nums; }
.match-row .score.tbd { color: var(--muted-2); font-size: 18px; font-style: normal; }
.match-row .comp { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-2); text-align: right; font-weight: 800; min-width: 0; }
.match-row .comp b { display: block; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.month-label { font-family: var(--font-display); font-style: italic; font-size: 26px; text-transform: uppercase; color: var(--muted); margin: 28px 0 10px; }
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.filter-bar button { height: 40px; padding: 0 16px; border-radius: 6px; border: 1px solid var(--line-strong); background: transparent; font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); transition: background 0.25s, color 0.25s; }
.filter-bar button.active, .filter-bar button:hover { background: #fff; color: #000; border-color: #fff; }
.widget-box { border: 1px dashed var(--line-strong); border-radius: var(--radius); padding: 22px; color: var(--muted); font-size: 14px; }
.widget-box code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; color: #fff; background: rgba(255, 255, 255, 0.08); padding: 2px 6px; border-radius: 6px; }

/* Reveal / Sonstiges ---------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }
.empty-note { color: var(--muted-2); font-size: 14px; padding: 24px; border: 1px dashed var(--line); border-radius: var(--radius); text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.toast { position: fixed; left: 50%; bottom: 24px; transform: translate(-50%, 20px); background: #fff; color: #000; padding: 12px 18px; border-radius: 8px; font-weight: 700; font-size: 14px; opacity: 0; transition: opacity 0.3s, transform 0.4s var(--ease); z-index: 60; pointer-events: none; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* Responsive ------------------------------------------------------------ */
@media (max-width: 1180px) {
  .perk-grid { grid-template-columns: repeat(3, 1fr); }
  .partner-wall { grid-template-columns: repeat(4, 1fr); }
  .squad-grid { grid-template-columns: repeat(4, 1fr); }
  .insta-grid { grid-template-columns: repeat(4, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
}
@media (max-width: 960px) {
  .nav, .header .btn { display: none; }
  .burger { display: grid; }
  .topbar-right a span { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero { padding-bottom: 110px; min-height: 0; }
  .hero-watermark { right: -30vw; top: 0; width: 120vw; opacity: 0.06; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .table-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .join-grid, .perk-head { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .match-row { grid-template-columns: 90px 1fr auto 1fr; }
  .match-row .comp { display: none; }
  .squad-grid, .staff-grid { grid-template-columns: repeat(3, 1fr); }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-wall { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  :root { --header-h: 66px; --topbar-h: 34px; }
  .brand span small { display: none; }
  .topbar { font-size: 11px; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .news-grid { grid-template-columns: 1fr; }
  .benefit-grid, .perk-grid { grid-template-columns: 1fr 1fr; }
  .perk { min-height: 0; }
  .perk .value { font-size: 36px; }
  .squad-grid, .partner-wall { grid-template-columns: repeat(2, 1fr); }
  .staff-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .facts { gap: 8px; }
  .fact b { font-size: 28px; }
  .footer-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .match-row { grid-template-columns: 1fr; gap: 8px; }
  .match-row .club.away { justify-content: flex-start; text-align: left; }
  .match-row .score { text-align: left; }
  .stat b { font-size: 40px; }
  .hero-title { font-size: clamp(58px, 15.5vw, 120px); }
  .player-card { flex-basis: 200px; }
  .league-table .hide-s { display: none; }
  .league-table { min-width: 0; }
  .band { margin-top: -40px; }
}
@media (max-width: 420px) {
  .perk-grid { grid-template-columns: 1fr; }
  .partner-wall { grid-template-columns: 1fr 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001s !important; animation-iteration-count: 1 !important; transition-duration: 0.001s !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* v2.1: Baum, Navigation, Team-Layout, Mitgliedsmodell, Aktionen ------------ */
main section[id] { scroll-margin-top: calc(var(--header-h) + 12px); }
.hero-tree { position: absolute; inset: 0; z-index: -1; width: 100%; height: 100%; display: block; cursor: pointer; }
.hero-watermark { display: none; }
.team-grid { grid-template-columns: minmax(0, 1fr) 360px; }
.team-grid .players-row { margin-inline: 0; padding: 8px 28px 26px 0; mask-image: linear-gradient(90deg, #000 88%, transparent); -webkit-mask-image: linear-gradient(90deg, #000 88%, transparent); }
.next-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 10px; }
.next-actions .btn { margin-top: 0; width: 100%; }
.section-head .head-actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 14px; }
.tier-card { border-radius: var(--radius); border: 1px solid var(--line); padding: 26px; background: linear-gradient(180deg, #16161a, #0e0e11); display: flex; flex-direction: column; gap: 14px; position: relative; overflow: hidden; }
.tier-card.highlight { background: #fff; color: #0a0a0b; border-color: #fff; }
.tier-card h3 { font-family: var(--font-display); font-style: italic; font-size: 30px; text-transform: uppercase; line-height: 1; }
.tier-card .price { font-family: var(--font-display); font-style: italic; font-weight: 900; font-size: 54px; line-height: 0.9; }
.tier-card .price small { font-family: var(--font-body); font-style: normal; font-weight: 700; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-2); margin-left: 8px; }
.tier-card.highlight .price small { color: #6f6f78; }
.tier-card p { color: var(--muted); font-size: 14.5px; }
.tier-card.highlight p { color: #55555e; }
.tier-card ul { display: grid; gap: 8px; margin-top: 4px; }
.tier-card li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; font-weight: 600; }
.tier-card li svg { width: 18px; height: 18px; flex: none; margin-top: 2px; }
.tier-card .btn { margin-top: auto; }
.tier-card.highlight .btn-primary { background: #0a0a0b; color: #fff; }
.tier-note { font-size: 12px; color: var(--muted-2); margin-top: 14px; }
#membership { margin-bottom: clamp(48px, 6vw, 80px); }
@media (max-width: 1180px) { .team-grid { grid-template-columns: 1fr; } .team-grid .players-row { margin-inline: calc(-1 * var(--gutter)); padding-inline: var(--gutter); mask-image: none; -webkit-mask-image: none; } }

/* v2.2: News-Layout mit Ergebnisgrafiken ------------------------------------ */
.news-card { min-height: 0; }
.news-card.featured { grid-column: 1 / -1; flex-direction: row; align-items: stretch; }
.news-card.featured .media { flex: 0 0 58%; aspect-ratio: 16 / 9; }
.news-card.featured .body { flex: 1; justify-content: center; padding: clamp(24px, 3vw, 40px); }
.news-card.featured h3 { font-size: clamp(30px, 3.2vw, 44px); }
.news-card.featured p { -webkit-line-clamp: 5; font-size: 16px; }
.news-card .media img { object-position: center; }
@media (max-width: 960px) { .news-card.featured { flex-direction: column; } .news-card.featured .media { flex: none; } }

/* v2.3: Baum im Verein-Bereich --------------------------------------------- */
.hero-tree { display: none; }
.tree-panel { cursor: pointer; }
.tree-panel .tree-canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.tree-panel::after { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 45% at 50% 42%, rgba(255, 255, 255, 0.07), transparent 70%); pointer-events: none; }
.tree-hint { position: absolute; left: 18px; right: 18px; bottom: 16px; display: flex; align-items: center; gap: 10px; font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); font-weight: 800; pointer-events: none; }
.tree-hint .dot { width: 6px; height: 6px; border-radius: 50%; background: #fff; animation: pulse 1.6s infinite; flex: none; }

/* v3: Artikelseite, Spieler-Overlay, News-Übersicht, Social-Leiste ------------ */
.news-card { cursor: pointer; }
.news-card .body h3 a { color: inherit; }
.news-card .meta .tag { display: inline-flex; align-items: center; height: 22px; padding: 0 8px; border-radius: 4px; background: #fff; color: #000; font-size: 10px; letter-spacing: 0.16em; }
.news-card .meta .tag.dark { background: rgba(255, 255, 255, 0.1); color: #fff; }
.news-more { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 26px; }
.social-strip { display: inline-flex; align-items: center; gap: 12px; padding: 8px 16px 8px 8px; border-radius: 999px; border: 1px solid var(--line-strong); background: rgba(255, 255, 255, 0.04); font-size: 13px; font-weight: 700; color: var(--muted); transition: background 0.25s, color 0.25s; }
.social-strip:hover { background: #fff; color: #000; }
.social-strip .ic { width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; background: #fff; color: #000; }
.social-strip:hover .ic { background: #000; color: #fff; }
.social-strip .ic svg { width: 16px; height: 16px; }

.article-hero { position: relative; padding: calc(var(--topbar-h) + var(--header-h) + 40px) 0 0; }
.article-hero .crumbs { display: flex; align-items: center; gap: 10px; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 800; color: var(--muted-2); margin-bottom: 22px; }
.article-hero .crumbs a:hover { color: #fff; }
.article-head { display: grid; grid-template-columns: minmax(0, 1fr); gap: 18px; max-width: 900px; }
.article-head h1 { font-family: var(--font-display); font-style: italic; font-size: clamp(40px, 6.4vw, 84px); text-transform: uppercase; line-height: 0.9; text-wrap: balance; }
.article-head .lead { font-size: clamp(17px, 1.6vw, 20px); color: var(--muted); max-width: 760px; }
.article-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 800; color: var(--muted-2); }
.article-meta .tag { display: inline-flex; align-items: center; height: 26px; padding: 0 10px; border-radius: 4px; background: #fff; color: #000; font-size: 11px; }
.article-media { margin-top: 34px; border-radius: var(--radius-l); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); aspect-ratio: 16 / 9; background: #0d0d10; }
.article-media img { width: 100%; height: 100%; object-fit: cover; }
.article-grid { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: clamp(28px, 4vw, 60px); align-items: start; margin-top: clamp(36px, 5vw, 64px); }
.article-body { max-width: 760px; font-size: 17.5px; line-height: 1.75; color: #dcdce0; }
.article-body p { margin-bottom: 22px; }
.article-body p:first-child::first-letter { font-family: var(--font-display); font-style: italic; font-weight: 900; font-size: 4.2em; line-height: 0.8; float: left; margin: 8px 12px 0 0; color: #fff; }
.article-body .source { display: inline-flex; gap: 8px; align-items: center; margin-top: 8px; font-size: 13px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; }
.article-body .source svg { width: 14px; height: 14px; }
.article-side { display: grid; gap: 18px; position: sticky; top: calc(var(--header-h) + 18px); }
.side-card { border-radius: var(--radius-l); border: 1px solid var(--line); background: linear-gradient(160deg, #1a1a1f, #0e0e11); padding: 22px; }
.side-card h3 { font-family: var(--font-display); font-style: italic; font-size: 24px; text-transform: uppercase; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.side-card h3::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.score-box { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 10px; text-align: center; padding: 6px 0 16px; }
.score-box .team-col img, .score-box .crest-fallback { width: 64px; height: 64px; }
.score-box .team-col .name { font-size: 15px; }
.score-box .big { font-family: var(--font-display); font-style: italic; font-weight: 900; font-size: 56px; line-height: 1; font-variant-numeric: tabular-nums; }
.score-box .big span { color: var(--muted-2); font-weight: 700; }
.score-meta { display: grid; gap: 6px; border-top: 1px solid var(--line); padding-top: 14px; font-size: 13px; color: var(--muted); }
.score-meta div { display: flex; justify-content: space-between; gap: 12px; }
.score-meta b { color: #fff; font-weight: 700; text-align: right; }
.timeline { display: grid; gap: 0; }
.tl-event { display: grid; grid-template-columns: 52px 1fr auto; align-items: center; gap: 12px; padding: 10px 0; border-top: 1px solid var(--line); }
.tl-event:first-child { border-top: 0; }
.tl-event .min { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--muted); }
.tl-event .min small { font-size: 12px; margin-left: 1px; }
.tl-event .who { font-weight: 700; font-size: 14.5px; min-width: 0; }
.tl-event .who small { display: block; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-2); font-weight: 800; }
.tl-event .st { font-family: var(--font-display); font-weight: 800; font-size: 20px; font-variant-numeric: tabular-nums; padding: 2px 8px; border-radius: 6px; background: rgba(255, 255, 255, 0.06); }
.tl-event.own .st { background: #fff; color: #000; }
.tl-event.ht { grid-template-columns: 1fr; text-align: center; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-2); font-weight: 800; padding: 8px 0; }
.lineup-list { display: flex; flex-wrap: wrap; gap: 6px; }
.lineup-list span { display: inline-flex; align-items: center; gap: 6px; height: 30px; padding: 0 10px 0 6px; border-radius: 6px; background: rgba(255, 255, 255, 0.06); border: 1px solid var(--line); font-size: 13px; font-weight: 700; cursor: pointer; transition: background 0.2s; }
.lineup-list span:hover { background: rgba(255, 255, 255, 0.14); }
.lineup-list span b { display: grid; place-items: center; min-width: 20px; height: 20px; padding: 0 4px; border-radius: 4px; background: #fff; color: #000; font-family: var(--font-display); font-size: 13px; font-weight: 800; }
.lineup-list span i { font-style: normal; font-size: 10px; letter-spacing: 0.08em; color: var(--muted-2); font-weight: 800; }
.lineup-label { font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-2); font-weight: 800; margin: 14px 0 8px; }
.lineup-label:first-child { margin-top: 0; }
.more-news { margin-top: clamp(48px, 6vw, 80px); }
.news-list-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.article-nav { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

/* Spieler-Overlay */
.modal-backdrop { position: fixed; inset: 0; z-index: 80; background: rgba(4, 4, 6, 0.78); display: grid; place-items: center; padding: 20px; opacity: 0; transition: opacity 0.3s; }
.modal-backdrop.open { opacity: 1; }
.player-modal {
  width: min(960px, 100%); max-height: calc(100vh - 40px); overflow: auto; border-radius: var(--radius-l); border: 1px solid var(--line-strong);
  background: linear-gradient(160deg, #1a1a1f, #0b0b0d); box-shadow: var(--shadow); display: grid; grid-template-columns: 340px minmax(0, 1fr);
  transform: translateY(18px) scale(0.98); transition: transform 0.4s var(--ease); position: relative;
}
.modal-backdrop.open .player-modal { transform: none; }
.player-modal .close { position: absolute; top: 14px; right: 14px; z-index: 3; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line-strong); background: rgba(0, 0, 0, 0.5); color: #fff; display: grid; place-items: center; }
.player-modal .close:hover { background: #fff; color: #000; }
.player-modal .close svg { width: 18px; height: 18px; }
.player-modal .photo { position: relative; min-height: 420px; background: linear-gradient(180deg, #24242a, #0e0e11); overflow: hidden; }
.player-modal .photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; position: absolute; inset: 0; }
.player-modal .photo .avatar-big { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--font-display); font-size: 110px; font-weight: 900; color: rgba(255, 255, 255, 0.12); }
.player-modal .photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.9)); }
.player-modal .photo .num { position: absolute; top: 10px; left: 16px; z-index: 2; font-family: var(--font-display); font-style: italic; font-weight: 900; font-size: 92px; line-height: 1; color: transparent; -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.8); }
.player-modal .photo .caption { position: absolute; left: 20px; right: 20px; bottom: 18px; z-index: 2; }
.player-modal .photo .caption b { display: block; font-family: var(--font-display); font-style: italic; font-size: 34px; font-weight: 800; text-transform: uppercase; line-height: 0.95; }
.player-modal .photo .caption b small { display: block; font-size: 18px; font-weight: 600; color: var(--muted); font-style: normal; }
.player-modal .photo .caption span { display: inline-flex; margin-top: 8px; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); font-weight: 800; }
.player-modal .detail { padding: 26px 26px 24px; display: grid; gap: 20px; align-content: start; }
.player-modal .detail h3 { font-family: var(--font-display); font-style: italic; font-size: 22px; text-transform: uppercase; display: flex; align-items: center; gap: 10px; }
.player-modal .detail h3::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.pstats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.pstats div { border-radius: 12px; border: 1px solid var(--line); background: rgba(255, 255, 255, 0.04); padding: 12px 12px 10px; }
.pstats b { display: block; font-family: var(--font-display); font-style: italic; font-size: 34px; font-weight: 900; line-height: 1; }
.pstats small { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); font-weight: 800; }
.pbars { display: grid; gap: 10px; }
.pbar { display: grid; grid-template-columns: 130px 1fr 44px; align-items: center; gap: 12px; font-size: 12px; color: var(--muted); font-weight: 700; }
.pbar i { display: block; height: 6px; border-radius: 3px; background: var(--line); overflow: hidden; }
.pbar i::after { content: ""; display: block; height: 100%; width: var(--w, 0%); background: #fff; transition: width 0.8s var(--ease); }
.pbar b { text-align: right; color: #fff; font-family: var(--font-display); font-size: 16px; }
.plog { display: grid; gap: 4px; max-height: 260px; overflow: auto; padding-right: 4px; }
.plog-row { display: grid; grid-template-columns: 58px 26px minmax(0, 1fr) 54px 36px; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 8px; background: rgba(255, 255, 255, 0.03); border: 1px solid var(--line); font-size: 13px; }
.plog-row .d { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--muted); }
.plog-row .r { width: 24px; height: 24px; border-radius: 5px; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 13px; background: #fff; color: #000; }
.plog-row .r.D { background: #9a9aa3; }
.plog-row .r.L { background: #3a3a41; color: #fff; }
.plog-row .o { font-weight: 700; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.plog-row .o small { display: block; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-2); font-weight: 800; }
.plog-row .s { font-family: var(--font-display); font-weight: 800; font-size: 17px; text-align: right; font-variant-numeric: tabular-nums; }
.plog-row .g { text-align: right; font-family: var(--font-display); font-weight: 800; font-size: 15px; color: #fff; }
.plog-row .g.zero { color: var(--muted-2); font-weight: 600; }
.player-card, .scorer { cursor: pointer; }
.player-card:focus-visible { outline-offset: -2px; }
body.modal-open { overflow: hidden; }

@media (max-width: 1180px) { .article-grid { grid-template-columns: 1fr; } .article-side { position: static; grid-template-columns: 1fr 1fr; } }
@media (max-width: 960px) { .news-list-grid { grid-template-columns: 1fr 1fr; } .player-modal { grid-template-columns: 1fr; } .player-modal .photo { min-height: 0; aspect-ratio: 4 / 3; } .pstats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
  .news-list-grid { grid-template-columns: 1fr; }
  .article-side { grid-template-columns: 1fr; }
  .match-card { min-height: 380px; }
  .match-card .team-col img, .match-card .crest-fallback { width: 84px; height: 84px; }
  .match-card .score { font-size: 56px; min-width: 80px; }
  .plog-row { grid-template-columns: 52px 24px minmax(0, 1fr) 48px; }
  .plog-row .g { display: none; }
  .pbar { grid-template-columns: 100px 1fr 40px; }
}

/* v3.1: Wappen aus Pixeln im Hero, Beitragsmodell ---------------------------- */
.hero-pixels { position: absolute; inset: 0; z-index: -1; width: 100%; height: 100%; pointer-events: none; will-change: transform; transition: transform 0.6s var(--ease); }
.fee-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr); gap: 20px; align-items: start; }
.fee-model { display: grid; gap: 16px; }
.fee-block { border-radius: var(--radius-l); border: 1px solid var(--line); background: linear-gradient(180deg, #16161a, #0e0e11); padding: 22px; }
.fee-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); font-weight: 800; margin-bottom: 14px; display: flex; gap: 10px; align-items: center; }
.fee-label span { color: var(--muted-2); font-weight: 700; letter-spacing: 0.1em; text-transform: none; font-size: 11px; }
.fee-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.fee-options.addons { grid-template-columns: repeat(3, 1fr); }
.fee-option { position: relative; display: grid; gap: 4px; padding: 16px 16px 14px; border-radius: 14px; border: 1px solid var(--line-strong); background: rgba(255, 255, 255, 0.03); cursor: pointer; transition: background 0.25s, border-color 0.25s, transform 0.3s var(--ease); }
.fee-option:hover { background: rgba(255, 255, 255, 0.07); transform: translateY(-2px); }
.fee-option.on { background: #fff; color: #0a0a0b; border-color: #fff; }
.fee-option input { position: absolute; inset: 0; opacity: 0; margin: 0; cursor: pointer; }
.fee-option .fee-name { font-family: var(--font-display); font-style: italic; font-size: 22px; font-weight: 800; text-transform: uppercase; line-height: 1; }
.fee-option .fee-price { font-family: var(--font-display); font-size: 34px; font-weight: 900; line-height: 1; }
.fee-option .fee-price small { font-family: var(--font-body); font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-2); margin-left: 6px; }
.fee-option.on .fee-price small { color: #6f6f78; }
.fee-option .fee-price.plus { font-size: 26px; }
.fee-option .fee-text { font-size: 12.5px; color: var(--muted); line-height: 1.4; }
.fee-option.on .fee-text { color: #55555e; }
.fee-option .fee-icon { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; background: rgba(255, 255, 255, 0.1); margin-bottom: 4px; }
.fee-option.on .fee-icon { background: #0a0a0b; color: #fff; }
.fee-option .fee-icon svg { width: 18px; height: 18px; }
.fee-option.addon::after { content: ""; position: absolute; top: 14px; right: 14px; width: 18px; height: 18px; border-radius: 5px; border: 1.5px solid var(--line-strong); }
.fee-option.addon.on::after { border-color: #0a0a0b; background: #0a0a0b url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12l4 4L19 6'/></svg>") center / 12px no-repeat; }
.fee-summary { position: sticky; top: calc(var(--header-h) + 18px); border-radius: var(--radius-l); border: 1px solid var(--line-strong); padding: 26px; background: linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)); box-shadow: var(--shadow); display: grid; gap: 16px; }
.fee-total { display: flex; align-items: baseline; gap: 10px; }
.fee-total b { font-family: var(--font-display); font-style: italic; font-weight: 900; font-size: clamp(56px, 6vw, 84px); line-height: 0.9; }
.fee-total small { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); font-weight: 800; }
.fee-lines { display: grid; gap: 6px; border-top: 1px solid var(--line); padding-top: 12px; font-size: 14px; color: var(--muted); }
.fee-lines li { display: flex; justify-content: space-between; gap: 12px; }
.fee-lines b { color: #fff; font-family: var(--font-display); font-size: 17px; }
.fee-highlights { display: grid; gap: 8px; border-top: 1px solid var(--line); padding-top: 12px; }
.fee-highlights div { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--muted); }
.fee-highlights b { font-family: var(--font-display); font-style: italic; font-size: 22px; font-weight: 900; color: #fff; min-width: 74px; }
.fee-summary .btn { width: 100%; }
.facts div b { max-width: 60%; }
@media (max-width: 960px) { .fee-grid { grid-template-columns: 1fr; } .fee-summary { position: static; } .fee-options.addons { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .fee-options { grid-template-columns: 1fr; } }

/* v3.2: Mobile-Feinschliff ------------------------------------------------ */
.club-name .short { display: none; }
.slider-count { display: block; text-align: center; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-2); font-weight: 800; padding: 6px 0 2px; }
.mm-extra { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.mm-extra a { display: inline-flex; align-items: center; gap: 8px; height: 40px; padding: 0 14px; border-radius: 8px; border: 1px solid var(--line-strong); font-family: var(--font-body); font-style: normal; font-size: 12px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; line-height: 1; }
.mm-extra a svg { width: 16px; height: 16px; }
@media (max-width: 640px) {
  /* Hero: „Zuletzt“ kürzer, Karte kompakter */
  .result-chips { gap: 6px; margin-top: 26px; }
  .result-chips .chip { height: 32px; padding: 0 10px 0 5px; font-size: 14px; gap: 6px; }
  .result-chips .chip .res { width: 22px; height: 22px; font-size: 12px; }
  .result-chips .chip:nth-child(n+5) { display: none; }
  .next-card { padding: 20px 18px 22px; }
  .next-teams { margin: 18px 0 14px; }
  .team-col img, .team-col .crest-fallback { width: 76px; height: 76px; }
  .team-col .name { font-size: 17px; }
  .countdown b { font-size: 26px; }
  /* Tabelle: kompakt, Kurznamen */
  .league-table th, .league-table td { padding: 10px 7px; font-size: 14px; }
  .league-table th:first-child, .league-table td:first-child { padding-left: 12px; }
  .league-table th:last-child, .league-table td:last-child { padding-right: 12px; }
  .league-table .rank { width: 44px; font-size: 17px; }
  .trend { width: 6px; height: 6px; margin-right: 6px; }
  .league-table .club-cell { gap: 8px; font-size: 14px; }
  .league-table .club-cell img, .league-table .club-cell .crest-fallback { width: 26px; height: 26px; font-size: 9px; }
  .club-name .full { display: none; }
  .club-name .short { display: inline; }
  .league-table .pts { font-size: 19px; }
  .table-foot { padding: 12px 14px; font-size: 11px; }
  /* News: nur die neuesten drei, Rest über „Alle Beiträge“ */
  .news-grid .news-card:nth-child(n+4) { display: none; }
  .news-card .body { padding: 18px; }
  .news-card h3 { font-size: 24px; }
  /* Vorteile: zwei kompakte Spalten */
  .perk-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .perk { padding: 14px 14px 12px; gap: 8px; }
  .perk .icon { width: 32px; height: 32px; border-radius: 8px; }
  .perk .icon svg { width: 16px; height: 16px; }
  .perk .value { font-size: 30px; }
  .perk .title { font-size: 12.5px; }
  .perk .partner { min-height: 34px; padding-top: 8px; }
  .perk .partner img { max-height: 26px; }
  .perk .partner .name-only { font-size: 13px; }
  .perk .cta { font-size: 10.5px; }
  .perk-note { font-size: 11px; }
  /* Verein: Fakten */
  .facts { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .fact small { font-size: 9.5px; letter-spacing: 0.08em; }
  /* Beitragsmodell: Beiträge nebeneinander, Module als Zeilen */
  .fee-block { padding: 16px; }
  .fee-options { grid-template-columns: 1fr 1fr; gap: 8px; }
  .fee-option { padding: 14px 12px 12px; }
  .fee-option .fee-name { font-size: 19px; }
  .fee-option .fee-price { font-size: 28px; }
  .fee-option .fee-text { font-size: 12px; }
  .fee-options.addons { grid-template-columns: 1fr; }
  .fee-option.addon { grid-template-columns: auto minmax(0, 1fr) auto; grid-template-areas: "icon name price" "icon text price"; column-gap: 12px; row-gap: 2px; align-items: center; padding: 12px 14px; }
  .fee-option.addon .fee-icon { grid-area: icon; margin: 0; }
  .fee-option.addon .fee-name { grid-area: name; font-size: 18px; }
  .fee-option.addon .fee-text { grid-area: text; }
  .fee-option.addon .fee-price.plus { grid-area: price; font-size: 24px; }
  .fee-option.addon::after { display: none; }
  .fee-summary { padding: 20px; }
  .fee-total b { font-size: 56px; }
  /* Spielplan: kompakte Zeilen */
  .match-row { grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); grid-template-areas: "when when comp" "home score away"; gap: 10px 8px; padding: 12px 14px; }
  .match-row .when { grid-area: when; display: flex; align-items: baseline; gap: 8px; font-size: 12px; }
  .match-row .when b { display: inline; font-size: 17px; }
  .match-row .comp { grid-area: comp; display: block; font-size: 10px; align-self: center; }
  .match-row .comp b { display: none; }
  .match-row .club { flex-direction: column; text-align: center; justify-content: flex-start; gap: 6px; font-size: 12.5px; line-height: 1.2; }
  .match-row .club.home { grid-area: home; }
  .match-row .club.away { grid-area: away; justify-content: flex-start; text-align: center; }
  .match-row .club span { white-space: normal; max-width: 100%; }
  .match-row .club img, .match-row .club .crest-fallback { width: 40px; height: 40px; }
  .match-row .score { grid-area: score; text-align: center; min-width: 64px; font-size: 26px; }
  .month-label { font-size: 22px; margin: 22px 0 8px; }
  /* Abstände */
  .section { padding: 56px 0; }
  .section-head { margin-bottom: 22px; }
  .section-title { font-size: clamp(38px, 11vw, 56px); }
}
@media (max-width: 420px) {
  .perk-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .result-chips .label { flex-basis: 100%; margin: 0 0 2px; }
  .league-table { min-width: 0; width: 100%; }
  .league-table td.club { max-width: 0; }
  .league-table .club-cell { min-width: 0; }
  .club-name { display: block; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .table-wrap { overflow-x: hidden; }
}
