/* ─────────────────── BASE ─────────────────── */
:root {
  --navy: #0a1b35;
  --navy-2: #0e2545;
  --navy-3: #142f57;
  --blue: #3e8edf;
  --blue-2: #6fb1e6;
  --gold: #e9bf5e;
  --gold-2: #d9b15a;
  --paper: #f3efe6;
  --ink: #0a1b35;
  --accent: #e9bf5e;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Archivo", "Helvetica Neue", Arial, sans-serif;
  font-feature-settings: "ss01", "cv11";
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: none; }

@font-face {
  font-family: "InstrumentSerif";
  src: local("Instrument Serif");
}

/* tag families */
.app { width: 100%; }
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); display: inline-block; vertical-align: middle;
}
.dot.live { background: #ff3838; box-shadow: 0 0 12px #ff3838; }
.dot.pulse { animation: pulse 1.4s infinite; }
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

/* motion off */
html[data-motion="off"] *,
html[data-motion="off"] *::before,
html[data-motion="off"] *::after {
  animation-duration: 0s !important;
  animation-iteration-count: 1 !important;
  transition: none !important;
}

/* ═══════════════════════════════════════════════════
   HERO — EDITORIAL
   ═══════════════════════════════════════════════════ */

.hero-editorial {
  background: var(--paper);
  color: var(--navy);
  height: 100vh;
  min-height: 720px;
  position: relative;
  overflow: hidden;
  padding: 28px 40px 0;
  display: flex; flex-direction: column;
}

/* roman noise field */
.ed-roman-field {
  position: absolute; inset: 0;
  pointer-events: none;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 60px 0;
  z-index: 0;
}
.ed-roman-row {
  white-space: nowrap;
  font-family: "Geist Mono", monospace;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--navy);
  animation: drift 60s linear infinite;
}
@keyframes drift {
  from { transform: translateX(0); }
  to { transform: translateX(-30%); }
}

/* drifting LEISACH parallax band */
.ed-drift-name {
  position: absolute;
  top: 22%;
  left: 0;
  width: 220%;
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(180px, 28vw, 460px);
  line-height: 0.8;
  letter-spacing: -0.04em;
  color: #14304f;
  opacity: 0.18;
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
}

/* THE II — sculptural centerpiece */
.ed-ii-stage {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  z-index: 3;
  transition: transform 0.4s cubic-bezier(.2,.7,.3,1);
  animation: iiBreathe 6s ease-in-out infinite;
}
@keyframes iiBreathe {
  0%, 100% { filter: drop-shadow(0 20px 40px rgba(10,27,53,0.15)); }
  50% { filter: drop-shadow(0 30px 70px rgba(10,27,53,0.25)); }
}
.ed-ii-shadow { animation: iiShadowDrift 8s ease-in-out infinite; }
@keyframes iiShadowDrift {
  0%, 100% { transform: translate(14px, 14px); }
  50% { transform: translate(20px, 20px); }
}
.ed-ii-stripe { animation: iiStripeDrift 10s ease-in-out infinite; }
@keyframes iiStripeDrift {
  0%, 100% { transform: translate(28px, 28px); opacity: 0.55; }
  50% { transform: translate(34px, 34px); opacity: 0.7; }
}
.ed-ii-glyph,
.ed-ii-shadow,
.ed-ii-stripe {
  position: absolute;
  font-family: "Instrument Serif", "Times New Roman", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(420px, 78vh, 880px);
  line-height: 0.8;
  letter-spacing: -0.04em;
  user-select: none;
}
.ed-ii-glyph {
  color: var(--navy);
  z-index: 3;
}
.ed-ii-shadow {
  color: var(--accent);
  transform: translate(14px, 14px);
  z-index: 2;
  opacity: 0.95;
}
.ed-ii-stripe {
  color: transparent;
  background: repeating-linear-gradient(
    -8deg,
    var(--blue) 0,
    var(--blue) 3px,
    transparent 3px,
    transparent 9px
  );
  -webkit-background-clip: text;
  background-clip: text;
  transform: translate(28px, 28px);
  opacity: 0.55;
  z-index: 1;
}

/* gold star accents */
.ed-stars {
  position: absolute; inset: 0; pointer-events: none; z-index: 4;
}
.ed-star {
  position: absolute;
  color: var(--accent);
  font-family: "Newsreader", Georgia, serif;
  animation: starpulse 4s ease-in-out infinite;
}
.ed-star-1 { top: 22%; left: 18%; font-size: 32px; animation-delay: 0s; }
.ed-star-2 { top: 66%; right: 20%; font-size: 24px; animation-delay: 1.2s; }
.ed-star-3 { top: 38%; right: 28%; font-size: 18px; animation-delay: 0.6s; opacity: 0.7; }
.ed-star-4 { bottom: 28%; left: 26%; font-size: 28px; animation-delay: 2s; }
@keyframes starpulse {
  0%, 100% { opacity: 0.4; transform: scale(1) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.2) rotate(45deg); }
}

/* edge labels — small italic text on sides */
.ed-edge-l, .ed-edge-r {
  position: absolute;
  top: 50%;
  transform-origin: center;
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--navy);
  display: flex; flex-direction: column; gap: 24px;
  z-index: 5;
  text-transform: uppercase;
  opacity: 0.7;
}
.ed-edge-l {
  left: 16px;
  transform: translateY(-50%) rotate(-90deg);
}
.ed-edge-r {
  right: 16px;
  transform: translateY(-50%) rotate(90deg);
}
.ed-edge-num {
  font-style: normal;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.ed-meta {
  font-size: 11px; letter-spacing: 0.18em; font-weight: 700;
  justify-self: end;
  display: flex; flex-direction: column; align-items: flex-end; gap: 2px;
  font-family: "Geist Mono", monospace;
  font-style: normal;
}
.ed-meta-coord { opacity: 0.55; }
.ed-meta-time { color: var(--accent); font-weight: 800; }

/* bottom claim bar */
.ed-bottom-bar {
  position: relative;
  z-index: 6;
  margin-top: auto;
  display: grid; grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: end;
  padding-bottom: 30px;
}
.ed-claim {
  display: grid; grid-template-columns: auto 1fr;
  gap: 14px;
  max-width: 520px;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.15;
  color: var(--navy);
  font-style: italic;
}
.ed-claim p { margin: 0; }
.ed-claim p em { color: var(--blue); }
.ed-claim p u { text-decoration-color: var(--accent); text-decoration-thickness: 4px; text-underline-offset: 6px; }
.ed-claim-mark {
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-size: 44px;
  line-height: 0.8;
  color: var(--accent);
}

.ed-topbar {
  position: relative; z-index: 7;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(10, 27, 53, 0.18);
}
.ed-mark { display: flex; align-items: center; gap: 14px; }
.ed-monogram {
  width: 48px; height: 48px;
  background: var(--navy);
  color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.ed-monogram::after {
  content: "";
  position: absolute; bottom: 0; left: 0; right: 0; height: 30%;
  background: var(--accent);
}
.ed-monogram-l {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-size: 22px;
  position: absolute; top: 4px; left: 7px;
  letter-spacing: -0.04em;
  z-index: 2;
}
.ed-monogram-ii {
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  position: absolute; bottom: 0px; right: 6px;
  color: var(--paper);
  z-index: 2;
  line-height: 1;
}
.ed-mark-1 { font-weight: 800; font-size: 18px; letter-spacing: 0.02em; }
.ed-mark-2 { font-size: 10px; opacity: 0.55; letter-spacing: 0.18em; margin-top: 2px; }
.ed-nav { display: flex; gap: 28px; justify-content: center; align-items: center; }
.ed-nav-soon {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.28em;
  font-weight: 600;
  color: var(--navy);
  padding: 8px 16px;
  border: 1px solid rgba(10,27,53,0.25);
  border-radius: 999px;
  background: rgba(255,255,255,0.4);
  backdrop-filter: blur(6px);
}
.ed-nav-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.6s infinite;
  box-shadow: 0 0 8px var(--accent);
}
.ed-nav a {
  font-size: 12px; letter-spacing: 0.16em; font-weight: 600;
  text-transform: uppercase; cursor: pointer; color: var(--navy);
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.04em;
  font-size: 16px;
  text-transform: none;
}
.ed-meta {
  font-size: 11px; letter-spacing: 0.18em; font-weight: 700;
  justify-self: end; display: flex; gap: 8px; align-items: center;
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
}

.ed-stage {
  position: relative; z-index: 4;
  flex: 1;
  display: grid; grid-template-rows: auto 1fr auto;
  padding: 30px 0 0;
}
.ed-stage-top {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; letter-spacing: 0.22em; font-weight: 700;
  color: var(--navy); opacity: 0.7;
}
.ed-coords { display: flex; gap: 22px; }
.ed-coords span { font-family: "Geist Mono", monospace; }
.ed-vol {
  font-family: "Newsreader", Georgia, serif;
  font-style: italic; font-weight: 400;
  font-size: 16px; letter-spacing: 0.04em;
  opacity: 0.9;
}
.ed-headline {
  font-family: "InstrumentSerif", "Times New Roman", Georgia, serif;
  font-weight: 400;
  font-size: clamp(72px, 13vw, 200px);
  line-height: 0.86;
  letter-spacing: -0.03em;
  margin: 24px 0;
  color: var(--navy);
  align-self: center;
  position: relative;
}
.ed-line { display: block; }
.ed-line em { font-style: italic; color: var(--blue); }
.ed-line u { text-decoration-color: var(--accent); text-decoration-thickness: 6px; text-underline-offset: 8px; }
.ed-line-shift {
  display: block; padding-left: 18vw;
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 0.62em;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--blue);
}
.ed-line em { font-style: italic; color: var(--accent); }

.ed-stage-bottom {
  display: grid; grid-template-columns: 1fr auto;
  align-items: end;
  gap: 60px;
  padding-bottom: 30px;
}
.ed-claim {
  display: grid; grid-template-columns: auto 1fr;
  gap: 14px;
  max-width: 460px;
  font-family: "Newsreader", Georgia, serif;
  font-size: 17px;
  line-height: 1.45;
  color: rgba(10,27,53,0.85);
}
.ed-claim p { margin: 0; }
.ed-claim p em { font-style: italic; color: var(--blue); }
.ed-claim p i { display: block; font-size: 12px; opacity: 0.55; margin-top: 8px; letter-spacing: 0.04em; }
.ed-claim-mark {
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-size: 36px;
  line-height: 0.9;
  color: var(--accent);
}
.ed-scroll {
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
  font-size: 10px; letter-spacing: 0.3em; font-weight: 700;
}
.ed-scroll-line {
  width: 1px; height: 60px;
  background: rgba(10,27,53,0.2);
  position: relative; overflow: hidden;
}
.ed-scroll-line span {
  position: absolute; top: 0; left: 0; right: 0;
  height: 30%;
  background: var(--navy);
  animation: scrolltick 2.4s ease-in-out infinite;
}
@keyframes scrolltick {
  0% { transform: translateY(-100%); }
  60% { transform: translateY(330%); }
  100% { transform: translateY(330%); }
}

.ed-marquee {
  position: relative; z-index: 7;
  margin: 0 -40px;
  padding: 16px 0;
  background: var(--navy); color: var(--paper);
  overflow: hidden;
  border-top: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
}
.ed-marquee-track {
  white-space: nowrap;
  animation: marquee 60s linear infinite;
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.04em;
}
.ed-marquee-track span { padding-right: 30px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════
   HERO — BROADCAST
   ═══════════════════════════════════════════════════ */

.hero-broadcast {
  background: #050a17;
  color: white;
  min-height: 100vh;
  position: relative;
  padding: 24px 40px 0;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.bc-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(62,142,223,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(62,142,223,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 80%);
}
.bc-scanline {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent 0,
    transparent 3px,
    rgba(255,255,255,0.015) 3px,
    rgba(255,255,255,0.015) 4px
  );
  pointer-events: none;
}

.bc-topbar {
  position: relative; z-index: 2;
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--accent);
}
.bc-channel { display: flex; align-items: center; gap: 14px; }
.bc-ch-logo {
  width: 56px; height: 56px; border-radius: 6px;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  padding: 6px;
}
.bc-ch-logo img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 0 0); }
.bc-ch-1 { font-weight: 900; font-size: 15px; letter-spacing: 0.12em; }
.bc-ch-2 { font-size: 10px; letter-spacing: 0.22em; opacity: 0.6; margin-top: 4px; }
.bc-clock {
  font-family: "Geist Mono", "SF Mono", monospace;
  font-size: 13px; letter-spacing: 0.1em;
  display: flex; align-items: center; gap: 10px;
}

.bc-stage {
  position: relative; z-index: 2;
  flex: 1;
  padding: 60px 0 30px;
  display: grid; grid-template-rows: auto 1fr auto;
}
.bc-tag {
  align-self: start;
  font-family: "Geist Mono", monospace;
  font-size: 12px; letter-spacing: 0.3em;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 6px 14px;
  display: inline-block; width: max-content;
}
.bc-headline {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-size: clamp(120px, 22vw, 360px);
  line-height: 0.82;
  letter-spacing: -0.04em;
  margin: 18px 0;
  text-transform: uppercase;
}
.bc-headline-italic {
  font-family: "InstrumentSerif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.bc-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.18);
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.bc-stat {
  padding: 22px 0;
  border-right: 1px solid rgba(255,255,255,0.12);
  text-align: left;
  padding-left: 4px;
}
.bc-stat:last-child { border-right: 0; }
.bc-stat-v {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-size: 56px; line-height: 1;
  letter-spacing: -0.03em;
}
.bc-stat-l {
  font-size: 11px; letter-spacing: 0.22em; opacity: 0.55;
  margin-top: 8px; font-weight: 700;
}

.bc-lower-third {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr auto;
  gap: 30px;
  padding: 24px 24px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent) 60%, transparent 100%);
  color: var(--navy);
  margin: 0 -40px;
  align-items: center;
}
.bc-lt-tag { font-size: 10px; letter-spacing: 0.3em; font-weight: 800; }
.bc-lt-main {
  font-weight: 900; font-size: clamp(20px, 3vw, 32px);
  letter-spacing: 0.02em;
  margin-top: 4px;
}
.bc-lt-main span { font-style: italic; font-family: "InstrumentSerif", serif; font-weight: 400; opacity: 0.6; padding: 0 8px; }
.bc-lt-sub { font-size: 12px; letter-spacing: 0.14em; font-weight: 600; margin-top: 4px; opacity: 0.85; }
.bc-cd { display: flex; gap: 18px; }
.bc-cd > div { text-align: center; }
.bc-cd b {
  font-family: "Geist Mono", monospace;
  font-weight: 800; font-size: 36px;
  display: block; line-height: 1;
}
.bc-cd span { font-size: 9px; letter-spacing: 0.22em; opacity: 0.7; font-weight: 700; }

.bc-ticker {
  position: relative; z-index: 2;
  margin: 0 -40px;
  background: #ff3838;
  color: white;
  display: flex; align-items: stretch;
  border-top: 1px solid rgba(0,0,0,0.2);
}
.bc-ticker-label {
  background: #050a17; color: #ff3838;
  padding: 14px 22px;
  font-weight: 900; letter-spacing: 0.22em; font-size: 12px;
  border-right: 2px solid #ff3838;
}
.bc-ticker-track {
  flex: 1; overflow: hidden;
  display: flex; align-items: center;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  padding: 14px 0;
}
.bc-ticker-track span {
  padding: 0 30px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════
   HERO — EXPERIMENTAL
   ═══════════════════════════════════════════════════ */

.hero-exp {
  background: radial-gradient(ellipse at 30% 0%, #1a3a72 0%, #08152a 50%, #04060c 100%);
  color: white;
  min-height: 100vh;
  position: relative; overflow: hidden;
  padding: 28px 40px 60px;
  display: flex; flex-direction: column;
}
.ex-mountains {
  position: absolute; bottom: 0; left: 0; right: 0; height: 60%;
}
.ex-mountains svg { width: 100%; height: 100%; }
.ex-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(62,142,223,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(62,142,223,0.08) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 35%, black 0%, transparent 80%);
}
.ex-orb {
  position: absolute;
  width: 600px; height: 600px;
  top: 15%; left: 30%;
  background: radial-gradient(circle, rgba(62,142,223,0.4) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  transition: transform 0.5s cubic-bezier(.2,.7,.3,1);
}
.ex-orb-2 {
  top: 40%; left: 60%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(233,191,94,0.25) 0%, transparent 70%);
}

.ex-topbar {
  position: relative; z-index: 3;
  display: flex; justify-content: space-between; align-items: center;
}
.ex-mark { display: flex; align-items: center; gap: 12px; }
.ex-mark img { width: 44px; height: 44px; }
.ex-mark span { font-weight: 900; letter-spacing: 0.08em; font-size: 16px; }
.ex-topbar nav { display: flex; gap: 26px; }
.ex-topbar nav a {
  font-size: 11px; letter-spacing: 0.22em; font-weight: 600;
  cursor: pointer; opacity: 0.8;
}

.ex-stage {
  position: relative; z-index: 3;
  flex: 1;
  display: flex; flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 0;
}
.ex-eyebrow {
  font-size: 11px; letter-spacing: 0.3em;
  display: flex; align-items: center; gap: 10px;
  color: var(--accent);
  margin-bottom: 30px;
  font-weight: 600;
}
.ex-headline {
  font-family: "InstrumentSerif", Georgia, serif;
  font-weight: 400;
  font-size: clamp(80px, 13vw, 200px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin: 0;
  transition: transform 0.3s cubic-bezier(.2,.7,.3,1);
}
.ex-headline span { display: block; }
.ex-h-1 { color: white; }
.ex-h-2 { color: var(--accent); font-style: italic; }
.ex-h-3 { color: var(--blue-2); }
.ex-h-4 {
  color: white; font-style: italic;
  background: linear-gradient(90deg, white, var(--accent), var(--blue));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ex-glass {
  margin-top: 40px;
  width: min(720px, 90%);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 22px 28px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}
.ex-glass-row {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  text-align: left;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.ex-g-l { font-size: 10px; letter-spacing: 0.24em; opacity: 0.6; font-weight: 700; }
.ex-g-v { font-weight: 800; font-size: 16px; margin-top: 6px; letter-spacing: 0.02em; }
.ex-mono { font-family: "Geist Mono", monospace; font-weight: 700; }
.ex-cta {
  margin-top: 18px;
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  background: white; color: var(--navy);
  border-radius: 12px;
  font-weight: 800; letter-spacing: 0.12em; font-size: 12px;
  transition: all 0.2s;
}
.ex-cta:hover { background: var(--accent); transform: translateY(-2px); }
.ex-cta-arrow { font-size: 18px; }

/* ═══════════════════════════════════════════════════
   SHARED SECTIONS
   ═══════════════════════════════════════════════════ */

.sec-label {
  display: flex; align-items: baseline; gap: 14px;
  padding: 0 40px;
  margin-bottom: 28px;
  font-size: 11px; letter-spacing: 0.22em; font-weight: 700;
}
.sec-n {
  font-family: "InstrumentSerif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--blue);
  font-size: 22px; letter-spacing: 0;
}
.sec-t { color: var(--navy); }
.sec-k { color: rgba(10,27,53,0.45); }

/* SPARTE SELECT — die einzige Sektion */
.ss {
  background: var(--paper);
  color: var(--navy);
  padding: 100px 40px 120px;
  position: relative;
}
.ss-eyebrow {
  display: flex; align-items: center; gap: 24px;
  justify-content: center;
  margin-bottom: 60px;
}
.ss-eyebrow-line {
  flex: 0 0 80px;
  height: 1px;
  background: var(--navy);
  opacity: 0.4;
}
.ss-eyebrow-text {
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0.16em;
  color: var(--navy);
}
.ss-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.6;
  margin: 0 auto 28px;
  max-width: 600px;
}
.ss-hint-icon {
  font-size: 14px;
  display: inline-block;
  animation: ssHintBounce 1.8s ease-in-out infinite;
  letter-spacing: 0;
}
@keyframes ssHintBounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(4px); }
}

.ss-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid rgba(10,27,53,0.2);
  border-bottom: 1px solid rgba(10,27,53,0.2);
}
.ss-card {
  position: relative;
  padding: 60px 50px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(.2,.7,.3,1);
  min-height: 360px;
}
.ss-card:hover { background: var(--navy); color: var(--paper); }
.ss-card-bg {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.ss-bg-num {
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-size: clamp(280px, 32vw, 480px);
  line-height: 0.8;
  color: var(--accent);
  opacity: 0;
  transform: translateY(30px) scale(0.92);
  transition: all 0.6s cubic-bezier(.2,.7,.3,1);
}
.ss-card:hover .ss-bg-num { opacity: 0.18; transform: translateY(0) scale(1); }
.ss-card-inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  height: 100%;
}
.ss-card-tag {
  font-family: "Geist Mono", monospace;
  font-size: 11px; letter-spacing: 0.3em;
  font-weight: 700;
  opacity: 0.5;
}
.ss-card-title {
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(72px, 9vw, 140px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 16px 0 8px;
}
.ss-card-sub {
  font-family: "Archivo", sans-serif;
  font-size: 14px; letter-spacing: 0.08em;
  font-weight: 600;
  opacity: 0.7;
  margin-bottom: 30px;
}
.ss-card-soon {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "Geist Mono", monospace;
  font-size: 11px; letter-spacing: 0.3em; font-weight: 700;
  margin-top: auto;
  opacity: 0.7;
}
.ss-soon-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.6s infinite;
}
.ss-card-arrow {
  position: absolute;
  top: 50px; right: 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: 36px;
  opacity: 0; transform: translateX(-12px);
  transition: all 0.4s;
  color: var(--accent);
}
.ss-card:hover .ss-card-arrow { opacity: 1; transform: translateX(0); }

/* Vertical card layout — logo on top, text centered below */
.ss-card {
  min-height: 480px;
  padding: 56px 40px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.ss-card-inner {
  align-items: center;
  text-align: center;
  padding-right: 0;
  margin-top: 24px;
  width: 100%;
}
.ss-card .ss-card-tag { letter-spacing: 0.34em; }
.ss-card .ss-card-arrow {
  position: static;
  margin-top: 18px;
  align-self: center;
}
.ss-card .ss-card-soon { margin-top: 16px; }
.ss-card-link {
  text-decoration: none;
  color: inherit;
}
.ss-card-link .ss-card-soon { color: var(--accent); }
.ss-card-link:hover .ss-card-soon { color: var(--navy); }

/* New explicit CTA button on the cards — much clearer "click to navigate" */
.ss-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding: 14px 22px 14px 24px;
  background: var(--navy);
  color: var(--paper);
  font-family: "Big Shoulders Display", "Archivo", sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.3s, color 0.3s, transform 0.3s, padding 0.3s;
}
.ss-card-cta-arrow {
  font-size: 18px;
  transition: transform 0.3s;
  display: inline-block;
}
.ss-card-link:hover { background: var(--navy); }
.ss-card-link:hover .ss-card-cta {
  background: var(--accent);
  color: var(--navy);
  padding-right: 28px;
}
.ss-card-link:hover .ss-card-cta-arrow {
  transform: translateX(4px);
}
.ss-card-cta-disabled {
  background: rgba(10,27,53,0.12);
  color: var(--navy);
  opacity: 0.7;
  cursor: not-allowed;
}
.ss-card-disabled { cursor: not-allowed; }
.ss-card-disabled:hover { background: var(--paper); color: var(--navy); }
.ss-card-disabled:hover .ss-card-cta { background: rgba(10,27,53,0.12); color: var(--navy); }

/* "LIVE" / "BALD" badge on cards */
.ss-card-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 4;
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.28em;
  font-weight: 700;
  background: var(--accent);
  color: var(--navy);
  padding: 5px 11px;
  border-radius: 1px;
  text-transform: uppercase;
}
.ss-card-badge::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  background: #c0392b;
  border-radius: 50%;
  margin-right: 7px;
  vertical-align: 1px;
  animation: ssBadgePulse 1.4s ease-in-out infinite;
}
.ss-card-badge-soon {
  background: rgba(10,27,53,0.85);
  color: var(--paper);
}
.ss-card-badge-soon::before {
  background: var(--accent);
  animation: none;
  opacity: 0.7;
}
@keyframes ssBadgePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.7); }
}

/* Sparte logo — centered top showcase */
.ss-card-logo {
  position: relative;
  width: 200px;
  height: 200px;
  object-fit: contain;
  z-index: 2;
  transition:
    transform 0.7s cubic-bezier(.2,.7,.3,1),
    filter 0.5s,
    box-shadow 0.5s;
  pointer-events: none;
  filter: drop-shadow(0 12px 28px rgba(10,27,53,0.3));
  animation: logoFloat 6s ease-in-out infinite;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* Racing logo (line art on white) — wrapped in a generous white medallion */
.ss-card-logo-racing {
  background: #fff;
  border-radius: 50%;
  padding: 30px;
  box-shadow:
    0 14px 32px rgba(10,27,53,0.22),
    0 0 0 1px rgba(10,27,53,0.08) inset;
}

/* Soft radial gold glow behind the logo */
.ss-card::after {
  content: "";
  position: absolute;
  top: 56px;
  left: 50%;
  width: 360px;
  height: 360px;
  transform: translateX(-50%);
  background: radial-gradient(circle at center, rgba(233,191,94,0.22) 0%, rgba(233,191,94,0) 65%);
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
  transition: opacity 0.6s;
}
.ss-card:hover::after { opacity: 1; }

/* Hover — logo pops forward */
.ss-card:hover .ss-card-logo {
  animation-play-state: paused;
  transform: translateY(-6px) rotate(-3deg) scale(1.06);
  filter: drop-shadow(0 18px 40px rgba(10,27,53,0.42));
}
.ss-card-fussball:hover .ss-card-logo {
  filter: drop-shadow(0 18px 44px rgba(0,0,0,0.55));
}
.ss-card-racing:hover .ss-card-logo-racing {
  box-shadow:
    0 20px 44px rgba(0,0,0,0.4),
    0 0 0 1px rgba(255,255,255,0.18);
}

/* The big roman numeral — keep behind the title */
.ss-card .ss-card-bg { justify-content: center; }
.ss-card .ss-bg-num { font-size: clamp(220px, 26vw, 380px); }
.ss-card:hover .ss-card-title { transform: none; }

.ss-divider {
  display: flex; align-items: center; justify-content: center;
  width: 1px;
  background: rgba(10,27,53,0.2);
  position: relative;
}
.ss-divider span {
  position: absolute;
  background: var(--paper);
  padding: 12px;
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-size: 22px;
  color: var(--accent);
}

.ss-foot {
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1280px;
  margin: 40px auto 0;
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.18em;
  opacity: 0.55;
}
.ss-foot-mid { font-style: normal; font-family: "Geist Mono", monospace; font-size: 11px; }

/* dead — keep selector to avoid layout shift if cached */
.ds {
  background: var(--paper);
  color: var(--navy);
  padding: 80px 0;
}
.ds-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; padding: 0 40px;
}
.ds-card {
  border: 1px solid rgba(10,27,53,0.18);
  padding: 36px 32px;
  cursor: pointer;
  transition: all 0.25s;
  background: rgba(255,255,255,0.4);
  position: relative;
}
.ds-card:first-child { border-right: 0; }
.ds-card:hover { background: rgba(255,255,255,0.7); }
.ds-card.active {
  background: var(--navy);
  color: white;
}
.ds-card.active .ds-card-foot { color: var(--accent); }
.ds-card-num {
  font-family: "InstrumentSerif", Georgia, serif;
  font-style: italic; font-weight: 400;
  font-size: 18px; opacity: 0.5;
}
.ds-card-title {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin: 8px 0 6px;
}
.ds-card-sub { font-size: 13px; letter-spacing: 0.14em; font-weight: 600; opacity: 0.7; }
.ds-card-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0 12px;
  padding-top: 22px;
  border-top: 1px solid currentColor;
  border-color: rgba(10,27,53,0.2);
}
.ds-card.active .ds-card-stats { border-color: rgba(255,255,255,0.2); }
.ds-card-stats b {
  font-family: "InstrumentSerif", Georgia, serif;
  font-weight: 400;
  font-size: 38px; line-height: 1;
  display: block;
}
.ds-card-stats span { font-size: 10px; letter-spacing: 0.22em; opacity: 0.6; font-weight: 700; margin-top: 4px; display: block; }
.ds-card-foot { font-size: 10px; letter-spacing: 0.18em; opacity: 0.5; font-style: italic; margin-top: 8px; }

/* FIXTURES */
.fx {
  background: var(--navy);
  color: white;
  padding: 80px 0;
}
.fx .sec-t { color: white; }
.fx .sec-k { color: rgba(255,255,255,0.45); }
.fx .sec-n { color: var(--accent); }

.fx-list { padding: 0 40px; }
.fx-row {
  display: grid;
  grid-template-columns: 130px 2fr 1.2fr 130px 30px;
  gap: 30px;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  transition: all 0.2s;
}
.fx-row:hover { padding-left: 16px; background: linear-gradient(90deg, rgba(233,191,94,0.08), transparent); }
.fx-row:last-child { border-bottom: 1px solid rgba(255,255,255,0.1); }
.fx-date {
  font-weight: 800; font-size: 16px; letter-spacing: 0.06em;
}
.fx-date span { display: block; font-size: 12px; opacity: 0.5; font-weight: 600; margin-top: 2px; }
.fx-vs {
  display: flex; align-items: center; gap: 14px;
  font-weight: 800; font-size: clamp(18px, 2.4vw, 26px);
  letter-spacing: -0.01em;
}
.fx-x {
  font-family: "InstrumentSerif", Georgia, serif;
  font-style: italic; font-weight: 400;
  color: var(--accent);
  font-size: 1.3em;
}
.fx-venue { font-size: 13px; opacity: 0.6; letter-spacing: 0.04em; }
.fx-kind {
  font-size: 10px; letter-spacing: 0.22em; font-weight: 700;
  text-align: right;
  color: var(--accent);
}
.fx-arrow { color: var(--accent); font-size: 22px; opacity: 0.6; transition: transform 0.2s; }
.fx-row:hover .fx-arrow { transform: translateX(6px); opacity: 1; }

/* ROSTER */
.rs {
  background: var(--paper);
  padding: 80px 0;
}
.rs-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0 40px;
}
.rs-card {
  padding: 28px 22px;
  border: 1px solid rgba(10,27,53,0.18);
  margin: -1px 0 0 -1px;
  transition: all 0.25s;
  cursor: pointer;
  position: relative;
  background: rgba(255,255,255,0.3);
}
.rs-card:hover {
  background: var(--navy);
  color: white;
  transform: scale(1.02);
  z-index: 2;
}
.rs-num {
  font-family: "InstrumentSerif", Georgia, serif;
  font-style: italic; font-weight: 400;
  font-size: 60px; line-height: 1;
  color: var(--blue);
  letter-spacing: -0.03em;
}
.rs-card:hover .rs-num { color: var(--accent); }
.rs-name {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.01em;
  margin-top: 14px;
}
.rs-role {
  font-size: 11px; letter-spacing: 0.22em; font-weight: 700;
  opacity: 0.6;
  margin-top: 4px;
}
.rs-note {
  font-family: "InstrumentSerif", Georgia, serif;
  font-style: italic;
  font-size: 14px;
  opacity: 0.7;
  margin-top: 14px;
  line-height: 1.4;
}

/* TRIKOT */
.tk {
  background: linear-gradient(180deg, #0e2545 0%, #08152a 100%);
  color: white;
  padding: 100px 0 80px;
}
.tk .sec-t { color: white; }
.tk .sec-k { color: rgba(255,255,255,0.45); }
.tk .sec-n { color: var(--accent); }

.tk-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 0 40px;
  align-items: center;
}
.tk-img {
  position: relative;
  background: var(--paper);
  padding: 30px;
  border-radius: 4px;
}
.tk-img img { width: 100%; }
.tk-img-tag {
  position: absolute; top: 18px; right: 18px;
  background: var(--accent); color: var(--navy);
  padding: 6px 12px;
  font-size: 10px; letter-spacing: 0.18em; font-weight: 800;
}
.tk-block { margin-bottom: 30px; }
.tk-l { font-size: 11px; letter-spacing: 0.22em; font-weight: 700; opacity: 0.6; margin-bottom: 12px; }
.tk-swatches { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; font-size: 12px; font-weight: 600; letter-spacing: 0.06em; }
.tk-swatches > div { display: flex; align-items: center; gap: 10px; }
.tk-swatches span {
  width: 22px; height: 22px; border-radius: 4px; display: inline-block;
}
.tk-block ul { padding-left: 18px; margin: 0; font-size: 14px; line-height: 1.7; opacity: 0.8; }
.tk-stock { font-weight: 700; font-size: 16px; }
.tk-cta {
  margin-top: 16px;
  background: var(--accent); color: var(--navy);
  padding: 14px 22px;
  font-weight: 800; font-size: 12px; letter-spacing: 0.16em;
  border-radius: 4px;
  transition: transform 0.15s;
}
.tk-cta:hover { transform: translateY(-2px); }

/* MANIFEST */
.mf {
  background: var(--paper);
  padding: 140px 40px 100px;
  text-align: center;
}
.mf-num { font-size: 11px; letter-spacing: 0.3em; font-weight: 700; color: var(--blue); margin-bottom: 36px; }
.mf-h {
  font-family: "InstrumentSerif", Georgia, serif;
  font-weight: 400;
  font-size: clamp(36px, 5.5vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 1100px;
  margin: 0 auto;
  color: var(--navy);
  text-wrap: pretty;
}
.mf-h em { color: var(--blue); }
.mf-h u { text-decoration-color: var(--accent); text-decoration-thickness: 6px; text-underline-offset: 8px; }
.mf-foot { font-size: 11px; letter-spacing: 0.3em; font-weight: 700; opacity: 0.5; margin-top: 36px; }

/* SPONSORS */
.sp {
  background: var(--paper);
  padding: 60px 0;
  border-top: 1px solid rgba(10,27,53,0.12);
}
.sp-track {
  display: flex; gap: 50px;
  animation: marquee 38s linear infinite;
  white-space: nowrap;
  padding: 24px 0;
}
.sp-item {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-size: 28px;
  letter-spacing: 0.04em;
  color: var(--navy);
  opacity: 0.7;
  flex-shrink: 0;
}

/* FOOTER */
.ft {
  background: var(--navy);
  color: white;
  padding: 70px 40px 30px;
  position: relative;
  overflow: hidden;
}
.ft-top {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.ft-mark { display: flex; align-items: center; gap: 16px; }
.ft-mark img { width: 64px; }
.ft-1 { font-weight: 900; font-size: 22px; letter-spacing: 0.06em; }
.ft-2 { font-size: 11px; letter-spacing: 0.22em; opacity: 0.6; margin-top: 4px; }
.ft-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; font-size: 13px; line-height: 2; opacity: 0.75; }
.ft-cols > div > div { padding: 2px 0; }
.ft-h { font-size: 11px; letter-spacing: 0.22em; font-weight: 800; opacity: 1; color: var(--accent); margin-bottom: 12px; }
.ft-big {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-size: clamp(120px, 22vw, 320px);
  line-height: 0.85;
  letter-spacing: -0.05em;
  margin-top: 30px;
  color: var(--navy-2);
  -webkit-text-stroke: 1px var(--accent);
  text-stroke: 1px var(--accent);
  text-align: center;
}
.ft-big span {
  font-family: "InstrumentSerif", Georgia, serif;
  font-style: italic; font-weight: 400;
  color: var(--accent);
  -webkit-text-stroke: 0;
  text-stroke: 0;
  margin-left: 12px;
}
.ft-bot {
  display: flex; justify-content: space-between;
  font-size: 11px; letter-spacing: 0.18em; font-weight: 600;
  opacity: 0.5;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */

@media (max-width: 900px) {
  .ed-topbar { grid-template-columns: 1fr auto; }
  .ed-nav { display: none; }
  .ed-bottom { grid-template-columns: 1fr; }
  .ds-grid { grid-template-columns: 1fr; }
  .ds-card:first-child { border-right: 1px solid rgba(10,27,53,0.18); border-bottom: 0; }
  .rs-grid { grid-template-columns: repeat(2, 1fr); }
  .tk-grid { grid-template-columns: 1fr; gap: 40px; }
  .fx-row { grid-template-columns: 110px 1fr 30px; }
  .fx-venue, .fx-kind { display: none; }
  .ft-top { grid-template-columns: 1fr; }
  .ft-cols { grid-template-columns: 1fr 1fr; }
  .bc-stats { grid-template-columns: 1fr 1fr; }
  .bc-lower-third { grid-template-columns: 1fr; }
  .ex-glass-row { grid-template-columns: 1fr; }
}


/* MOUNTAIN DRAW — hand-drawn line, strokes on at load */
.ed-mtn-stage {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  color: var(--navy);
  display: flex;
  align-items: flex-end;
  mix-blend-mode: multiply;
}
.mtn-draw {
  width: 100%;
  height: 100%;
  margin-top: auto;
  display: block;
}
.mtn-draw .mtn-far  { opacity: 0.32; }
.mtn-draw .mtn-mid  { opacity: 0.55; }
.mtn-draw .mtn-near { opacity: 0.85; }
.mtn-draw {
  clip-path: inset(0 100% 0 0);
  animation: mtnReveal 4s cubic-bezier(.22,.85,.4,1) 0.4s forwards;
}
@keyframes mtnReveal {
  0% { clip-path: inset(0 100% 0 0); }
  100% { clip-path: inset(0 0% 0 0); }
}
.mtn-draw .mtn-caps path {
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  animation: mtnDraw 0.8s ease-out forwards;
  animation-delay: 3.2s;
}
.mtn-draw .mtn-trees circle {
  opacity: 0;
  animation: mtnFade 0.4s ease-out forwards;
}
.mtn-draw .mtn-trees circle:nth-child(1) { animation-delay: 3.5s; }
.mtn-draw .mtn-trees circle:nth-child(2) { animation-delay: 3.6s; }
.mtn-draw .mtn-trees circle:nth-child(3) { animation-delay: 3.7s; }
.mtn-draw .mtn-trees circle:nth-child(4) { animation-delay: 3.8s; }
.mtn-draw .mtn-trees circle:nth-child(5) { animation-delay: 3.9s; }
.mtn-draw .mtn-trees circle:nth-child(6) { animation-delay: 4.0s; }
.mtn-draw .mtn-trees circle:nth-child(7) { animation-delay: 4.1s; }
.mtn-draw .mtn-trees circle:nth-child(8) { animation-delay: 4.2s; }
@keyframes mtnDraw { to { stroke-dashoffset: 0; } }
@keyframes mtnFade { to { opacity: 0.5; } }

/* CREST LOGO entrance */
.crest-logo {
  opacity: 1;
}

/* Push the LEISACH II text label nicely against the crest */
.ed-mark { gap: 14px; }


/* ─────────── CREATIVE LAYERS ─────────── */

/* Morphing pill — text roll */
.ed-nav-roll {
  display: inline-block;
  animation: rollIn 0.5s cubic-bezier(.2,.7,.3,1) both;
}
@keyframes rollIn {
  0% { transform: translateY(8px); opacity: 0; }
  60% { opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Sun arc — rises slowly behind mountains */
.sun-arc {
  position: absolute;
  inset: auto 0 -120px 0;
  height: 80%;
  z-index: 1;
  pointer-events: none;
  animation: sunRise 2.4s cubic-bezier(.2,.7,.3,1) 0.3s both;
  opacity: 0.85;
}
.sun-arc svg { width: 100%; height: 100%; display: block; }
.sun-arc .sun-rays line {
  transform-origin: 800px 700px;
  animation: rayPulse 8s ease-in-out infinite;
}
@keyframes sunRise {
  0% { opacity: 0; transform: translateY(120px); }
  100% { opacity: 0.85; transform: translateY(0); }
}
@keyframes rayPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}

/* Snow flakes */
.snow-stage {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
}
.snow-flake {
  position: absolute;
  top: -10px;
  border-radius: 50%;
  background: var(--navy);
  animation: snowFall linear infinite;
  --drift: 0px;
}
@keyframes snowFall {
  0% { transform: translate(0, -10vh); }
  100% { transform: translate(var(--drift), 110vh); }
}

/* Constellation overlay — connects mouse to stars */
.constellation {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
}

/* II super-treatment: subtle gold glint sweep across stripes */
.ed-ii-stripe::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(233,191,94,0.45) 50%, transparent 70%);
  background-size: 200% 100%;
  animation: glintSweep 6s ease-in-out infinite;
  mix-blend-mode: lighten;
}
@keyframes glintSweep {
  0%, 100% { background-position: 200% 0; }
  50% { background-position: -100% 0; }
}

/* Die Zweite — bigger editorial treatment */
.ed-claim p {
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.25;
}

/* Sport selector — diagonal slash divider with shimmer */
.ss-divider span {
  animation: divPulse 4s ease-in-out infinite;
}
@keyframes divPulse {
  0%, 100% { transform: rotate(0deg) scale(1); opacity: 1; }
  50% { transform: rotate(180deg) scale(1.15); opacity: 0.7; }
}

/* Sport card — number reveal smoother */
.ss-card .ss-bg-num {
  transition: all 0.8s cubic-bezier(.2,.85,.4,1);
}
.ss-card:hover .ss-bg-num {
  opacity: 0.22;
  transform: translateY(0) scale(1.05);
}

/* Sport card — title gets accent color underline on hover */
.ss-card .ss-card-title {
  position: relative;
  transition: transform 0.4s ease;
}
.ss-card:hover .ss-card-title {
  transform: translateX(8px);
}

/* Topbar pill width */
.ed-nav-soon { min-width: 320px; justify-content: center; overflow: hidden; }


/* ─────────── PERSONALITY LAYERS — anti-AI grit ─────────── */

/* Auto-pan the giant LEISACH backdrop (continuous slow drift) */
.ed-drift-name {
  animation: leisachDrift 80s linear infinite;
  will-change: transform;
}
@keyframes leisachDrift {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* Auto-sway on the giant II — breathes & sways subtly */
.ed-ii-stage {
  animation: iiBreathe 14s ease-in-out infinite;
  transform-origin: 50% 60%;
}
@keyframes iiBreathe {
  0%, 100% { transform: rotate(-0.4deg) scale(1.0); }
  50%      { transform: rotate(0.6deg) scale(1.012); }
}

/* RUBBER STAMP */
.rubber-stamp {
  position: absolute;
  z-index: 8;
  pointer-events: none;
  width: 168px;
  height: 168px;
  filter: contrast(1.2);
  opacity: 0.78;
  animation: stampPress 1.2s cubic-bezier(.2,.85,.4,1) 1.4s both;
}
.rs-ring {
  width: 100%;
  height: 100%;
  border: 5px double #B22B2B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(178,43,43,0.04) 0%, transparent 70%);
  position: relative;
}
.rs-ring::before, .rs-ring::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1.5px solid #B22B2B;
}
.rs-ring::after { inset: 14px; border-style: dashed; opacity: 0.5; }
.rs-inner {
  text-align: center;
  color: #B22B2B;
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
}
.rs-text {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.rs-divider {
  font-size: 12px;
  margin: 4px 0;
  letter-spacing: 0.5em;
}
.rs-sub {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-style: normal;
  font-family: "Geist Mono", monospace;
}
/* Stamp imperfection — fake ink texture via box-shadow noise */
.rubber-stamp::before {
  content: "";
  position: absolute;
  inset: -4px;
  background:
    radial-gradient(circle 2px at 10% 20%, rgba(178,43,43,0.4) 100%, transparent),
    radial-gradient(circle 2px at 80% 30%, rgba(178,43,43,0.3) 100%, transparent),
    radial-gradient(circle 1.5px at 30% 70%, rgba(178,43,43,0.4) 100%, transparent),
    radial-gradient(circle 1px at 70% 80%, rgba(178,43,43,0.3) 100%, transparent),
    radial-gradient(circle 1px at 90% 60%, rgba(178,43,43,0.3) 100%, transparent);
  pointer-events: none;
}
@keyframes stampPress {
  0% { opacity: 0; transform: rotate(-9deg) scale(2.4); filter: blur(8px); }
  60% { opacity: 0.95; filter: blur(0); transform: rotate(-9deg) scale(0.92); }
  100% { opacity: 0.78; transform: rotate(-9deg) scale(1); }
}

/* HAND ANNOTATION */
.hand-annot {
  position: absolute;
  z-index: 9;
  width: 200px;
  pointer-events: none;
  color: var(--accent);
  animation: scribbleIn 1s cubic-bezier(.4,.9,.4,1) 2.4s both;
}
.hand-annot-svg {
  display: block;
}
.hand-annot-svg path {
  stroke-dasharray: 280;
  stroke-dashoffset: 280;
  animation: drawLine 1.6s cubic-bezier(.4,.9,.4,1) 2.4s forwards;
}
.hand-annot-svg path:nth-child(2) {
  animation-delay: 3.6s;
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
}
@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}
@keyframes scribbleIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.hand-annot-label {
  position: absolute;
  left: 0;
  bottom: 0;
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-size: 16px;
  color: var(--navy);
  background: rgba(241,234,221,0.8);
  padding: 2px 6px;
  white-space: nowrap;
}

/* FLYING BIRD */
.bird-stage {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
  overflow: hidden;
}
.bird-svg {
  position: absolute;
  width: 28px;
  height: 14px;
  color: var(--navy);
  opacity: 0.5;
  top: 18%;
  left: -40px;
  animation: birdFly 28s linear infinite;
}
.bird-svg path {
  animation: wingFlap 0.4s ease-in-out infinite;
  transform-origin: 30px 15px;
}
@keyframes birdFly {
  0% { transform: translate(0, 0); }
  20% { transform: translate(35vw, -2vh); }
  50% { transform: translate(60vw, 3vh); }
  80% { transform: translate(80vw, -1vh); }
  100% { transform: translate(110vw, 4vh); }
}
@keyframes wingFlap {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.6); }
}

/* WEATHER STAMP */
.weather-stamp {
  position: absolute;
  z-index: 9;
  top: 110px;
  left: 32px;
  width: 188px;
  padding: 12px 14px;
  background: var(--paper);
  border: 1.5px solid var(--navy);
  font-family: "Geist Mono", monospace;
  font-size: 9.5px;
  letter-spacing: 0.1em;
  color: var(--navy);
  transform: rotate(-3deg);
  box-shadow: 4px 4px 0 var(--navy);
  animation: weatherIn 0.8s cubic-bezier(.2,.85,.4,1) 1.8s both;
}
@keyframes weatherIn {
  0% { opacity: 0; transform: rotate(-3deg) translateY(-20px); }
  100% { opacity: 1; transform: rotate(-3deg) translateY(0); }
}
.ws-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 9px;
  text-transform: uppercase;
}
.ws-k { color: var(--navy); opacity: 0.55; }
.ws-v { font-weight: 600; }
.ws-divider {
  height: 1px;
  background: var(--navy);
  opacity: 0.3;
  margin: 8px 0;
}
.ws-big {
  font-family: "Instrument Serif", serif;
  font-size: 56px;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 6px 0 8px;
  color: var(--accent);
  text-shadow: 1px 1px 0 var(--navy);
}
.ws-c { font-size: 24px; opacity: 0.6; }

/* CURSOR TRAIL */
.cursor-trail {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
}
.ct-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  transform: translate(-50%, -50%);
  transition: opacity 0.3s, transform 0.3s;
  mix-blend-mode: multiply;
}

/* Subtle paper grain overlay on the whole hero */
.hero-editorial::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(13,30,57,0.02) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(13,30,57,0.02) 0%, transparent 50%);
  mix-blend-mode: multiply;
  opacity: 0.6;
}

/* Subtle flicker on the topbar coordinates */
.ed-meta-time {
  animation: textFlicker 7s steps(1) infinite;
}
@keyframes textFlicker {
  0%, 96%, 100% { opacity: 1; }
  97% { opacity: 0.4; }
  98% { opacity: 1; }
  99% { opacity: 0.6; }
}

/* Stripe glint stronger */
.ed-ii-stripe::after {
  background: linear-gradient(110deg, transparent 30%, rgba(233,191,94,0.7) 50%, transparent 70%);
}


/* ─────────── VERSUS CARD ─────────── */
.versus-card {
  position: absolute;
  z-index: 9;
  top: 110px;
  left: 32px;
  width: 232px;
  padding: 18px 18px 14px;
  background: var(--paper);
  border: 1.5px solid var(--navy);
  color: var(--navy);
  transform: rotate(-3deg);
  box-shadow: 5px 5px 0 var(--navy);
  animation: weatherIn 0.8s cubic-bezier(.2,.85,.4,1) 1.6s both;
}
.vs-eyebrow {
  font-family: "Geist Mono", monospace;
  font-size: 8.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  opacity: 0.7;
}
.vs-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  animation: blink 2s ease-in-out infinite;
}
.vs-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}
.vs-side { text-align: center; }
.vs-num {
  font-family: "Instrument Serif", serif;
  font-size: 56px;
  font-style: italic;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--navy);
  text-shadow: 2px 2px 0 var(--accent);
}
.vs-label {
  font-family: "Geist Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-top: 4px;
}
.vs-name {
  font-family: "Newsreader", serif;
  font-style: italic;
  font-size: 14px;
  margin-top: 4px;
}
.vs-x {
  font-family: "Newsreader", serif;
  font-style: italic;
  font-size: 36px;
  color: var(--accent);
  line-height: 1;
  font-weight: 300;
}
.vs-divider {
  height: 1px;
  background: var(--navy);
  opacity: 0.3;
  margin: 14px 0 8px;
}
.vs-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Newsreader", serif;
  font-style: italic;
  font-size: 12px;
}
.vs-foot-r {
  font-family: "Geist Mono", monospace;
  font-style: normal;
  opacity: 0.5;
}

/* New simple tagline in topbar (replaces morphing pill) */
.ed-nav-tagline {
  font-family: "Newsreader", Georgia, serif;
  font-size: 16px;
  letter-spacing: 0.05em;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 0;
}
.ed-nav-tagline em {
  font-style: italic;
  color: var(--accent);
}


/* ─────────── REPOSITIONED VERSUS CARD — to right of II ─────────── */
.versus-card {
  top: auto;
  bottom: 18%;
  left: auto;
  right: 6%;
  transform: rotate(2.5deg);
}
@keyframes weatherIn {
  0% { opacity: 0; transform: rotate(2.5deg) translateY(-20px); }
  100% { opacity: 1; transform: rotate(2.5deg) translateY(0); }
}

/* ─────────── MODERN TOPBAR ─────────── */
.ed-mark-text .ed-mark-1 {
  font-family: "Big Shoulders Display", "Archivo", sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #06122a;
  line-height: 1;
  text-transform: uppercase;
}
.ed-mark-text .ed-mark-1 em {
  font-family: "Big Shoulders Display", "Archivo", sans-serif;
  font-style: normal;
  font-weight: 800;
  color: var(--accent);
  margin-left: 4px;
  letter-spacing: 0.02em;
}

.ed-nav-modern {
  display: flex;
  gap: 32px;
  align-items: center;
}
.ed-nav-link {
  font-family: "Archivo", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--navy);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.ed-nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1.5px;
  width: 0;
  background: var(--accent);
  transition: width 0.3s cubic-bezier(.2,.85,.4,1);
}
.ed-nav-link:hover {
  color: var(--accent);
}
.ed-nav-link:hover::before {
  width: 100%;
}

/* ─────────── BIG EDITORIAL SLOGAN ─────────── */
.ed-claim-display {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.92;
  color: var(--navy);
  max-width: 60vw;
}
.ed-claim-line-1 {
  font-size: clamp(32px, 4.2vw, 60px);
  display: inline-flex;
  align-items: baseline;
  gap: 0.2em;
}
.ed-claim-line-1 em {
  font-family: "Newsreader", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: -0.04em;
  font-size: 1.1em;
}
.ed-claim-line-2 {
  font-size: clamp(20px, 2.4vw, 32px);
  font-weight: 400;
  font-family: "Newsreader", serif;
  font-style: italic;
  letter-spacing: -0.02em;
  margin-top: 6px;
  opacity: 0.85;
}
.ed-claim-mark-w {
  position: relative;
  display: inline-block;
  font-style: italic;
}
.ed-claim-mark-w::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 8%;
  height: 0.18em;
  background: var(--accent);
  opacity: 0.5;
  z-index: -1;
  transform: skewX(-8deg);
}


/* ─────────── MINIMAL ONEPAGER TOPBAR ─────────── */
.ed-topbar-min {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ed-topbar-rail {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--navy);
}
.ed-rail-kicker {
  font-family: "Newsreader", serif;
  font-size: 13px;
  font-style: normal;
  letter-spacing: 0.04em;
  color: var(--navy);
  text-transform: none;
}
.ed-rail-kicker em {
  font-style: italic;
  color: var(--accent);
}
.ed-rail-divider {
  width: 1px;
  height: 16px;
  background: var(--navy);
  opacity: 0.25;
}
.ed-rail-coord {
  opacity: 0.7;
}
.ed-rail-time {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  min-width: 64px;
  animation: textFlicker 7s steps(1) infinite;
}
.ed-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--paper);
  padding: 10px 16px;
  font-family: "Archivo", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  transition: all 0.3s cubic-bezier(.2,.85,.4,1);
  margin-left: 8px;
}
.ed-cta:hover {
  background: var(--accent);
  color: var(--navy);
  transform: translateY(-1px);
}
.ed-cta-arrow {
  display: inline-block;
  font-size: 14px;
  transition: transform 0.3s;
}
.ed-cta:hover .ed-cta-arrow {
  transform: translate(2px, -2px);
}

/* hide old chrome bits */
.ed-topbar-min .ed-meta { display: none; }

/* ─────────── SLOGAN — clearer, more readable ─────────── */
.ed-claim-display {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(241, 234, 221, 0.86);
  backdrop-filter: blur(2px);
  padding: 16px 28px 16px 0;
  width: fit-content;
  max-width: 60vw;
  position: relative;
}
.ed-claim-display::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--accent);
}
.ed-claim-line-1 {
  display: flex;
  align-items: baseline;
  gap: 0.18em;
  flex-wrap: wrap;
}
.ed-claim-line-1 em {
  font-family: "Newsreader", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: -0.04em;
  font-size: 1.08em;
  text-decoration: none;
}
.ed-claim-line-2 {
  margin-top: 8px;
  opacity: 0.92;
  color: var(--navy);
}
.ed-claim-mark-w::after {
  display: none;
}
.ed-claim-mark-w {
  position: relative;
  font-style: italic;
  background-image: linear-gradient(to right, var(--accent) 0%, var(--accent) 100%);
  background-repeat: no-repeat;
  background-position: 0 88%;
  background-size: 100% 14%;
  padding: 0 2px;
}

/* ─────────── VERSUS CARD — rotating-stats polish ─────────── */
.versus-card {
  width: 244px;
  padding: 16px 18px 12px;
}
.vs-eyebrow {
  justify-content: space-between;
  width: 100%;
  margin-bottom: 12px;
}
.vs-eyebrow-text {
  flex: 1;
  display: inline-block;
  animation: rollIn 0.5s cubic-bezier(.2,.7,.3,1) both;
  text-align: left;
  margin-left: 6px;
}
.vs-page {
  font-family: "Geist Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.16em;
  opacity: 0.5;
  font-variant-numeric: tabular-nums;
}
.vs-row {
  animation: rollIn 0.6s cubic-bezier(.2,.7,.3,1) both;
}
.vs-num {
  font-size: 52px;
  font-variant-numeric: tabular-nums;
}
.vs-foot-text {
  display: inline-block;
  animation: rollIn 0.5s cubic-bezier(.2,.7,.3,1) both;
}
/* Tape strip */
.vs-tape {
  display: flex;
  gap: 4px;
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px dashed rgba(13,30,57,0.2);
}
.vs-tape-bar {
  flex: 1;
  height: 3px;
  background: rgba(13,30,57,0.15);
  transition: background 0.4s, transform 0.4s;
}
.vs-tape-bar-active {
  background: var(--accent);
  transform: scaleY(1.6);
}


/* ═══════════════════════════════════════════════════
   LOAD CHOREOGRAPHY — staggered reveal on first paint
   ═══════════════════════════════════════════════════ */
.ed-anim {
  opacity: 0;
  transform: translateY(16px);
  animation: edStaggerIn 0.9s cubic-bezier(.2,.7,.3,1) forwards;
}
@keyframes edStaggerIn {
  to { opacity: 1; transform: translateY(0); }
}
.ed-topbar.ed-anim    { animation-delay: 0.05s; }
.ed-edge-l.ed-anim,
.ed-edge-r.ed-anim    { animation-delay: 0.4s; }
.ed-ii-stage.ed-anim  { animation: iiStageIn 1.6s cubic-bezier(.2,.7,.3,1) 0.2s both; }
@keyframes iiStageIn {
  0%   { opacity: 0; transform: scale(0.94); }
  100% { opacity: 1; transform: scale(1); }
}
.ed-drift-name.ed-anim { animation-delay: 0.3s; animation-duration: 1.4s; }
.ed-bottom-bar.ed-anim { animation-delay: 0.55s; }
.ed-marquee.ed-anim    { animation-delay: 0.75s; }

/* respect motion-off — no stagger */
html[data-motion="off"] .ed-anim {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

/* ─────────── CREST MEDALLION — white round disc behind any sparte logo ─────────── */
.crest-medallion {
  background: #fff;
  border-radius: 50%;
  object-fit: contain;
  display: block;
  box-shadow:
    0 2px 8px rgba(10,27,53,0.18),
    0 0 0 1px rgba(10,27,53,0.06) inset;
  padding: 4px;
}
.ed-crest-img {
  width: 56px;
  height: 56px;
  animation: crestIn 1s cubic-bezier(.2,.85,.4,1) 0.3s both;
}
.ed-mark .crest-logo { display: none; }

/* Broadcast topbar — was a yellow square wrapper, now a transparent shell holding the medallion */
.bc-ch-logo {
  width: 56px !important;
  height: 56px !important;
  background: transparent !important;
  border-radius: 50% !important;
  padding: 0 !important;
}
.bc-ch-img { width: 56px; height: 56px; }

/* Experimental hero mark */
.ex-mark-img { width: 44px; height: 44px; padding: 3px; }

/* Footer crest — slightly larger, brighter ring on dark navy */
.ft-crest-img {
  width: 72px;
  height: 72px;
  box-shadow:
    0 4px 14px rgba(0,0,0,0.35),
    0 0 0 2px rgba(255,255,255,0.08);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — TABLET & MOBILE
   ═══════════════════════════════════════════════════ */

/* Tablet & smaller laptop */
@media (max-width: 1100px) {
  .ed-rail-kicker { display: none; }
  .ed-rail-divider:first-of-type { display: none; }
  .versus-card { transform: rotate(2deg) scale(0.85); right: 3%; bottom: 14%; }
  .ed-edge-l { left: 8px; }
  .ed-edge-r { right: 8px; }
}

/* Tablet portrait & large phone */
@media (max-width: 820px) {
  html { overflow-x: clip; }
  .hero-editorial {
    padding: 14px 18px 0;
    min-height: 640px;
    height: auto;
    min-height: 100svh;
    overflow: hidden;
  }
  .hero-broadcast { padding: 18px 20px 0; }
  .hero-exp { padding: 18px 20px 0; }

  /* Editorial topbar — collapse to logo + CTA only */
  .ed-topbar-min { gap: 10px; padding-bottom: 14px; }
  .ed-crest-img { width: 40px; height: 40px; }
  .ed-mark-text .ed-mark-1 { font-size: 16px; }
  .ed-topbar-rail { gap: 10px; }
  .ed-rail-kicker { display: none; }
  .ed-rail-coord { display: none; }
  .ed-rail-divider { display: none; }
  .ed-rail-time { display: none; }
  .ed-cta { padding: 9px 14px; font-size: 11px; margin-left: 0; white-space: nowrap; }
  .ed-cta-arrow { font-size: 12px; }

  /* Hide vertical edge labels on mobile — clutter */
  .ed-edge-l, .ed-edge-r { display: none; }

  /* Versus card — repositioned bottom-right, smaller */
  .versus-card {
    transform: rotate(0deg) scale(0.7);
    right: -6%;
    bottom: 24%;
  }

  /* The big II glyph — keep editorial layered look, but shift layers UP-LEFT on mobile so they never push past the right edge of the viewport */
  .ed-ii-glyph,
  .ed-ii-shadow,
  .ed-ii-stripe {
    font-size: clamp(200px, 38vh, 320px);
    max-width: 86vw;
  }
  .ed-ii-shadow { animation: iiShadowDriftMobile 8s ease-in-out infinite; }
  .ed-ii-stripe { animation: iiStripeDriftMobile 10s ease-in-out infinite; }
  @keyframes iiShadowDriftMobile {
    0%, 100% { transform: translate(-0.03em, 0.03em); }
    50%      { transform: translate(-0.045em, 0.045em); }
  }
  @keyframes iiStripeDriftMobile {
    0%, 100% { transform: translate(-0.06em, 0.06em); opacity: 0.5; }
    50%      { transform: translate(-0.08em, 0.08em); opacity: 0.65; }
  }

  /* Drifting LEISACH band — atmospheric texture, behind II, with soft edge fade so letters never cut hard at viewport edges */
  .ed-drift-name {
    font-size: clamp(120px, 34vw, 240px);
    top: 38%;
    opacity: 0.08;
    width: 320%;
    z-index: 1;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 18%, #000 82%, transparent 100%);
            mask-image: linear-gradient(to right, transparent 0%, #000 18%, #000 82%, transparent 100%);
  }

  /* Mountain backdrop — soft but visible */
  .ed-mtn-stage { opacity: 0.55; }

  /* Vertical edge label — right side accent */
  .ed-edge-r {
    display: flex !important;
    flex-direction: column;
    right: 4px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    font-size: 9px;
    letter-spacing: 0.3em;
    gap: 8px;
    opacity: 0.5;
    z-index: 4;
    max-height: 50vh;
  }
  .ed-edge-l {
    display: flex !important;
    flex-direction: column;
    left: 4px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    font-size: 9px;
    letter-spacing: 0.3em;
    gap: 8px;
    opacity: 0.5;
    z-index: 4;
    max-height: 50vh;
  }
  .ed-edge-l .ed-edge-num,
  .ed-edge-r .ed-edge-num { letter-spacing: 0; opacity: 0.6; }

  /* Stars — show all four for atmosphere */
  .ed-star-2 { display: inline; top: 38%; right: 14%; font-size: 14px; opacity: 0.6; }
  .ed-star-3 { display: inline; bottom: 42%; right: 22%; font-size: 12px; opacity: 0.5; }

  /* Slogan — full readable width, gold accent stays inside viewport */
  .ed-claim-display {
    max-width: 100%;
    padding: 14px 18px 14px 14px;
    background: rgba(241, 234, 221, 0.92);
  }
  .ed-claim-display::before {
    left: 0;
    width: 3px;
  }
  .ed-claim-line-1 { font-size: clamp(32px, 9vw, 52px); }
  .ed-claim-line-2 { font-size: clamp(17px, 4.6vw, 24px); }

  .ed-bottom-bar {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-bottom: 18px;
  }
  .ed-scroll { flex-direction: row; align-items: center; gap: 14px; }
  .ed-scroll-line { width: 60px; height: 1px; }
  .ed-scroll-line span {
    height: 100%;
    width: 30%;
    animation-name: scrolltickX;
  }
  @keyframes scrolltickX {
    0% { transform: translateX(-100%); }
    60% { transform: translateX(330%); }
    100% { transform: translateX(330%); }
  }

  .ed-marquee { margin: 0 -20px; }
  .ed-marquee-track { font-size: 16px; }

  /* Broadcast hero */
  .bc-topbar { gap: 12px; }
  .bc-ch-logo, .bc-ch-img { width: 44px !important; height: 44px !important; }
  .ex-mark-img { width: 38px; height: 38px; }
  .ft-crest-img { width: 56px; height: 56px; }
  .bc-ch-1 { font-size: 12px; }
  .bc-ch-2 { font-size: 9px; }
  .bc-clock { font-size: 11px; }
  .bc-headline { font-size: clamp(56px, 14vw, 120px) !important; line-height: 0.92; }
  .bc-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .bc-lower-third { grid-template-columns: 1fr; gap: 16px; }
  .bc-cd b { font-size: 28px; }
  .bc-ticker-track span { font-size: 12px; }

  /* Experimental hero */
  .ex-topbar nav { display: none; }
  .ex-mark img { width: 38px; height: 38px; }
  .ex-mark span { font-size: 14px; }
  .ex-headline { font-size: clamp(48px, 13vw, 100px) !important; }
  .ex-glass-row { grid-template-columns: 1fr; gap: 12px; }

  /* Sparte select */
  .ss { padding: 60px 20px 80px; }
  .ss-eyebrow { gap: 12px; margin-bottom: 18px; }
  .ss-eyebrow-line { flex: 0 0 30px; }
  .ss-hint { font-size: 9.5px; letter-spacing: 0.16em; margin-bottom: 24px; padding: 0 24px; text-align: center; }
  .ss-hint-icon { font-size: 12px; }
  .ss-card-cta { font-size: 11px; padding: 12px 18px 12px 20px; gap: 10px; margin-top: 16px; }
  .ss-card-cta-arrow { font-size: 16px; }
  .ss-card-badge { top: 18px; right: 18px; font-size: 9px; padding: 4px 9px; letter-spacing: 0.22em; }
  .ss-eyebrow-text { font-size: 13px; letter-spacing: 0.1em; }
  .ss-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .ss-card { padding: 40px 24px 36px; min-height: 360px; }
  .ss-card-inner { padding-right: 0; margin-top: 18px; }
  .ss-card-title { font-size: clamp(48px, 13vw, 88px); }
  .ss-card-logo { width: 130px; height: 130px; }
  .ss-card-logo-racing { padding: 16px; }
  .ss-card::after { width: 220px; height: 220px; top: 30px; }
  .ss-divider {
    width: auto;
    height: 1px;
    background: rgba(10,27,53,0.2);
  }
  .ss-divider span { font-size: 16px; padding: 6px 14px; }
  .ss-foot {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    font-size: 11px;
  }

  /* Footer */
  .ft { padding: 60px 20px 30px !important; }
  .ft-top { grid-template-columns: 1fr; gap: 30px; }
  .ft-mark { gap: 14px; }
  .ft-crest-img { width: 56px; height: 56px; }
  .ft-1 { font-size: 18px; }
  .ft-2 { font-size: 10px; }
  .ft-cols { grid-template-columns: 1fr 1fr; gap: 20px; font-size: 12px; }
  .ft-big { font-size: clamp(80px, 22vw, 160px) !important; }
  .ft-bot { flex-direction: column; gap: 6px; text-align: center; font-size: 10px; }

  /* Disable cursor-trail / constellation on touch — pointless */
  .cursor-trail, .constellation { display: none; }

  /* Stars positioning — push inward */
  .ed-star-1 { top: 18%; left: 6%; font-size: 22px; }
  .ed-star-2 { top: 60%; right: 6%; font-size: 18px; }
  .ed-star-3 { display: none; }
  .ed-star-4 { bottom: 32%; left: 10%; font-size: 18px; }
}

/* Small phone */
@media (max-width: 480px) {
  .hero-editorial { padding: 12px 14px 0; min-height: 100svh; }
  .ed-crest-img { width: 36px; height: 36px; }
  .ed-mark-text .ed-mark-1 { font-size: 14px; }
  .ed-mark { gap: 10px; }
  .ed-cta { padding: 8px 11px; font-size: 10px; }
  .ed-cta-arrow { font-size: 11px; }

  .ed-ii-glyph,
  .ed-ii-shadow,
  .ed-ii-stripe {
    font-size: clamp(160px, 32vh, 240px);
    max-width: 80vw;
  }
  .ed-edge-l, .ed-edge-r { font-size: 8px; letter-spacing: 0.26em; max-height: 44vh; }
  .ed-edge-l { left: 2px; }
  .ed-edge-r { right: 2px; }

  .ed-claim-display { padding: 12px 14px 12px 12px; }
  .ed-claim-line-1 { font-size: 32px; }
  .ed-claim-line-2 { font-size: 17px; }

  .ed-marquee { margin: 0 -14px; }
  .ed-marquee-track { font-size: 13px; }

  .versus-card {
    transform: scale(0.55);
    transform-origin: bottom right;
    right: -12%;
    bottom: 30%;
  }

  .ft-cols { grid-template-columns: 1fr; }
  .bc-stats { grid-template-columns: 1fr 1fr; }
  .bc-lt-main { font-size: 18px !important; }
  .ex-glass { padding: 18px !important; }
  .ex-cta { width: 100%; justify-content: center; }
}

/* Touch devices — disable hover-only effects */
@media (hover: none) {
  .cursor-trail { display: none; }
  .ed-cta:hover { transform: none; }
}

/* ═══════════════════════════════════════════════════
   MEDIA SECTION — autoplay video + cut-out player + editorial collage
   ═══════════════════════════════════════════════════ */
.media-sec {
  background: var(--navy);
  color: var(--paper);
  padding: 120px 40px 140px;
  position: relative;
  overflow: hidden;
}
/* subtle grain noise */
.media-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: overlay;
  background-image:
    radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    radial-gradient(rgba(0,0,0,0.10) 1px, transparent 1px);
  background-size: 3px 3px, 5px 5px;
  background-position: 0 0, 1px 2px;
}

.media-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: rgba(243,239,230,0.55);
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}
.media-eyebrow-line {
  flex: 0 0 80px;
  height: 1px;
  background: rgba(243,239,230,0.25);
}

.media-stage {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  min-height: 720px;
}

/* Giant editorial background type — BERG / BIER / BALL stacked */
.media-bg-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
  z-index: 0;
}
.media-bg-text span {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(140px, 18vw, 300px);
  line-height: 0.82;
  letter-spacing: -0.04em;
  color: rgba(243,239,230,0.05);
  user-select: none;
}
.media-bg-text span:nth-child(2) { text-align: right; color: rgba(233,191,94,0.07); }
.media-bg-text span:nth-child(3) { padding-left: 10%; }

/* ── Video card — tilted, framed, with thick gold edge */
.media-video-card {
  position: absolute;
  top: 40px;
  right: 0;
  width: clamp(420px, 52%, 720px);
  z-index: 3;
  transform: rotate(2.5deg);
  transition: transform 0.7s cubic-bezier(.2,.7,.3,1);
  opacity: 0;
  transform: rotate(2.5deg) translateY(40px);
}
.media-video-card.in-view {
  opacity: 1;
  transform: rotate(2.5deg) translateY(0);
}
.media-video-card:hover {
  transform: rotate(0deg) translateY(-4px);
}
.media-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  box-shadow:
    0 30px 60px rgba(0,0,0,0.55),
    0 0 0 4px var(--paper),
    0 0 0 6px var(--accent),
    0 0 0 7px rgba(0,0,0,0.4);
}
.media-video {
  position: absolute;
  inset: -10%;
  width: 120%;
  height: 120%;
  border: 0;
  pointer-events: none; /* prevent YT overlay clicks bringing controls */
}
.media-video-scan {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    180deg,
    rgba(0,0,0,0.18) 0,
    rgba(0,0,0,0.18) 1px,
    transparent 1px,
    transparent 3px
  );
  mix-blend-mode: multiply;
  opacity: 0.5;
}

/* Sound toggle — bottom-right of video frame */
.media-video-sound {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 12px;
  background: rgba(10, 27, 53, 0.78);
  color: var(--paper);
  border: 1px solid rgba(243, 239, 230, 0.28);
  border-radius: 999px;
  cursor: pointer;
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  font-weight: 600;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: all 0.25s cubic-bezier(.2,.85,.4,1);
  pointer-events: auto;
}
.media-video-sound:hover {
  background: var(--accent);
  color: var(--navy);
  border-color: var(--accent);
  transform: translateY(-1px);
}
.media-video-sound.is-muted {
  animation: soundPulse 2.4s ease-in-out infinite;
}
@keyframes soundPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(233,191,94,0.55); }
  50%      { box-shadow: 0 0 0 10px rgba(233,191,94,0); }
}
.media-video-sound-ico {
  font-size: 14px;
  line-height: 1;
}
.media-video-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 0 8px;
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: rgba(243,239,230,0.7);
  flex-wrap: wrap;
}
.media-video-title {
  font-family: "Newsreader", serif;
  font-style: normal;
  font-size: 14px;
  letter-spacing: 0;
  color: var(--paper);
  text-transform: none;
}
.media-video-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
}
.media-video-pill {
  margin-left: auto;
  padding: 4px 10px;
  border: 1px solid rgba(243,239,230,0.2);
  border-radius: 999px;
  color: rgba(243,239,230,0.55);
  transition: all 0.3s;
}
.media-video-pill.is-muted-pill {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(233,191,94,0.12);
  animation: mutedPillBlink 1.6s ease-in-out infinite;
}
@keyframes mutedPillBlink {
  0%, 100% { opacity: 0.85; }
  50%      { opacity: 1; box-shadow: 0 0 12px rgba(233,191,94,0.4); }
}

/* ── Cut-out player — radial mask fades the background grass into transparency */
.media-player-stage {
  position: absolute;
  bottom: -80px;
  left: -20px;
  width: clamp(380px, 46%, 600px);
  aspect-ratio: 11 / 16;
  z-index: 4;
  opacity: 0;
  transform: translateY(60px) rotate(-4deg);
  transition: opacity 1s cubic-bezier(.2,.7,.3,1) 0.2s, transform 1.1s cubic-bezier(.2,.7,.3,1) 0.2s;
}
.media-player-stage.in-view {
  opacity: 1;
  transform: translateY(0) rotate(-4deg);
  animation: playerFloat 8s ease-in-out infinite 1.5s;
}
@keyframes playerFloat {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50%      { transform: translateY(-10px) rotate(-3.2deg); }
}
.media-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter:
    drop-shadow(0 30px 40px rgba(0,0,0,0.55))
    drop-shadow(0 6px 14px rgba(0,0,0,0.4))
    saturate(1.08)
    contrast(1.05);
}
/* gold radial glow behind the player */
.media-player-glow {
  position: absolute;
  inset: -20% -25% -10% -15%;
  background: radial-gradient(ellipse at 50% 55%, rgba(233,191,94,0.32) 0%, rgba(233,191,94,0) 60%);
  z-index: -1;
  pointer-events: none;
  filter: blur(20px);
}

/* ── N° 99 sticker badge */
.media-sticker {
  position: absolute;
  top: 50%;
  left: 38%;
  transform: translateY(-50%) rotate(-6deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--accent);
  color: var(--navy);
  padding: 14px 22px 16px;
  border-radius: 999px / 50%;
  box-shadow: 0 12px 24px rgba(0,0,0,0.4);
  z-index: 5;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(.2,.7,.3,1) 0.5s, transform 0.8s cubic-bezier(.2,.7,.3,1) 0.5s;
}
.media-sticker.in-view {
  opacity: 1;
  animation: stickerWobble 6s ease-in-out infinite 1.4s;
}
@keyframes stickerWobble {
  0%, 100% { transform: translateY(-50%) rotate(-6deg); }
  50%      { transform: translateY(-50%) rotate(-3deg); }
}
.media-sticker-l, .media-sticker-r {
  font-family: "Geist Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.3em;
  font-weight: 700;
  opacity: 0.7;
}
.media-sticker-num {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 56px;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

/* ── Three truths spine — small italic at bottom-right */
.media-truths {
  position: absolute;
  bottom: 0;
  right: 0;
  font-family: "Instrument Serif", "Times New Roman", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 2.8vw, 44px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-align: right;
  color: rgba(243,239,230,0.92);
  z-index: 3;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 1s 0.7s, transform 1s 0.7s;
}
.media-truths > div {
  display: block;
}
.media-truths > div + div {
  margin-top: 4px;
}
.media-truths.in-view {
  opacity: 1;
  transform: translateX(0);
}
.media-truths em {
  color: var(--accent);
}

.media-foot {
  margin-top: 80px;
  text-align: center;
  font-family: "Newsreader", serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.32em;
  color: rgba(243,239,230,0.4);
  position: relative;
  z-index: 2;
}

/* ═══════════════════════════════════════════════════
   TRIKOT MODAL
   ═══════════════════════════════════════════════════ */
.trikot-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  animation: trikotModalIn 0.45s cubic-bezier(.2,.7,.3,1) both;
}
@keyframes trikotModalIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.trikot-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 12, 28, 0.86);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
}
.trikot-modal-shell {
  position: relative;
  width: min(1240px, 100%);
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  background: var(--paper);
  color: var(--navy);
  border-radius: 18px;
  padding: 56px 56px 48px;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.5),
    0 0 0 1px rgba(233,191,94,0.14);
  animation: trikotShellIn 0.6s cubic-bezier(.2,.7,.3,1) 0.05s both;
}
@keyframes trikotShellIn {
  0%   { opacity: 0; transform: translateY(24px) scale(0.98); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.trikot-modal-close {
  position: absolute;
  top: 22px;
  right: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1px solid rgba(10,27,53,0.18);
  border-radius: 999px;
  padding: 8px 14px;
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.25s;
  z-index: 2;
}
.trikot-modal-close:hover {
  background: var(--navy);
  color: var(--paper);
  border-color: var(--navy);
}
.trikot-modal-x {
  font-family: "Newsreader", serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1;
}
.trikot-modal-head {
  max-width: 720px;
  margin-bottom: 36px;
}
.trikot-eyebrow {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--navy);
  opacity: 0.55;
  margin-bottom: 24px;
}
.trikot-title {
  font-family: "Newsreader", serif;
  font-weight: 300;
  font-size: clamp(64px, 8vw, 132px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0 0 28px;
}
.trikot-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.trikot-text {
  font-family: "Newsreader", serif;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.55;
  max-width: 460px;
  opacity: 0.75;
  margin: 0 0 40px;
}
.trikot-text em {
  font-style: italic;
  color: var(--accent);
  opacity: 1;
}
.trikot-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid rgba(10,27,53,0.18);
  border-bottom: 1px solid rgba(10,27,53,0.18);
  margin-bottom: 36px;
}
.trikot-spec-l {
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.28em;
  opacity: 0.5;
}
.trikot-spec-v {
  font-family: "Newsreader", serif;
  font-style: italic;
  font-size: 22px;
  margin-top: 6px;
  color: var(--navy);
}
.trikot-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--paper);
  padding: 14px 22px;
  font-family: "Archivo", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(.2,.85,.4,1);
}
.trikot-cta:hover {
  background: var(--accent);
  color: var(--navy);
  transform: translateY(-2px);
}
.trikot-cta-arrow {
  font-size: 14px;
  transition: transform 0.3s;
}
.trikot-cta:hover .trikot-cta-arrow { transform: translate(2px, -2px); }

/* Modal jersey — single image, large, centered */
.trikot-modal-jersey {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  padding: 24px 0 32px;
  perspective: 1400px;
}
.trikot-modal-jersey-img {
  width: min(100%, 540px);
  height: auto;
  border-radius: 14px;
  box-shadow:
    0 30px 60px rgba(10,27,53,0.28),
    0 12px 24px rgba(10,27,53,0.18);
  transform: rotate(-2deg);
  transition: transform 0.5s cubic-bezier(.2,.7,.3,1);
}
.trikot-modal-jersey-img:hover {
  transform: rotate(0deg) scale(1.02);
}
.trikot-modal-jersey-tag {
  position: absolute;
  top: 10%;
  right: 6%;
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: clamp(60px, 9vw, 140px);
  line-height: 0.85;
  color: rgba(10,27,53,0.08);
  pointer-events: none;
  user-select: none;
}

.trikot-modal-foot {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(10,27,53,0.18);
}
.trikot-modal-foot .trikot-row {
  border: 0;
  padding: 0;
  margin: 0;
  grid-template-columns: repeat(3, auto);
  gap: 32px;
}

/* ═══════════════════════════════════════════════════
   FIXTURES — reveal on scroll
   ═══════════════════════════════════════════════════ */
.fx-sec {
  padding-top: 110px !important;
  padding-bottom: 120px !important;
}
.fx-sec .sec-label {
  padding: 0 40px;
  margin-bottom: 60px;
}
.fx-row {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(.2,.7,.3,1), transform 0.8s cubic-bezier(.2,.7,.3,1), padding-left 0.2s, background 0.2s;
}
.fx-row.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* sec-label tweaks for navy bg */
.fx-sec .sec-n { color: var(--accent); }
.fx-sec .sec-t { color: var(--paper); }
.fx-sec .sec-k { color: rgba(243,239,230,0.45); }

/* ═══════════════════════════════════════════════════
   RESPONSIVE — story / trikot / fixtures
   ═══════════════════════════════════════════════════ */
@media (max-width: 820px) {
  /* Media section — stack vertically on mobile */
  .media-sec { padding: 70px 20px 90px; }
  .media-eyebrow { margin-bottom: 36px; gap: 10px; }
  .media-eyebrow-line { flex: 0 0 24px; }
  .media-stage { min-height: auto; display: flex; flex-direction: column; gap: 30px; }
  .media-bg-text { display: none; }

  .media-video-card {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    transform: rotate(0deg);
    opacity: 1;
  }
  .media-video-card.in-view { transform: rotate(0deg); }
  .media-video-frame {
    box-shadow:
      0 18px 36px rgba(0,0,0,0.5),
      0 0 0 3px var(--paper),
      0 0 0 4px var(--accent);
  }

  .media-player-stage {
    position: relative;
    bottom: auto;
    left: auto;
    width: 90%;
    margin: -10px auto 0;
    aspect-ratio: 4 / 4.5;
    transform: rotate(-2deg);
    opacity: 1;
  }

  .media-sticker {
    position: absolute;
    top: 50%;
    left: 70%;
    transform: translate(-50%, -50%) rotate(-6deg);
    padding: 10px 16px 12px;
    opacity: 1;
    animation: none;
  }
  .media-sticker-num { font-size: 38px; }
  .media-sticker-l, .media-sticker-r { font-size: 8px; letter-spacing: 0.22em; }

  .media-truths {
    position: relative;
    bottom: auto;
    right: auto;
    text-align: center;
    transform: none !important;
    opacity: 1 !important;
    font-size: 18px;
    margin-top: 8px;
  }

  .media-foot { margin-top: 50px; font-size: 11px; }

  .trikot-modal { padding: 0; }
  .trikot-modal-shell {
    border-radius: 0;
    padding: 64px 22px 32px;
    max-height: 100vh;
    width: 100%;
  }
  .trikot-modal-close { top: 14px; right: 14px; padding: 6px 10px; }
  .trikot-modal-head { margin-bottom: 24px; }
  .trikot-modal-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .trikot-photo-frame { aspect-ratio: 3 / 4; }
  .trikot-modal-foot {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .trikot-modal-foot .trikot-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .trikot-row { gap: 14px; }
  .trikot-spec-v { font-size: 16px; }
  .trikot-cta { width: 100%; justify-content: center; }

  .fx-sec { padding: 70px 0 80px !important; }
  .fx-sec .sec-label { padding: 0 24px; margin-bottom: 30px; }
  .fx-list { padding: 0 24px; }
}

/* ───────────────────────── TRIKOT (Drop-Edition) ───────────────────────── */
.trk-sec {
  position: relative;
  background: #ede5d4;
  background-image:
    repeating-linear-gradient(0deg, rgba(10,27,53,0.012) 0 1px, transparent 1px 4px);
  color: var(--navy);
  padding: 100px 60px 140px;
  overflow: hidden;
}
.trk-sec::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(233,191,94,0.2) 0%, transparent 70%);
  pointer-events: none;
}

/* Watermark — riesiges DROP 25/26 hinter allem */
.trk-watermark {
  position: absolute;
  top: 36px; left: 50%;
  transform: translateX(-50%);
  font-family: "Big Shoulders Display", "Archivo", sans-serif;
  font-weight: 900;
  font-size: clamp(140px, 22vw, 280px);
  letter-spacing: -0.02em;
  color: rgba(10,27,53,0.045);
  pointer-events: none;
  white-space: nowrap;
  line-height: 0.85;
  z-index: 0;
}
.trk-watermark em {
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: rgba(233,191,94,0.18);
}

/* Eyebrow / Drop tag */
.trk-drop-eyebrow {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto 18px;
}
.trk-drop-stripe {
  width: 48px;
  height: 2px;
  background: var(--navy);
}
.trk-drop-tag {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 700;
  background: var(--navy);
  color: var(--paper);
  padding: 7px 14px;
  border-radius: 1px;
}
.trk-drop-h {
  position: relative;
  z-index: 2;
  font-family: "Newsreader", Georgia, serif;
  font-weight: 400;
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0 auto 60px;
  max-width: 1200px;
}
.trk-drop-h em { font-style: italic; color: var(--accent); }

/* Stage with the trikot showcase */
.trk-stage {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Diagonal red "STRENG LIMITIERT" stamp */
.trk-stamp {
  position: absolute;
  top: 22px; right: 4%;
  z-index: 6;
  font-family: "Big Shoulders Display", "Archivo", sans-serif;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: #c0392b;
  border: 3px solid #c0392b;
  padding: 8px 14px;
  text-transform: uppercase;
  background: rgba(243,239,230,0.72);
  transform: rotate(-8deg);
  box-shadow: inset 0 0 0 1px rgba(192,57,43,0.4);
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.12));
}

/* Authentic round stamp on the opposite side */
.trk-stamp-auth {
  position: absolute;
  bottom: 14%;
  left: 4%;
  z-index: 6;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background:
    radial-gradient(circle at 30% 30%, #f4d76b 0%, #b88a25 100%);
  border: 3px double #2a1c10;
  font-family: "Big Shoulders Display", "Archivo", sans-serif;
  color: #2a1c10;
  font-weight: 800;
  text-transform: uppercase;
  transform: rotate(-12deg);
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,0.4),
    0 6px 14px rgba(0,0,0,0.18);
  animation: trkAuthFloat 6s ease-in-out infinite;
}
@keyframes trkAuthFloat {
  0%, 100% { transform: rotate(-12deg) translateY(0); }
  50%      { transform: rotate(-10deg) translateY(-3px); }
}
.trk-stamp-auth-l {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  border-bottom: 1.5px solid #2a1c10;
  padding-bottom: 3px;
  margin-bottom: 3px;
}
.trk-stamp-auth-r {
  font-size: 7.5px;
  letter-spacing: 0.18em;
  text-align: center;
  line-height: 1.2;
  font-weight: 700;
}

/* Floating little stickers — sneaker-drop vibe */
.trk-sticker {
  position: absolute;
  z-index: 5;
  font-family: "Geist Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.22em;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 1px;
  white-space: nowrap;
  pointer-events: none;
}
.trk-sticker-1 {
  top: 32%;
  right: -2%;
  background: #2a1c10;
  color: #f4d76b;
  transform: rotate(8deg);
  box-shadow: 0 4px 10px rgba(0,0,0,0.18);
}
.trk-sticker-2 {
  top: 4%;
  left: 30%;
  background: var(--accent);
  color: var(--navy);
  transform: rotate(-3deg);
  font-size: 10px;
  letter-spacing: 0.28em;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.trk-sticker-3 {
  bottom: 8%;
  right: 28%;
  background: #c0392b;
  color: #fff;
  transform: rotate(-6deg);
  box-shadow: 0 4px 10px rgba(0,0,0,0.18);
  animation: trkStickerPulse 1.6s ease-in-out infinite;
}
@keyframes trkStickerPulse {
  0%, 100% { transform: rotate(-6deg) scale(1); }
  50%      { transform: rotate(-6deg) scale(1.05); }
}

/* Showcase — front + back layered, toggle slides one in front */
.trk-showcase {
  position: relative;
  width: 360px;
  max-width: 90%;
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trk-showcase-glow {
  position: absolute;
  top: 5%; left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 90%;
  background: radial-gradient(ellipse, rgba(233,191,94,0.45) 0%, transparent 65%);
  filter: blur(18px);
  pointer-events: none;
  z-index: 0;
}
.trk-showcase-front,
.trk-showcase-back {
  position: absolute;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 26px rgba(10,27,53,0.32));
  transition: transform 0.7s cubic-bezier(.2,.7,.3,1), opacity 0.5s, filter 0.5s;
  top: 0;
}
.trk-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg,
    transparent 0%,
    transparent 35%,
    rgba(255,255,255,0.4) 50%,
    transparent 65%,
    transparent 100%);
  background-size: 250% 100%;
  pointer-events: none;
  z-index: 4;
  mix-blend-mode: overlay;
  animation: trkShimmer 5s ease-in-out infinite;
}
@keyframes trkShimmer {
  0%, 100% { background-position: 200% 0; opacity: 0; }
  20%      { opacity: 0.7; }
  60%      { background-position: -100% 0; opacity: 0; }
}
.trk-side-front .trk-showcase-front {
  transform: translate(0, 0) scale(1);
  opacity: 1;
  z-index: 3;
}
.trk-side-front .trk-showcase-back {
  transform: translate(-22%, -2%) scale(0.86) rotate(-5deg);
  opacity: 0.85;
  filter: drop-shadow(0 12px 18px rgba(10,27,53,0.22)) saturate(0.85);
  z-index: 1;
}
.trk-side-back .trk-showcase-front {
  transform: translate(22%, -2%) scale(0.86) rotate(5deg);
  opacity: 0.85;
  filter: drop-shadow(0 12px 18px rgba(10,27,53,0.22)) saturate(0.85);
  z-index: 1;
}
.trk-side-back .trk-showcase-back {
  transform: translate(0, 0) scale(1);
  opacity: 1;
  filter: drop-shadow(0 24px 26px rgba(10,27,53,0.32));
  z-index: 3;
}

/* Numbered marks ON the trikot — connected to annotations via CSS */
.trk-mark {
  position: absolute;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--navy);
  z-index: 5;
  box-shadow: 0 4px 10px rgba(10,27,53,0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Big Shoulders Display", "Archivo", sans-serif;
  font-weight: 900;
  font-size: 12px;
  color: var(--navy);
  letter-spacing: 0;
  pointer-events: none;
  transition: transform 0.3s, opacity 0.3s;
}
.trk-mark::before { content: attr(data-n); }
.trk-mark::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(233,191,94,0.45);
  z-index: -1;
  filter: blur(6px);
  opacity: 0.6;
}
.trk-mark-1 { top: 14%; left: 50%; transform: translateX(-50%); }
.trk-mark-2 { top: 30%; right: 22%; }
.trk-mark-3 { bottom: 28%; left: 18%; }
.trk-mark-4 { bottom: 16%; right: 14%; }
.trk-side-back .trk-mark { opacity: 0; }

/* Toggle Front/Back */
/* Toggle-Group: wrappt Variant + Side, stack-spaced */
.trk-toggle-group {
  position: absolute;
  bottom: -54px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 6;
  align-items: center;
}
.trk-toggle-l {
  position: absolute;
  left: -68px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Geist Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.22em;
  color: rgba(10,27,53,0.55);
  font-weight: 700;
  text-transform: uppercase;
}
.trk-toggle {
  position: relative;
  display: flex;
  gap: 0;
  background: var(--paper);
  border: 1px solid rgba(10,27,53,0.2);
  border-radius: 999px;
  padding: 4px;
  box-shadow: 0 6px 14px rgba(10,27,53,0.12);
}
.trk-toggle-btn {
  font-family: "Big Shoulders Display", "Archivo", sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 999px;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.trk-toggle-btn:hover { background: rgba(10,27,53,0.06); }
.trk-toggle-btn.is-active {
  background: var(--navy);
  color: var(--paper);
}
/* Torwart-Toggle bekommt einen kleinen NEU-Badge */
.trk-toggle-btn-fresh {
  position: relative;
  padding-right: 38px;
}
.trk-toggle-badge {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(180deg, #c0392b 0%, #7a1c12 100%);
  color: #fff;
  font-size: 8px;
  letter-spacing: 0.12em;
  padding: 2px 6px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 2px 6px rgba(192,57,43,0.5);
  animation: cmEyebrowPulse 1.6s ease-in-out infinite;
}
.trk-toggle-btn-fresh.is-active .trk-toggle-badge {
  background: linear-gradient(180deg, #ffd24a 0%, #b88a25 100%);
  color: #0a1b35;
  box-shadow: 0 2px 6px rgba(233,191,94,0.55);
}

/* Torwart-Variant: dezenter Akzent — bleibt im Paper-Look, leicht warmer Tint, Glow rot/gold */
.trk-sec-torwart {
  background-image:
    repeating-linear-gradient(0deg, rgba(192,57,43,0.012) 0 1px, transparent 1px 4px),
    radial-gradient(ellipse at 50% 0%, rgba(192,57,43,0.06) 0%, transparent 50%);
}
.trk-showcase.is-torwart .trk-showcase-glow {
  background: radial-gradient(ellipse at center, rgba(233,191,94,0.32) 0%, rgba(192,57,43,0.15) 35%, transparent 70%);
}

/* Annotation cards in 4 corners */
.trk-anno {
  position: absolute;
  z-index: 4;
  background: var(--paper);
  border: 1px solid rgba(10,27,53,0.12);
  border-radius: 3px;
  padding: 14px 18px 14px 50px;
  min-width: 220px;
  box-shadow: 0 8px 20px rgba(10,27,53,0.08);
}
.trk-anno-num {
  position: absolute;
  top: 50%; left: 14px;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  background: var(--navy);
  color: var(--accent);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Big Shoulders Display", "Archivo", sans-serif;
  font-weight: 900;
  font-size: 12px;
}
.trk-anno-l {
  font-family: "Geist Mono", monospace;
  font-size: 9.5px;
  letter-spacing: 0.26em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 4px;
}
.trk-anno-v {
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-size: 17px;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
}
.trk-anno-tl { top: 8%; left: 0; }
.trk-anno-tl::after,
.trk-anno-tr::after,
.trk-anno-bl::after,
.trk-anno-br::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--accent) 0 4px, transparent 4px 8px);
  top: 50%;
  pointer-events: none;
}
.trk-anno-tl::after { right: -56px; }
.trk-anno-tr { top: 8%; right: 0; }
.trk-anno-tr::after { left: -56px; }
.trk-anno-bl { bottom: 12%; left: 0; }
.trk-anno-bl::after { right: -56px; }
.trk-anno-br { bottom: 12%; right: 0; }
.trk-anno-br::after { left: -56px; }

/* Foot bar — sizes + release + price */
.trk-foot-bar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  max-width: 1100px;
  margin: 70px auto 0;
  padding: 14px 22px;
  background: var(--navy);
  color: var(--paper);
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 2px;
  flex-wrap: wrap;
}
.trk-foot-sizes {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}
.trk-foot-sizes span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  padding: 3px 6px;
  background: rgba(243,239,230,0.12);
  color: var(--accent);
  font-family: "Big Shoulders Display", "Archivo", sans-serif;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.trk-foot-sep {
  width: 1px;
  height: 14px;
  background: rgba(243,239,230,0.3);
}

.trk-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.7;
  max-width: 1080px;
  margin: 0 auto 36px;
  position: relative;
  z-index: 2;
}
.trk-eyebrow-line { flex: 1; height: 1px; background: rgba(10,27,53,0.25); }

.trk-block {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}
.trk-block-image {
  position: relative;
}
.trk-block-text {
  position: relative;
}
.trk-block-h {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 400;
  font-size: clamp(40px, 5.8vw, 68px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}
.trk-block-h em { font-style: italic; color: var(--accent); }
.trk-block-lead {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.5;
  margin: 0 0 32px;
  opacity: 0.8;
}

/* Detail-Specs als kleine Magazin-Karten */
.trk-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.trk-detail {
  background: white;
  border: 1px solid rgba(10,27,53,0.08);
  border-radius: 3px;
  padding: 14px 16px;
  box-shadow: 0 4px 10px rgba(10,27,53,0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}
.trk-detail:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(10,27,53,0.08);
  border-color: var(--accent);
}
.trk-detail-l {
  font-family: "Geist Mono", monospace;
  font-size: 9.5px;
  letter-spacing: 0.24em;
  color: var(--accent);
  margin-bottom: 6px;
  text-transform: uppercase;
  font-weight: 700;
}
.trk-detail-v {
  font-family: "Newsreader", Georgia, serif;
  font-size: 14.5px;
  line-height: 1.3;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.trk-detail-v em { font-style: italic; color: var(--accent); }
.trk-swatch {
  display: inline-block;
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 1.5px solid rgba(10,27,53,0.25);
  flex: 0 0 auto;
}
.trk-detail-sizes {
  gap: 6px;
}
.trk-detail-sizes span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  padding: 4px 8px;
  font-family: "Big Shoulders Display", "Archivo", sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.06em;
  background: var(--navy);
  color: var(--paper);
  border-radius: 1px;
}

/* Trikot-Stand — Produkt-Showcase mit Rückseite leicht versetzt hinter Vorderseite */
.trk-stand {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(255,255,255,0.7) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 105%, rgba(10,27,53,0.18) 0%, transparent 55%),
    linear-gradient(180deg, #f5efdd 0%, #d8c79a 100%);
  border-radius: 6px;
  overflow: hidden;
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,0.5),
    inset 0 -2px 0 rgba(10,27,53,0.08),
    0 18px 36px rgba(10,27,53,0.12);
}
.trk-stand-glow {
  position: absolute;
  top: 12%; left: 50%;
  transform: translateX(-50%);
  width: 65%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(233,191,94,0.42) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(20px);
  z-index: 0;
}
.trk-stand-badge {
  position: absolute;
  z-index: 5;
  font-family: "Big Shoulders Display", "Archivo", sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.18em;
  padding: 6px 10px;
  background: var(--navy);
  color: var(--paper);
  border-radius: 1px;
  box-shadow: 0 4px 10px rgba(10,27,53,0.25);
}
.trk-stand-badge-1 {
  top: 18px; left: 18px;
}
.trk-stand-badge-2 {
  top: 18px; right: 18px;
  background: var(--accent);
  color: var(--navy);
}
.trk-stand-badge-3 {
  bottom: 18px; left: 50%;
  transform: translateX(-50%);
  background: rgba(243,239,230,0.92);
  color: var(--navy);
  border: 1px solid rgba(10,27,53,0.15);
}
.trk-stand::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(255,255,255,0.5) 0%, transparent 50%);
  pointer-events: none;
}
.trk-stand-floor {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 30%;
  background: linear-gradient(180deg, transparent 0%, rgba(10,27,53,0.08) 100%);
  pointer-events: none;
}
.trk-stand-back {
  position: absolute;
  top: 8%;
  left: 18%;
  width: 46%;
  height: auto;
  filter:
    drop-shadow(0 18px 22px rgba(10,27,53,0.18))
    saturate(0.9)
    brightness(0.94);
  transform: rotate(-4deg) translateY(0);
  z-index: 1;
  transition: transform 0.6s cubic-bezier(.2,.7,.3,1);
}
.trk-stand-front {
  position: relative;
  width: 52%;
  height: auto;
  margin-bottom: 6%;
  filter: drop-shadow(0 30px 28px rgba(10,27,53,0.25));
  transform: translateX(8%);
  z-index: 2;
  transition: transform 0.6s cubic-bezier(.2,.7,.3,1);
}
.trk-stand:hover .trk-stand-back {
  transform: rotate(-7deg) translate(-3%, -2%);
}
.trk-stand:hover .trk-stand-front {
  transform: translateX(11%) translateY(-1%);
}


.trk-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 22px;
  max-width: 1280px;
  margin: 0 auto 48px;
  position: relative;
  z-index: 2;
  align-items: stretch;
}
.trk-main, .trk-side {
  position: relative;
  margin: 0;
  background: white;
  border: 1px solid rgba(10,27,53,0.1);
  border-radius: 3px;
  padding: 16px 16px 20px;
  box-shadow:
    0 14px 32px rgba(10,27,53,0.1),
    0 2px 6px rgba(10,27,53,0.06);
  display: flex; flex-direction: column;
  transition: transform 0.5s cubic-bezier(.2,.7,.3,1), box-shadow 0.5s;
}
.trk-main:hover, .trk-side:hover {
  transform: translateY(-4px);
  box-shadow:
    0 22px 44px rgba(10,27,53,0.16),
    0 4px 10px rgba(10,27,53,0.08);
}
.trk-mockup-tag {
  position: absolute;
  top: 10px; right: 10px;
  font-family: "Geist Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.28em;
  background: var(--accent);
  color: var(--navy);
  padding: 4px 8px;
  font-weight: 700;
  z-index: 3;
  border-radius: 1px;
}
.trk-photo {
  position: relative;
  flex: 1;
  background: #f4f4f4;
  overflow: hidden;
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  min-height: 280px;
}
.trk-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(255,255,255,0.18) 0%, transparent 35%, transparent 65%, rgba(0,0,0,0.04) 100%);
  pointer-events: none;
}
.trk-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.1) saturate(1.05) brightness(1.04);
  transition: transform 0.6s cubic-bezier(.2,.7,.3,1);
}
.trk-main:hover .trk-photo img,
.trk-side:hover .trk-photo img { transform: scale(1.03); }
.trk-main .trk-photo { min-height: 460px; }
.trk-cap {
  padding: 0 4px;
}
.trk-cap-l {
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--accent);
  margin-bottom: 6px;
  font-weight: 700;
}
.trk-cap-t {
  font-family: "Newsreader", Georgia, serif;
  font-style: normal;
  font-size: 15px;
  line-height: 1.35;
  color: var(--navy);
}
.trk-cap-t em { font-style: italic; color: var(--accent); }

.trk-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(10,27,53,0.15);
  border: 1px solid rgba(10,27,53,0.15);
  max-width: 1280px;
  margin: 0 auto 42px;
  position: relative;
  z-index: 2;
}
.trk-spec {
  background: #ede5d4;
  padding: 22px 20px;
}
.trk-spec-l {
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.26em;
  color: var(--navy);
  opacity: 0.6;
  margin-bottom: 8px;
}
.trk-spec-v {
  font-family: "Big Shoulders Display", "Archivo", sans-serif;
  font-weight: 800;
  font-size: clamp(20px, 2.4vw, 28px);
  letter-spacing: 0.04em;
  color: var(--navy);
}

.trk-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--navy);
  color: var(--paper);
  padding: 14px 24px;
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.trk-status-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: trkPulse 1.6s ease-in-out infinite;
}
@keyframes trkPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.85); }
}

.trk-reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s, transform 0.7s; }
.trk-reveal.in-view { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .trk-anno { min-width: 180px; padding: 12px 14px 12px 46px; }
  .trk-anno-v { font-size: 15px; }
  .trk-stage { min-height: 760px; }
  .trk-anno-tl, .trk-anno-tr { top: 4%; }
  .trk-anno-bl, .trk-anno-br { bottom: 6%; }
}

@media (max-width: 820px) {
  .trk-sec { padding: 70px 22px 60px; }
  .trk-watermark { font-size: clamp(80px, 26vw, 140px); top: 24px; }
  .trk-drop-tag { font-size: 9.5px; padding: 6px 12px; letter-spacing: 0.24em; }
  .trk-drop-h { font-size: clamp(40px, 12vw, 72px); margin-bottom: 36px; }
  .trk-stage { min-height: auto; flex-direction: column; gap: 24px; padding-bottom: 16px; }
  .trk-showcase { width: 280px; }
  .trk-stamp { top: 14px; right: 14px; font-size: 9.5px; padding: 6px 10px; letter-spacing: 0.16em; }
  .trk-stamp-auth { display: none; }
  .trk-sticker-1, .trk-sticker-2, .trk-sticker-3 { display: none; }
  .trk-anno-tl::after, .trk-anno-tr::after, .trk-anno-bl::after, .trk-anno-br::after { display: none; }
  .trk-toggle { position: static; transform: none; margin: 12px auto 0; }
  .trk-toggle-btn { font-size: 10px; padding: 8px 14px; }

  /* Annotations stack below the trikot in a 2x2 grid */
  .trk-anno {
    position: static;
    min-width: 0;
    width: 100%;
    box-shadow: 0 4px 10px rgba(10,27,53,0.06);
    padding: 12px 12px 12px 46px;
  }
  .trk-anno-tl, .trk-anno-tr, .trk-anno-bl, .trk-anno-br {
    top: auto; right: auto; bottom: auto; left: auto;
  }
  .trk-stage > .trk-anno-tl { order: 3; }
  .trk-stage > .trk-anno-tr { order: 4; }
  .trk-stage > .trk-anno-bl { order: 5; }
  .trk-stage > .trk-anno-br { order: 6; }
  .trk-stage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    gap: 12px;
  }
  .trk-stage .trk-showcase { grid-column: 1 / -1; justify-self: center; }
  .trk-stage .trk-stamp { grid-column: 1 / -1; }
  .trk-stage .trk-toggle { grid-column: 1 / -1; justify-self: center; }
  .trk-anno-num { width: 24px; height: 24px; font-size: 11px; left: 10px; }
  .trk-anno-l { font-size: 8.5px; letter-spacing: 0.18em; }
  .trk-anno-v { font-size: 14px; }

  .trk-foot-bar { font-size: 9.5px; letter-spacing: 0.16em; gap: 12px; padding: 12px 16px; margin-top: 36px; }
  .trk-foot-sep { display: none; }
}

@media (max-width: 480px) {
  .trk-stage { grid-template-columns: 1fr; }
}

/* ───────────────────────── TRANSFER COUNTDOWN ───────────────────────── */
.cd-sec {
  position: relative;
  background:
    radial-gradient(circle at 50% 0%, #1a3361 0%, #0a1b35 60%, #050d1f 100%);
  color: var(--paper);
  padding: 90px 60px 90px;
  overflow: hidden;
  border-top: 1px solid rgba(233,191,94,0.18);
  border-bottom: 1px solid rgba(233,191,94,0.18);
}
.cd-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(243,239,230,0.03) 0 1px, transparent 1px 40px),
    repeating-linear-gradient(90deg, rgba(243,239,230,0.025) 0 1px, transparent 1px 40px);
  pointer-events: none;
}
.cd-light {
  position: absolute;
  top: -50px; left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 280px;
  background: radial-gradient(ellipse at top, rgba(192,57,43,0.22) 0%, transparent 60%);
  pointer-events: none;
  filter: blur(20px);
}

/* Mystery-Silhouetten links und rechts der Stage */
.cd-mystery {
  position: absolute;
  bottom: 40px;
  height: 70%;
  width: auto;
  z-index: 1;
  opacity: 0.85;
  filter:
    drop-shadow(0 8px 18px rgba(192,57,43,0.35))
    drop-shadow(0 0 30px rgba(192,57,43,0.2));
  animation: cdMysteryFloat 5s ease-in-out infinite;
}
.cd-mystery-l {
  left: 4%;
  transform: scaleX(-1);
  animation-delay: 0s;
}
.cd-mystery-r {
  right: 4%;
  animation-delay: 1.2s;
}
@keyframes cdMysteryFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.cd-mystery-l { transform: scaleX(-1) translateY(0); }
@keyframes cdMysteryFloatL {
  0%, 100% { transform: scaleX(-1) translateY(0); }
  50%      { transform: scaleX(-1) translateY(-10px); }
}
.cd-mystery-l { animation-name: cdMysteryFloatL; }

.cd-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #c0392b;
  color: #fff;
  padding: 7px 16px;
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.32em;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 auto 22px;
  position: relative;
  z-index: 2;
  border-radius: 1px;
}
.cd-eyebrow-dot {
  width: 7px; height: 7px;
  background: #fff;
  border-radius: 50%;
  animation: bnPulse 1.2s ease-in-out infinite;
}

.cd-h {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 400;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  margin: 0 auto 16px;
  text-align: center;
  position: relative;
  z-index: 2;
  color: var(--paper);
}
.cd-h em { font-style: italic; color: var(--accent); }
.cd-lead {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.5;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
  opacity: 0.82;
  position: relative;
  z-index: 2;
}
.cd-lead strong { color: var(--accent); font-weight: 700; }

/* Countdown grid — broadcast clock style */
.cd-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 14px;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}
.cd-cell {
  flex: 1 1 120px;
  min-width: 120px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(243,239,230,0.04) 0%, rgba(243,239,230,0.01) 100%);
  border: 1px solid rgba(243,239,230,0.15);
  border-radius: 4px;
  padding: 22px 8px 16px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 12px 24px rgba(0,0,0,0.3);
  position: relative;
}
.cd-cell::before {
  content: "";
  position: absolute;
  top: -1px; left: 12px; right: 12px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.cd-num {
  font-family: "Big Shoulders Display", "Archivo", sans-serif;
  font-weight: 900;
  font-size: clamp(54px, 7vw, 88px);
  letter-spacing: 0.02em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 2px 8px rgba(233,191,94,0.25);
}
.cd-l {
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0.7;
}
.cd-sep {
  align-self: center;
  font-family: "Big Shoulders Display", "Archivo", sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 56px);
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  padding: 0 2px;
}

.cd-revealed {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 30px;
  background: rgba(233,191,94,0.08);
  border: 2px solid var(--accent);
  border-radius: 4px;
  max-width: 640px;
  margin: 0 auto;
}
.cd-revealed-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--navy);
  padding: 4px 12px;
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.26em;
  font-weight: 700;
  margin-bottom: 16px;
}
.cd-revealed-h {
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-size: clamp(22px, 3vw, 32px);
  color: var(--paper);
  margin-bottom: 8px;
}
.cd-revealed-sub {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--paper);
  opacity: 0.7;
  text-transform: uppercase;
}

.cd-foot {
  margin-top: 36px;
  text-align: center;
  font-family: "Geist Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0.5;
  position: relative;
  z-index: 2;
}

.cd-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s, transform 0.7s;
}
.cd-reveal.in-view { opacity: 1; transform: none; }

/* === Coach-Mystery: Geruechte-Sektion mit Bestaetigung am 01.06.2026 ===
   Schwerpunkt: maximale Mystik. Dunkelster Background, Scanlines, Static-Noise,
   pulsierende Frage-Glyphe, Glitch-Text, knochenfarbener Akzent statt Brand-Gold. */
.cm-sec {
  position: relative;
  overflow: hidden;
  padding: 80px 28px 88px;
  background:
    radial-gradient(ellipse at 50% 30%, #1a0808 0%, #050202 70%),
    #000;
  color: #d8d0c2;
  font-family: "Geist Mono", "JetBrains Mono", ui-monospace, monospace;
  text-align: center;
  isolation: isolate;
}
/* TV-Scanlines */
.cm-scanlines {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, rgba(0,0,0,0) 0 2px, rgba(0,0,0,0.35) 2px 4px);
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}
/* Static-Noise Overlay */
.cm-noise {
  position: absolute; inset: 0;
  background-image:
    repeating-radial-gradient(circle at 20% 30%, rgba(255,255,255,0.04) 0 1px, transparent 1px 3px),
    repeating-radial-gradient(circle at 70% 60%, rgba(255,80,80,0.05) 0 1px, transparent 1px 4px);
  opacity: 0.6;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 1;
  animation: cmNoiseDrift 8s steps(20) infinite;
}
@keyframes cmNoiseDrift {
  0%   { transform: translate(0,0); }
  20%  { transform: translate(-2px,1px); }
  40%  { transform: translate(1px,-2px); }
  60%  { transform: translate(-1px,2px); }
  80%  { transform: translate(2px,1px); }
  100% { transform: translate(0,0); }
}
.cm-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 35%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
  z-index: 2;
}
.cm-eyebrow {
  position: relative;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 38px;
  padding: 8px 20px;
  background: rgba(192,57,43,0.18);
  border: 1px solid rgba(192,57,43,0.55);
  border-radius: 2px;
  font-size: 11px;
  letter-spacing: 0.28em;
  color: #ff8a8a;
  font-weight: 700;
  box-shadow: inset 0 0 12px rgba(192,57,43,0.25);
}
.cm-eyebrow-strip {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: #ff4d4d;
  box-shadow: 0 0 6px rgba(255,77,77,0.7);
}
.cm-eyebrow-dot {
  width: 6px; height: 6px;
  background: #ff4d4d;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255,77,77,0.85);
  animation: cmEyebrowPulse 1.4s ease-in-out infinite;
}
@keyframes cmEyebrowPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.7); }
}
.cm-eyebrow-text { white-space: nowrap; }

.cm-stage {
  position: relative;
  z-index: 5;
  margin: 0 auto 24px;
  width: 220px;
  height: 220px;
  display: grid;
  place-items: center;
}
.cm-glyph {
  position: relative;
  width: 100%; height: 100%;
  display: grid;
  place-items: center;
}
.cm-glyph-inner {
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-size: 180px;
  font-weight: 600;
  line-height: 1;
  color: #ff4d4d;
  text-shadow:
    0 0 12px rgba(255,77,77,0.9),
    0 0 36px rgba(255,77,77,0.55),
    0 0 72px rgba(192,57,43,0.4);
  z-index: 3;
  animation: cmGlyphFloat 5s ease-in-out infinite, cmGlyphGlitch 6s steps(20) infinite;
}
@keyframes cmGlyphFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-8px) rotate(2deg); }
}
@keyframes cmGlyphGlitch {
  0%, 90%, 100% { opacity: 1; filter: none; }
  92% { opacity: 0.7; transform: translateY(0) rotate(-2deg) translateX(-3px); filter: hue-rotate(40deg); }
  94% { opacity: 1; transform: translateY(0) rotate(-2deg) translateX(2px); filter: none; }
  96% { opacity: 0.85; transform: translateY(0) rotate(-2deg) translateX(-1px); filter: hue-rotate(-20deg); }
}
.cm-glyph-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(192,57,43,0.4);
  pointer-events: none;
  animation: cmGlyphRing 4s ease-out infinite;
}
.cm-glyph-ring-1 { animation-delay: 0s; }
.cm-glyph-ring-2 { animation-delay: 1.3s; }
.cm-glyph-ring-3 { animation-delay: 2.6s; }
@keyframes cmGlyphRing {
  0%   { opacity: 0.7; transform: scale(0.5); }
  80%  { opacity: 0; transform: scale(1.4); }
  100% { opacity: 0; transform: scale(1.4); }
}

.cm-h {
  position: relative;
  z-index: 5;
  margin: 0 auto 28px;
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: #f4ede0;
  font-size: clamp(34px, 6.4vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 920px;
}
.cm-h em {
  color: #ff8a8a;
  font-style: italic;
  text-shadow: 0 0 18px rgba(255,77,77,0.45);
}
.cm-h-l1, .cm-h-l2, .cm-h-l3 { display: block; }
.cm-h-l3 { color: #d8d0c2; }
.cm-h-redact {
  display: inline-block;
  background: #ff4d4d;
  color: transparent;
  padding: 0 8px;
  margin: 0 4px;
  border-radius: 1px;
  letter-spacing: 0;
  font-style: normal;
  vertical-align: middle;
  user-select: none;
  animation: cmRedactBlink 2.4s steps(2) infinite;
}
@keyframes cmRedactBlink {
  0%, 70%, 100% { background: #ff4d4d; }
  72%, 78% { background: #c0392b; }
}

.cm-stats {
  position: relative;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 36px;
  padding: 14px 22px;
  background: rgba(0,0,0,0.55);
  border: 1px dashed rgba(255,80,80,0.4);
  border-radius: 2px;
  max-width: 820px;
}
.cm-stat {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 100px;
}
.cm-stat-l {
  font-size: 9px;
  letter-spacing: 0.26em;
  color: rgba(216,208,194,0.5);
  font-weight: 700;
}
.cm-stat-v {
  font-size: 13px;
  letter-spacing: 0.18em;
  font-weight: 800;
}
.cm-stat-v-rumor    { color: #ff8a8a; text-shadow: 0 0 8px rgba(255,77,77,0.45); }
.cm-stat-v-pending  { color: #f4d76b; text-shadow: 0 0 8px rgba(244,215,107,0.35); }
.cm-stat-v-low      { color: rgba(216,208,194,0.55); letter-spacing: 0.1em; }
.cm-stat-v-glitch {
  position: relative;
  color: #ff4d4d;
  text-shadow: 1px 0 #00ffd0, -1px 0 #ffea00, 0 0 8px rgba(255,77,77,0.5);
  animation: cmGlitchShift 3.4s steps(8) infinite;
}
@keyframes cmGlitchShift {
  0%, 90%, 100% { transform: none; clip-path: none; }
  92% { transform: translate(-1px, 0); }
  94% { transform: translate(1px, 0); text-shadow: 2px 0 #00ffd0, -2px 0 #ffea00, 0 0 8px rgba(255,77,77,0.5); }
  96% { transform: translate(0, -1px); }
}
.cm-stat-sep {
  display: inline-block;
  width: 1px;
  height: 28px;
  background: rgba(255,80,80,0.4);
}

.cm-cd {
  position: relative;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto 32px;
  padding: 18px 22px;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(192,57,43,0.55);
  border-radius: 2px;
  box-shadow: 0 0 32px rgba(192,57,43,0.18) inset, 0 8px 30px rgba(0,0,0,0.6);
}
.cm-cd-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 70px;
  padding: 10px 6px 6px;
  background: rgba(20,5,5,0.7);
  border: 1px solid rgba(192,57,43,0.35);
  border-radius: 2px;
}
.cm-cd-num {
  font-family: "Geist Mono", monospace;
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 800;
  color: #ff8a8a;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  line-height: 1;
  text-shadow: 0 0 14px rgba(255,77,77,0.55);
}
.cm-cd-l {
  font-size: 9px;
  letter-spacing: 0.24em;
  color: rgba(255,138,138,0.6);
  font-weight: 700;
  margin-top: 6px;
}
.cm-cd-sep {
  font-size: 30px;
  font-weight: 800;
  color: rgba(255,77,77,0.55);
  font-family: "Geist Mono", monospace;
}

.cm-foot {
  position: relative;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 10px;
  letter-spacing: 0.26em;
  color: rgba(216,208,194,0.55);
  font-weight: 700;
}
.cm-foot-tape { color: #ff4d4d; }
.cm-foot-sep { color: rgba(255,77,77,0.5); }
.cm-foot-date {
  color: #f4d76b;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.cm-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s, transform 0.7s;
}
.cm-reveal.in-view { opacity: 1; transform: none; }

/* Surveillance-Eckklammern */
.cm-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 2px solid rgba(255,77,77,0.7);
  z-index: 4;
  pointer-events: none;
  box-shadow: 0 0 8px rgba(255,77,77,0.4);
}
.cm-corner-tl { top: 18px; left: 18px; border-right: none; border-bottom: none; }
.cm-corner-tr { top: 18px; right: 18px; border-left: none; border-bottom: none; }
.cm-corner-bl { bottom: 18px; left: 18px; border-right: none; border-top: none; }
.cm-corner-br { bottom: 18px; right: 18px; border-left: none; border-top: none; }

/* Periodischer Section-Glitch (~jede 12s ein Frame) */
.cm-glitch-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 48%, rgba(255,77,77,0.18) 50%, transparent 52%, transparent 100%);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 3;
  animation: cmGlitchSweep 12s steps(1) infinite;
  opacity: 0;
}
@keyframes cmGlitchSweep {
  0%   { opacity: 0; transform: translateY(-100%); }
  3%   { opacity: 0.9; transform: translateY(0%); }
  6%   { opacity: 0; transform: translateY(100%); }
  100% { opacity: 0; transform: translateY(100%); }
}
.cm-sec {
  animation: cmSectionShake 18s steps(1) infinite;
}
@keyframes cmSectionShake {
  0%, 88%, 100% { transform: none; filter: none; }
  89% { transform: translate(-2px, 1px); filter: hue-rotate(8deg); }
  90% { transform: translate(2px, -1px); filter: none; }
  91% { transform: translate(-1px, 0); filter: hue-rotate(-6deg); }
  92% { transform: none; filter: none; }
}

/* Akte-Header oben */
.cm-akte {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 920px;
  margin: 0 auto 22px;
  padding: 8px 14px;
  border-top: 1px solid rgba(255,77,77,0.4);
  border-bottom: 1px solid rgba(255,77,77,0.4);
  background: rgba(0,0,0,0.45);
  font-size: 10px;
  letter-spacing: 0.22em;
}
.cm-akte-l, .cm-akte-r {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.cm-akte-tag {
  background: #ff4d4d;
  color: #0a0202;
  padding: 3px 7px;
  font-weight: 900;
  letter-spacing: 0.2em;
}
.cm-akte-id {
  color: rgba(216,208,194,0.75);
  font-family: "Geist Mono", monospace;
  font-weight: 700;
  letter-spacing: 0.18em;
}
.cm-akte-class {
  color: #f4d76b;
  font-weight: 800;
  letter-spacing: 0.26em;
  border: 1px dashed rgba(244,215,107,0.5);
  padding: 3px 8px;
}
.cm-akte-rec {
  color: #ff8a8a;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.2em;
}
.cm-akte-rec-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ff4d4d;
  box-shadow: 0 0 8px rgba(255,77,77,0.85);
  animation: cmRecBlink 0.9s ease-in-out infinite;
}
@keyframes cmRecBlink {
  0%, 45% { opacity: 1; }
  50%, 100% { opacity: 0.2; }
}

/* Crosshair-Reticle um die Glyphe */
.cm-stage { position: relative; }
.cm-reticle {
  position: absolute;
  inset: -10px;
  border: 1px dashed rgba(255,77,77,0.45);
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
  animation: cmReticleSpin 24s linear infinite;
}
@keyframes cmReticleSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.cm-reticle-h, .cm-reticle-v {
  position: absolute;
  background: rgba(255,77,77,0.6);
  box-shadow: 0 0 4px rgba(255,77,77,0.7);
}
.cm-reticle-h { top: 50%; left: -22px; right: -22px; height: 1px; transform: translateY(-50%); }
.cm-reticle-v { left: 50%; top: -22px; bottom: -22px; width: 1px; transform: translateX(-50%); }
.cm-reticle-tick {
  position: absolute;
  width: 10px; height: 1px;
  background: #ff4d4d;
  box-shadow: 0 0 4px rgba(255,77,77,0.8);
}
.cm-reticle-tick-t { top: -1px; left: 50%; transform: translateX(-50%) rotate(90deg); }
.cm-reticle-tick-b { bottom: -1px; left: 50%; transform: translateX(-50%) rotate(90deg); }
.cm-reticle-tick-l { left: -1px; top: 50%; transform: translateY(-50%); }
.cm-reticle-tick-r { right: -1px; top: 50%; transform: translateY(-50%); }

/* Schräge REDACTED + VERTRAULICH Stempel über der Glyphe */
.cm-stamp {
  position: absolute;
  z-index: 4;
  font-family: "Geist Mono", monospace;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.3em;
  color: #ff4d4d;
  border: 3px solid #ff4d4d;
  padding: 4px 12px;
  pointer-events: none;
  text-shadow: 0 0 8px rgba(255,77,77,0.6);
  box-shadow: 0 0 16px rgba(255,77,77,0.35);
  animation: cmStampWobble 4s ease-in-out infinite;
}
.cm-stamp:not(.cm-stamp-2) {
  top: 20%;
  left: -30px;
  transform: rotate(-18deg);
  background: rgba(0,0,0,0.5);
}
.cm-stamp-2 {
  bottom: 12%;
  right: -40px;
  transform: rotate(14deg);
  font-size: 14px;
  border-width: 2px;
  background: rgba(0,0,0,0.5);
  letter-spacing: 0.24em;
  animation-delay: -1.5s;
}
@keyframes cmStampWobble {
  0%, 100% { opacity: 0.95; }
  50%      { opacity: 0.7; }
}

/* Koordinaten-Stat */
.cm-stat-v-coords {
  color: #00d8a0;
  font-family: "Geist Mono", monospace;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.1em;
  text-shadow: 0 0 8px rgba(0,216,160,0.4);
}
.cm-stat-v-beer {
  color: #f4d76b;
  font-family: "Geist Mono", monospace;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.14em;
  text-shadow: 0 0 8px rgba(244,215,107,0.4);
}
.cm-stat-v-prev {
  color: rgba(216,208,194,0.7);
  font-family: "Geist Mono", monospace;
  letter-spacing: 0.12em;
  font-style: italic;
}

/* Live Transmission-Log (vertikal, stack mit Auto-Cycle) — viel besser lesbar als der Marquee */
.cm-chatter {
  position: relative;
  z-index: 5;
  margin: 40px auto 0;
  max-width: 920px;
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(255,77,77,0.5);
  border-radius: 2px;
  font-family: "Geist Mono", monospace;
}
.cm-chatter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(192,57,43,0.22);
  border-bottom: 1px dashed rgba(255,77,77,0.4);
  font-size: 10px;
  letter-spacing: 0.26em;
  color: #ff8a8a;
  font-weight: 700;
}
.cm-chatter-head > span:nth-child(2) { flex: 1; text-align: left; padding-left: 8px; }
.cm-chatter-head-dot {
  width: 6px; height: 6px;
  background: #ff4d4d;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(255,77,77,0.8);
  animation: cmRecBlink 1.2s ease-in-out infinite;
  flex-shrink: 0;
}
.cm-chatter-head-meta {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: rgba(255,138,138,0.7);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.cm-chatter-head-rec {
  width: 7px; height: 7px;
  background: #ff4d4d;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(255,77,77,0.9);
  animation: cmRecBlink 0.9s ease-in-out infinite;
}
.cm-chatter-log {
  list-style: none;
  margin: 0;
  padding: 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
}
.cm-chatter-entry {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  transition: opacity 0.5s ease-out, font-size 0.5s ease-out;
  animation: cmChatterEnter 0.7s ease-out;
}
@keyframes cmChatterEnter {
  from { opacity: 0; transform: translateY(-6px); filter: blur(1px); }
  to   { opacity: 1; transform: translateY(0); filter: none; }
}
.cm-chatter-age-0 {
  opacity: 1;
  font-size: 17px;
  line-height: 1.45;
  color: #fbf3e2;
}
.cm-chatter-age-0 .cm-chatter-bullet {
  color: #ff4d4d;
  text-shadow: 0 0 8px rgba(255,77,77,0.85);
  animation: cmChatterPulse 1.2s ease-in-out infinite;
}
@keyframes cmChatterPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.85); }
}
.cm-chatter-age-1 {
  opacity: 0.62;
  font-size: 15px;
  line-height: 1.4;
  color: rgba(216,208,194,0.85);
}
.cm-chatter-age-2 {
  opacity: 0.38;
  font-size: 14px;
  line-height: 1.35;
  color: rgba(216,208,194,0.7);
}
.cm-chatter-age-3 {
  opacity: 0.18;
  font-size: 13px;
  line-height: 1.3;
  color: rgba(216,208,194,0.55);
}
.cm-chatter-bullet {
  color: rgba(255,138,138,0.55);
  font-size: 11px;
  font-style: normal;
  margin-top: 6px;
  flex-shrink: 0;
  width: 14px;
  text-align: center;
}
.cm-chatter-text {
  flex: 1;
  letter-spacing: 0.01em;
  word-break: break-word;
}
.cm-chatter-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 16px;
  border-top: 1px dashed rgba(255,77,77,0.32);
  font-size: 9px;
  letter-spacing: 0.24em;
  color: rgba(255,138,138,0.5);
  font-weight: 700;
}
.cm-chatter-foot-dot {
  width: 4px; height: 4px;
  background: rgba(255,77,77,0.6);
  border-radius: 50%;
}

@media (max-width: 760px) {
  .cm-sec { padding: 60px 18px 70px; }
  .cm-eyebrow { padding: 7px 14px; font-size: 10px; letter-spacing: 0.2em; gap: 8px; }
  .cm-eyebrow-strip { width: 16px; }
  .cm-eyebrow-text { white-space: normal; line-height: 1.4; }
  .cm-stage { width: 160px; height: 160px; margin-bottom: 18px; }
  .cm-glyph-inner { font-size: 130px; }
  .cm-h { font-size: clamp(28px, 9vw, 44px); }
  .cm-stats { gap: 10px; padding: 12px 14px; }
  .cm-stat { min-width: 88px; }
  .cm-stat-sep { display: none; }
  .cm-cd { gap: 6px; padding: 14px 14px; }
  .cm-cd-cell { min-width: 56px; padding: 8px 4px 4px; }
  .cm-cd-l { font-size: 8.5px; letter-spacing: 0.2em; }
  .cm-cd-sep { font-size: 22px; }
  .cm-foot { font-size: 9px; letter-spacing: 0.18em; }
  .cm-corner { width: 18px; height: 18px; top: 10px !important; bottom: 10px !important; left: 10px; right: 10px; }
  .cm-corner-tr, .cm-corner-br { left: auto; right: 10px; }
  .cm-akte { font-size: 9px; letter-spacing: 0.16em; gap: 8px; padding: 6px 10px; }
  .cm-akte-tag { padding: 2px 5px; }
  .cm-akte-class { padding: 2px 6px; }
  .cm-stamp:not(.cm-stamp-2) { font-size: 16px; left: -16px; padding: 3px 8px; }
  .cm-stamp-2 { font-size: 11px; right: -22px; padding: 2px 6px; }
  .cm-chatter-log { padding: 14px 16px; min-height: 200px; gap: 10px; }
  .cm-chatter-age-0 { font-size: 14.5px; }
  .cm-chatter-age-1 { font-size: 13px; }
  .cm-chatter-age-2 { font-size: 12.5px; }
  .cm-chatter-age-3 { font-size: 12px; }
  .cm-chatter-bullet { font-size: 10px; margin-top: 4px; }
  .cm-chatter-head { font-size: 9px; letter-spacing: 0.18em; flex-wrap: wrap; gap: 8px; }
  .cm-chatter-head-meta { font-size: 8.5px; }
  .cm-chatter-foot { font-size: 8.5px; letter-spacing: 0.18em; }
}
@media (max-width: 480px) {
  .cm-cd-sep { display: none; }
  .cm-cd { gap: 4px; }
  .cm-cd-cell { flex: 1 1 calc(25% - 4px); min-width: 0; }
}

/* Live-Leaks · Indizien-Ticker mit gestaffelten Drops */
.leaks {
  position: relative;
  z-index: 2;
  margin: 56px auto 0;
  max-width: 980px;
  padding: 22px 24px 20px;
  background:
    repeating-linear-gradient(0deg, rgba(255,80,80,0.03) 0 1px, transparent 1px 30px),
    rgba(0,0,0,0.42);
  border: 1px solid rgba(255,80,80,0.4);
  border-radius: 3px;
  font-family: "Geist Mono", "JetBrains Mono", ui-monospace, monospace;
}
.leaks::before {
  content: "";
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff4d4d 0 30%, transparent 30% 36%, #ff4d4d 36% 62%, transparent 62% 68%, #ff4d4d 68%);
}
.leaks-head {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(255,80,80,0.32);
}
.leaks-head-strip {
  width: 12px; height: 12px;
  background: #ff4d4d;
  box-shadow: 0 0 10px rgba(255,77,77,0.7);
  animation: leaks-blink 1.4s infinite;
  flex-shrink: 0;
}
@keyframes leaks-blink {
  0%, 60% { opacity: 1; }
  61%, 100% { opacity: 0.25; }
}
.leaks-head-l {
  font-size: 12px;
  letter-spacing: 0.24em;
  color: #ff8a8a;
  font-weight: 700;
  flex: 1;
}
.leaks-head-meta {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(255,138,138,0.78);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.leaks-head-sep {
  color: rgba(255,138,138,0.4);
  margin: 0 2px;
}
.leaks-head-time {
  font-variant-numeric: tabular-nums;
  color: #ff4d4d;
  font-weight: 800;
  margin-left: 6px;
  letter-spacing: 0.14em;
}
.leaks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.leaks-grid-single {
  grid-template-columns: 1fr;
  max-width: 620px;
  margin: 0 auto;
}
.leaks-col-foot {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed rgba(255,80,80,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 9px;
  letter-spacing: 0.22em;
  color: rgba(255,138,138,0.55);
  font-weight: 700;
}
.leaks-col-foot-dot {
  width: 4px; height: 4px;
  background: rgba(255,77,77,0.6);
  border-radius: 50%;
}
.leaks-col {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,80,80,0.18);
  padding: 14px 14px 12px;
  border-radius: 2px;
}
.leaks-col-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(255,80,80,0.25);
}
.leaks-col-plate {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: #ff4d4d;
  font-weight: 800;
}
.leaks-col-status {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(255,138,138,0.7);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.leaks-col-status-dot {
  width: 5px; height: 5px;
  background: #ff4d4d;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(255,77,77,0.7);
}
.leaks-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.leaks-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 10px;
  border-left: 2px solid transparent;
  border-radius: 2px;
  transition: background 0.4s, border-color 0.4s, opacity 0.4s;
}
.leaks-item.is-locked {
  background: repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0 6px, rgba(255,255,255,0.04) 6px 12px);
  border-left-color: rgba(255,80,80,0.18);
  opacity: 0.62;
}
.leaks-item.is-unlocked {
  background: rgba(255,77,77,0.08);
  border-left-color: #ff4d4d;
  animation: leaks-unlock 0.9s ease-out;
}
@keyframes leaks-unlock {
  0% { transform: translateX(-6px); background: rgba(255,77,77,0.32); }
  100% { transform: none; background: rgba(255,77,77,0.08); }
}
.leaks-num {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255,138,138,0.7);
  font-weight: 800;
  padding-top: 2px;
  flex-shrink: 0;
  min-width: 22px;
}
.leaks-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}
.leaks-tag {
  font-size: 9px;
  letter-spacing: 0.28em;
  color: #ff4d4d;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.leaks-tag-locked {
  color: rgba(255,138,138,0.55);
}
.leaks-lock-icon {
  font-size: 11px;
  color: #ff8a8a;
}
.leaks-text {
  font-family: "Newsreader", Georgia, serif;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--paper);
  opacity: 0.92;
}
.leaks-text-locked {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: rgba(255,138,138,0.7);
  opacity: 0.85;
}
.leaks-text-time {
  color: #ff4d4d;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  margin-left: 4px;
  letter-spacing: 0.12em;
}
.leaks-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px dashed rgba(255,80,80,0.32);
  font-size: 9.5px;
  letter-spacing: 0.26em;
  color: rgba(255,138,138,0.6);
  font-weight: 700;
}
.leaks-foot-dot {
  width: 4px; height: 4px;
  background: #ff4d4d;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(255,77,77,0.7);
}
@media (max-width: 760px) {
  .leaks { margin: 40px 4px 0; padding: 18px 14px 14px; }
  .leaks-grid { grid-template-columns: 1fr; gap: 12px; }
  .leaks-head { gap: 10px; }
  .leaks-head-l { font-size: 11px; }
  .leaks-head-meta { font-size: 9.5px; width: 100%; }
  .leaks-text { font-size: 13px; }
  .leaks-foot { font-size: 8.5px; letter-spacing: 0.18em; }
}

@media (max-width: 760px) {
  .cd-sec { padding: 60px 22px 70px; }
  .cd-h { font-size: clamp(36px, 11vw, 64px); }
  .cd-lead { margin-bottom: 30px; font-size: 15px; }
  .cd-grid { gap: 8px; max-width: 100%; }
  .cd-cell { flex: 1 1 70px; min-width: 70px; padding: 14px 4px 10px; }
  .cd-num { font-size: clamp(36px, 12vw, 56px); }
  .cd-l { font-size: 8.5px; letter-spacing: 0.2em; }
  .cd-sep { font-size: 28px; padding: 0; }
  .cd-foot { font-size: 9px; letter-spacing: 0.22em; }
  .cd-mystery { height: 40%; opacity: 0.5; bottom: 30px; }
  .cd-mystery-l { left: -8%; }
  .cd-mystery-r { right: -8%; }
}

@media (max-width: 480px) {
  .cd-sec { padding: 50px 14px 60px; }
  .cd-grid { gap: 6px; }
  .cd-sep { display: none; }
  .cd-cell { flex: 1 1 calc(25% - 6px); min-width: 0; padding: 12px 2px 8px; }
  .cd-num { font-size: 32px; }
  .cd-l { font-size: 7.5px; letter-spacing: 0.16em; }
}

/* ───────────────────────── TRAINERBANK · TRANSFERS / TRAINERTEAM ───────────────────────── */
.tb-sec {
  position: relative;
  background:
    radial-gradient(ellipse at 50% 0%, #1a3361 0%, #0a1b35 60%, #050d1f 100%);
  color: var(--paper);
  padding: 110px 60px 100px;
  overflow: hidden;
}
.tb-grain {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.012) 0 1px, transparent 1px 3px);
  pointer-events: none;
  opacity: 0.5;
}
.tb-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0.7;
  max-width: 1180px;
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
}
.tb-eyebrow-line {
  flex: 1;
  height: 1px;
  background: rgba(243,239,230,0.22);
}
.tb-h {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 400;
  font-size: clamp(48px, 7.5vw, 100px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0 auto 18px;
  max-width: 1180px;
  position: relative;
  z-index: 2;
  color: var(--paper);
  text-align: center;
}
.tb-h em { font-style: italic; color: var(--accent); }
.tb-lead {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto 60px;
  opacity: 0.8;
  position: relative;
  z-index: 2;
  color: var(--paper);
  text-align: center;
}

/* Dugout — Trainerbank in Stadium-Optik */
.tb-dugout {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto 50px;
  padding: 0;
}

/* Roof — wooden plank above the bench, angled */
.tb-roof {
  position: relative;
  height: 32px;
  background:
    linear-gradient(180deg, #2a1c10 0%, #1a1208 100%),
    repeating-linear-gradient(90deg, #2a1c10 0px, #3d2817 2px, #2a1c10 5px);
  border-radius: 6px 6px 0 0;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 4px 8px rgba(0,0,0,0.4);
}
.tb-roof::before {
  content: "";
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.5));
}
.tb-roof::after {
  content: "DUGOUT · LEISACH II";
  position: absolute;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
  font-family: "Geist Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.32em;
  color: rgba(233,191,94,0.7);
  font-weight: 700;
}
.tb-roof-shadow {
  position: absolute;
  top: 100%; left: 0; right: 0;
  height: 24px;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

/* Wall behind the bench */
.tb-wall {
  position: relative;
  height: 12px;
  background:
    repeating-linear-gradient(90deg,
      #2a1c10 0px,
      #4a2f18 2px,
      #2a1c10 4px,
      #3d2817 6px,
      #2a1c10 9px);
  box-shadow: inset 0 1px 0 rgba(0,0,0,0.4);
}

/* The bench itself — 6 seats in a row (default for Kader) */
.tb-bench {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  background: #1a3361;
  padding: 0;
}
/* Trainer variant — 2 seats, taller for clearer photo display */
.tb-bench-trainers {
  grid-template-columns: repeat(2, 1fr);
}
.tb-bench-trainers .tb-seat {
  height: 280px;
}
.tb-bench-trainers .tb-seat-filled {
  height: 360px;
  padding-top: 24px;
}
.tb-bench-trainers .tb-seat-silhouette {
  font-size: 96px;
  margin-bottom: 18px;
}
.tb-bench-trainers .tb-seat-photo {
  height: 90%;
  bottom: 32px;
  transform: scale(1.4);
  transform-origin: 50% 8%;
}
/* 4 Klassen → schlägt den generischen :hover scale(1.04), Zoom bleibt beim Hover erhalten */
.tb-bench-trainers .tb-seat-filled:hover .tb-seat-photo {
  transform: scale(1.48);
}

/* Vacant Cheftrainer plate — red GESUCHT instead of OFFEN */
.tb-seat-plate-gesucht {
  background: linear-gradient(180deg, #c0392b 0%, #8a2820 100%) !important;
  color: #fff !important;
  letter-spacing: 0.2em !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.25),
    0 2px 4px rgba(0,0,0,0.35) !important;
}
.tb-seat-vacant-trainer .tb-seat-silhouette {
  color: rgba(243,239,230,0.22);
}

/* Mini-Pressemitteilung im leeren Cheftrainer-Sitz */
.tb-vacant-news {
  position: relative;
  z-index: 3;
  margin: 14px 14px 12px;
  background: var(--paper);
  color: var(--navy);
  border-radius: 3px;
  padding: 0 0 10px;
  box-shadow:
    0 8px 18px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.5);
  transform: rotate(-1.4deg);
  overflow: hidden;
}
.tb-vacant-news-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #c0392b;
  color: #fff;
  padding: 5px 10px;
  font-family: "Geist Mono", monospace;
  font-size: 8.5px;
  letter-spacing: 0.28em;
  font-weight: 700;
  text-transform: uppercase;
}
.tb-vacant-news-dot {
  width: 5px; height: 5px;
  background: #fff;
  border-radius: 50%;
  animation: bnPulse 1.4s ease-in-out infinite;
  flex: 0 0 auto;
}
.tb-vacant-news-photo {
  position: relative;
  margin: 8px 8px 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 1px;
}
.tb-vacant-news-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) contrast(1.05);
}
.tb-vacant-news-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,27,53,0.7) 100%);
  pointer-events: none;
}
.tb-vacant-news-strike {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      to top right,
      transparent calc(50% - 2.5px),
      rgba(192, 57, 43, 0.92) calc(50% - 2.5px),
      rgba(192, 57, 43, 0.92) calc(50% + 2.5px),
      transparent calc(50% + 2.5px)
    ),
    linear-gradient(
      to top left,
      transparent calc(50% - 2.5px),
      rgba(192, 57, 43, 0.92) calc(50% - 2.5px),
      rgba(192, 57, 43, 0.92) calc(50% + 2.5px),
      transparent calc(50% + 2.5px)
    );
  filter: drop-shadow(0 1px 3px rgba(192,57,43,0.4));
  z-index: 2;
}
.tb-vacant-news-tag {
  position: absolute;
  bottom: 5px; left: 5px;
  font-family: "Geist Mono", monospace;
  font-size: 7.5px;
  letter-spacing: 0.24em;
  background: #c0392b;
  color: #fff;
  padding: 3px 6px;
  font-weight: 700;
  z-index: 3;
}
.tb-vacant-news-headline {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.05;
  color: var(--navy);
  text-align: center;
  padding: 8px 8px 0;
  letter-spacing: -0.01em;
}
.tb-vacant-news-headline em {
  font-style: italic;
  color: #c0392b;
}
.tb-vacant-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Geist Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.8;
  white-space: nowrap;
  z-index: 6;
  pointer-events: none;
}
.tb-seat-vacant-trainer { cursor: pointer; transition: background 0.3s; }
.tb-seat-vacant-trainer:hover .tb-vacant-news {
  transform: rotate(-1deg) translateY(-2px);
  box-shadow:
    0 12px 22px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.55);
}
.tb-vacant-news { transition: transform 0.4s, box-shadow 0.4s; }

/* News Modal — full press release on click */
.news-modal {
  position: fixed;
  inset: 0;
  background: rgba(5, 13, 31, 0.92);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 60px 20px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  animation: playerModalIn 0.3s ease;
}
.news-modal-card {
  position: relative;
  background: var(--paper);
  color: var(--navy);
  max-width: 820px;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
  animation: playerModalSlide 0.5s cubic-bezier(.2,.7,.3,1);
}
.news-modal-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: var(--navy);
  border: 1px solid rgba(10,27,53,0.2);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  z-index: 20;
  transition: background 0.2s, transform 0.2s;
}
.news-modal-close:hover {
  background: var(--accent);
  transform: scale(1.05);
}

/* Top + bottom red ticker strips */
.news-modal-strip {
  background: #c0392b;
  color: #fff;
  padding: 12px 0;
  font-family: "Geist Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.32em;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
}
.news-modal-strip-track {
  display: flex;
  width: max-content;
  animation: bnStripScroll 40s linear infinite;
}
.news-modal-strip-half {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-left: 24px;
  flex: 0 0 auto;
}
.news-modal-strip-dot {
  width: 7px; height: 7px;
  background: #fff;
  border-radius: 50%;
  animation: bnPulse 1.4s ease-in-out infinite;
  flex: 0 0 auto;
}

.news-modal-body {
  padding: 50px 50px 40px;
  position: relative;
}
.news-modal-body::before {
  content: "II";
  position: absolute;
  top: 30px; right: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-size: 280px;
  line-height: 0.8;
  color: rgba(10,27,53,0.05);
  pointer-events: none;
}
.news-modal-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "Geist Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.65;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.news-modal-meta-tag {
  background: var(--navy);
  color: var(--paper);
  padding: 5px 11px;
  letter-spacing: 0.3em;
  opacity: 1;
}
.news-modal-meta-sep {
  flex: 0 0 30px;
  height: 1px;
  background: var(--navy);
  opacity: 0.3;
}
.news-modal-headline {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 500;
  font-size: clamp(40px, 6.5vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 0 32px;
  position: relative;
  z-index: 1;
}
.news-modal-headline em {
  font-style: italic;
  color: #c0392b;
}

.news-modal-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
.news-modal-lead {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.5;
  color: var(--navy);
  margin: 0;
}
.news-modal-lead em {
  font-style: italic;
  color: var(--accent);
}
.news-modal-photo {
  position: relative;
  margin: 0;
  background: var(--navy-2);
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(10,27,53,0.18);
  transform: rotate(0.6deg);
}
.news-modal-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05) grayscale(0.15);
  display: block;
}
.news-modal-photo-strike {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  background:
    linear-gradient(
      to top right,
      transparent calc(50% - 4px),
      rgba(192, 57, 43, 0.92) calc(50% - 4px),
      rgba(192, 57, 43, 0.92) calc(50% + 4px),
      transparent calc(50% + 4px)
    ),
    linear-gradient(
      to top left,
      transparent calc(50% - 4px),
      rgba(192, 57, 43, 0.92) calc(50% - 4px),
      rgba(192, 57, 43, 0.92) calc(50% + 4px),
      transparent calc(50% + 4px)
    );
  filter: drop-shadow(0 2px 5px rgba(192,57,43,0.4));
}
.news-modal-photo figcaption {
  position: absolute;
  left: 14px; right: 14px; bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 4;
  color: var(--paper);
}
.news-modal-photo-tag {
  display: inline-block;
  width: fit-content;
  font-family: "Geist Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.28em;
  background: #c0392b;
  padding: 3px 8px;
  font-weight: 700;
}
.news-modal-photo-cap {
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-size: 13px;
  line-height: 1.2;
  margin-top: 4px;
}

.news-modal-divider {
  height: 1px;
  background: rgba(10,27,53,0.18);
  margin: 0 0 28px;
  position: relative;
  z-index: 1;
}
.news-modal-cta {
  position: relative;
  z-index: 1;
}
.news-modal-cta-tag {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--accent);
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 700;
}
.news-modal-cta-h {
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.05;
  color: var(--navy);
  margin-bottom: 6px;
}
.news-modal-cta-sub {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.65;
}

@media (max-width: 760px) {
  .news-modal { padding: 0; align-items: flex-start; }
  .news-modal-card { border-radius: 0; min-height: auto; width: 100%; max-width: 100%; }
  .news-modal-body { padding: 36px 24px 32px; }
  .news-modal-body::before { font-size: 180px; top: 20px; }
  .news-modal-headline { font-size: clamp(32px, 9vw, 56px); margin-bottom: 24px; }
  .news-modal-grid { grid-template-columns: 1fr; gap: 22px; margin-bottom: 24px; }
  .news-modal-photo img { aspect-ratio: 4 / 3; }
  .news-modal-strip { padding: 10px 0; font-size: 9px; letter-spacing: 0.24em; }
  .news-modal-strip-half { gap: 18px; padding-left: 18px; }
  .news-modal-meta { gap: 10px; flex-wrap: wrap; }
  .news-modal-meta-sep { display: none; }
  .news-modal-close { top: 12px; right: 12px; }

  .tb-vacant-hint { font-size: 8px; letter-spacing: 0.16em; bottom: 16px; }
}

/* Trainer armband — dark wood circle with "T" */
.tb-seat-armband-trainer {
  background: linear-gradient(180deg, #5e3e23 0%, #2a1c10 100%) !important;
  color: #f4d76b !important;
  font-size: 14px !important;
}

/* New player armband — green with white "NEU" */
.tb-seat-armband-new {
  background: linear-gradient(180deg, #2ecc71 0%, #1e8449 100%) !important;
  color: #fff !important;
  font-size: 9.5px !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  width: auto !important;
  min-width: 32px;
  padding: 0 8px;
  border-radius: 999px !important;
}

/* Teaser armband — rotes Fragezeichen */
.tb-seat-armband-teaser {
  background: linear-gradient(180deg, #e74c3c 0%, #8a2820 100%) !important;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 900 !important;
}
.tb-seat-armband-teaser::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(231,76,60,0.4);
  z-index: -1;
  filter: blur(6px);
  animation: tbTeaserPulse 1.6s ease-in-out infinite;
}
@keyframes tbTeaserPulse {
  0%, 100% { opacity: 0.7; }
  50%      { opacity: 1; }
}

/* Teaser-Sitz — dunkelroter Glow im Hintergrund, Silhouette in schwarz */
.tb-seat-teaser {
  cursor: pointer;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.7) 100%),
    radial-gradient(ellipse at 50% 30%, #4a1a1a 0%, #1a0a0a 70%) !important;
}
.tb-seat-teaser-glow {
  position: absolute;
  top: -10%; left: 50%;
  transform: translateX(-50%);
  width: 130%;
  height: 90%;
  background: radial-gradient(ellipse at top, rgba(231,76,60,0.4) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
  filter: blur(10px);
  animation: tbTeaserGlow 3s ease-in-out infinite;
}
@keyframes tbTeaserGlow {
  0%, 100% { opacity: 0.7; }
  50%      { opacity: 1; }
}
.tb-seat-photo-silhouette {
  filter:
    brightness(0)
    drop-shadow(0 0 18px rgba(231,76,60,0.6))
    drop-shadow(0 6px 12px rgba(0,0,0,0.6));
  opacity: 0.92;
}
/* Pending-Photo State: gedaempfter Look + 'FOTO FOLGT' Badge */
.tb-seat-photo-pending {
  filter:
    brightness(0)
    drop-shadow(0 0 14px rgba(233,191,94,0.4))
    drop-shadow(0 6px 12px rgba(0,0,0,0.5));
  opacity: 0.6;
}
.tb-seat-photo-pending-badge {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-4deg);
  background: linear-gradient(180deg, #f4d76b 0%, #b88a25 100%);
  color: #0a1b35;
  font-family: "Geist Mono", monospace;
  font-weight: 900;
  font-size: 9.5px;
  letter-spacing: 0.22em;
  padding: 5px 9px;
  border-radius: 2px;
  z-index: 8;
  pointer-events: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.4);
  white-space: nowrap;
}
/* Im Modal: kleiner gelber Hinweis-Banner ueber der Bio */
.player-modal-photo-pending {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding: 10px 14px;
  background: rgba(233,191,94,0.12);
  border-left: 3px solid #e9bf5e;
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: #f4d76b;
}
.player-modal-photo-pending-icon {
  font-size: 16px;
}
.tb-seat-plate-teaser {
  background: linear-gradient(180deg, #e74c3c 0%, #8a2820 100%) !important;
  color: #fff !important;
}
.tb-seat-plate-role-teaser {
  color: #ffe5b8 !important;
  font-weight: 800;
}

/* Crypt-Text — rotierende Symbole für nicht-enthüllte Spieler */
.crypt {
  font-family: "Geist Mono", "SF Mono", monospace;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #ffe5b8;
  text-shadow:
    0 0 8px rgba(255, 100, 80, 0.7),
    0 0 14px rgba(231, 76, 60, 0.4);
  animation: cryptFlicker 0.4s steps(2) infinite;
}
.crypt-line {
  font-family: "Geist Mono", "SF Mono", monospace !important;
  font-style: normal !important;
  letter-spacing: 0.04em !important;
  text-transform: none !important;
}
@keyframes cryptFlicker {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.9; }
}

/* Teaser im Modal — rotes Armband */
.player-modal-armband.is-teaser {
  font-size: 24px;
  background: linear-gradient(180deg, #e74c3c 0%, #8a2820 100%);
  color: #fff;
  border-color: #fff;
}
.player-modal-photo-wrap.is-teaser {
  background:
    repeating-linear-gradient(0deg, rgba(0,0,0,0.05) 0 1px, transparent 1px 4px),
    radial-gradient(ellipse at 50% 80%, #4a1a1a 0%, #0a0505 70%);
}
.player-modal-photo-wrap.is-teaser .player-modal-glow {
  background: radial-gradient(ellipse at top, rgba(231,76,60,0.55) 0%, transparent 65%);
}
.player-modal-photo.is-silhouette {
  filter:
    brightness(0)
    drop-shadow(0 0 30px rgba(231,76,60,0.7))
    drop-shadow(0 12px 22px rgba(0,0,0,0.7));
}
.tb-seat-plate-role-new {
  color: #1e8449 !important;
  font-weight: 800;
}
.tb-seat-new .tb-seat-spotlight {
  background: radial-gradient(ellipse at top, rgba(46,204,113,0.32) 0%, transparent 60%);
}

/* Frischer Transfer 2026 — gold/rot statt grün, mit Pulse + Sticker */
.tb-seat-fresh {
  position: relative;
  animation: tbFreshGlow 2.4s ease-in-out infinite;
}
@keyframes tbFreshGlow {
  0%, 100% { box-shadow: 0 0 0 1px rgba(192,57,43,0.45), 0 0 18px rgba(233,191,94,0.25); }
  50%      { box-shadow: 0 0 0 1px rgba(192,57,43,0.85), 0 0 32px rgba(233,191,94,0.45); }
}
.tb-seat-fresh .tb-seat-spotlight {
  background: radial-gradient(ellipse at top, rgba(192,57,43,0.4) 0%, rgba(233,191,94,0.18) 35%, transparent 70%);
}
.tb-seat-armband-fresh {
  background: linear-gradient(180deg, #ffd24a 0%, #c0392b 100%) !important;
  color: #fff !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  letter-spacing: 0.04em !important;
  text-shadow: 0 0 6px rgba(255,255,255,0.35);
}
.tb-seat-armband-fresh::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,77,77,0.55) 0%, transparent 70%);
  z-index: -1;
  filter: blur(8px);
  animation: tbFreshPulse 1.6s ease-in-out infinite;
}
@keyframes tbFreshPulse {
  0%, 100% { opacity: 0.55; transform: scale(0.9); }
  50%      { opacity: 1; transform: scale(1.18); }
}
.tb-seat-fresh-sticker {
  position: absolute;
  top: 16px;
  left: 12px;
  z-index: 7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c0392b 0%, #e9bf5e 50%, #c0392b 100%);
  color: #fff;
  font-family: "Geist Mono", monospace;
  font-weight: 900;
  text-align: center;
  transform: rotate(-12deg);
  box-shadow: 0 6px 16px rgba(192,57,43,0.55), inset 0 0 0 2px rgba(255,255,255,0.2);
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
  animation: tbFreshStickerWobble 3.2s ease-in-out infinite;
}
@keyframes tbFreshStickerWobble {
  0%, 100% { transform: rotate(-12deg) scale(1); }
  50%      { transform: rotate(-8deg) scale(1.06); }
}
.tb-seat-fresh-sticker-l1 {
  font-size: 10px;
  letter-spacing: 0.08em;
  line-height: 1;
}
.tb-seat-fresh-sticker-l2 {
  font-size: 8px;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-top: 2px;
  color: #fff8d8;
}
.tb-seat-plate-role-fresh {
  color: #c0392b !important;
  font-weight: 900 !important;
  letter-spacing: 0.14em !important;
  text-shadow: 0 1px 0 rgba(233,191,94,0.45);
}
@media (max-width: 760px) {
  .tb-seat-fresh-sticker { width: 42px; height: 42px; top: 12px; left: 8px; }
  .tb-seat-fresh-sticker-l1 { font-size: 8.5px; }
  .tb-seat-fresh-sticker-l2 { font-size: 7px; }
}
.tb-seat {
  position: relative;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%),
    radial-gradient(ellipse at 50% 30%, #1f3d6e 0%, #0a1b35 70%);
  padding: 28px 6px 12px;
  text-align: center;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}
.tb-seat::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% -20%, rgba(233,191,94,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.tb-seat-back {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60%;
  background:
    linear-gradient(180deg, rgba(20,47,87,0.7) 0%, transparent 100%);
  pointer-events: none;
}
.tb-seat-silhouette {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-size: 56px;
  line-height: 1;
  color: rgba(243,239,230,0.18);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  text-shadow: 0 4px 8px rgba(0,0,0,0.5);
  user-select: none;
}
.tb-seat-plate {
  display: inline-block;
  background: linear-gradient(180deg, #d4a84a 0%, #8b6818 100%);
  color: #2a1c10;
  font-family: "Big Shoulders Display", "Archivo", sans-serif;
  font-weight: 800;
  font-size: 9.5px;
  letter-spacing: 0.22em;
  padding: 5px 10px;
  border-radius: 1px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.4),
    0 2px 4px rgba(0,0,0,0.3);
  position: relative;
  z-index: 2;
}
.tb-seat-cushion {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 14px;
  background:
    linear-gradient(180deg, #4a2f18 0%, #2a1c10 100%);
  border-top: 1px solid rgba(0,0,0,0.4);
  box-shadow: inset 0 1px 0 rgba(212, 168, 74, 0.15);
  z-index: 5;
}

/* Filled seat — actual player photo */
.tb-seat-filled {
  height: 280px;
  padding-top: 20px;
  padding-bottom: 14px;
  justify-content: flex-end;
  overflow: hidden;
}
.tb-seat-spotlight {
  position: absolute;
  top: -10%; left: 50%;
  transform: translateX(-50%);
  width: 130%;
  height: 70%;
  background: radial-gradient(ellipse at top, rgba(233,191,94,0.32) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
  filter: blur(6px);
}
.tb-seat-photo {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 60px;
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: center top;
  z-index: 2;
  filter:
    drop-shadow(0 6px 12px rgba(0,0,0,0.5))
    drop-shadow(0 2px 4px rgba(0,0,0,0.4));
  transition: transform 0.5s cubic-bezier(.2,.7,.3,1);
}
.tb-seat-filled:hover .tb-seat-photo {
  transform: scale(1.04);
}
.tb-seat-plate-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  line-height: 1;
  padding: 6px 12px 7px;
  z-index: 6;
  position: relative;
  margin-bottom: 4px;
}
.tb-seat-plate-first {
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0;
  color: #2a1c10;
  text-transform: none;
  opacity: 0.85;
}
.tb-seat-plate-last {
  font-family: "Big Shoulders Display", "Archivo", sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: #2a1c10;
  text-transform: uppercase;
}
.tb-seat-plate-role {
  font-family: "Geist Mono", monospace;
  font-size: 8.5px;
  letter-spacing: 0.28em;
  color: #c0392b;
  font-weight: 700;
  margin-bottom: 1px;
}

/* Captain armband — small "C" / "VC" badge over the photo */
.tb-seat-armband {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 7;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Big Shoulders Display", "Archivo", sans-serif;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.06em;
  background: linear-gradient(180deg, #d4a84a 0%, #8b6818 100%);
  color: #2a1c10;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.45),
    0 4px 10px rgba(0,0,0,0.4);
  border: 2px solid #2a1c10;
}
.tb-seat-armband-c {
  background: linear-gradient(180deg, #f4d76b 0%, #b88a25 100%);
}
.tb-seat-armband-vc {
  background: linear-gradient(180deg, #d4a84a 0%, #8b6818 100%);
  font-size: 11px;
}
.tb-seat-armband::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233,191,94,0.45) 0%, transparent 70%);
  z-index: -1;
  filter: blur(6px);
}
.tb-seat-captain .tb-seat-spotlight {
  background: radial-gradient(ellipse at top, rgba(233,191,94,0.5) 0%, transparent 65%);
}

/* Country flag — small badge top left of the seat (real circular flag) */
.tb-seat-flag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 7;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-block;
  background: #fff;
  border: 2px solid #2a1c10;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.5),
    0 4px 8px rgba(0,0,0,0.35);
  overflow: hidden;
}
.tb-seat-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

/* Floor / Boden */
.tb-floor {
  height: 24px;
  background:
    repeating-linear-gradient(90deg,
      #4a2f18 0px,
      #6b4528 1px,
      #5e3e23 3px,
      #4a2f18 4px,
      #7a4f2e 7px,
      #4a2f18 9px);
  border-top: 2px solid #2a1c10;
  border-radius: 0 0 4px 4px;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.5);
}

/* Status strip */
.tb-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--accent);
  color: var(--navy);
  padding: 14px 24px;
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 700;
  max-width: 980px;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
}
.tb-status-dot {
  width: 8px; height: 8px;
  background: #c0392b;
  border-radius: 50%;
  animation: tbPulse 1.2s ease-in-out infinite;
}
@keyframes tbPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.85); }
}
.tb-foot {
  font-family: "Geist Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-align: center;
  opacity: 0.5;
  position: relative;
  z-index: 2;
  color: var(--paper);
}

.tb-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s, transform 0.7s;
}
.tb-reveal.in-view { opacity: 1; transform: none; }

/* === Trainerteam-Foto · getapetes Polaroid (hatte bisher kein CSS → renderte ungecroppt) === */
.tb-team-photo {
  position: relative;
  width: min(540px, 100%);
  margin: 0 auto 44px;
  background: #f6f1e3;
  padding: 16px 16px 12px;
  border-radius: 3px;
  box-shadow:
    0 20px 40px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.55);
}
/* nach .tb-reveal.in-view platziert → überschreibt dessen transform:none, Polaroid-Neigung bleibt */
.tb-team-photo.in-view { transform: rotate(-1.4deg); }
.tb-team-photo-frame {
  overflow: hidden;
  border-radius: 2px;
  line-height: 0;
  background: #0a1b35;
}
.tb-team-photo-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 18%;
  filter: saturate(1.02) contrast(1.02);
}
.tb-team-photo-tape {
  position: absolute;
  z-index: 4;
  width: 104px;
  height: 28px;
  background: rgba(243,239,230,0.62);
  border: 1px solid rgba(10,27,53,0.08);
  box-shadow: 0 2px 6px rgba(0,0,0,0.22);
}
.tb-team-photo-tape-l { top: -12px; left: -18px; transform: rotate(-22deg); }
.tb-team-photo-tape-r { top: -14px; right: -18px; transform: rotate(19deg); }
.tb-team-photo-cap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding-top: 11px;
}
.tb-team-photo-cap-l {
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.26em;
  font-weight: 700;
  color: #c0392b;
}
.tb-team-photo-cap-r {
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-size: 13.5px;
  color: #2a1c10;
  opacity: 0.82;
  text-align: center;
}

/* ── Player Modal — clickable filled seats open this ── */
.tb-seat-filled { cursor: pointer; }
.tb-seat-filled:hover { background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.55) 100%), radial-gradient(ellipse at 50% 30%, #2a4d80 0%, #0a1b35 70%); }

.player-modal {
  position: fixed;
  inset: 0;
  background: rgba(5, 13, 31, 0.92);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 24px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  animation: playerModalIn 0.3s ease;
}
@keyframes playerModalIn { from { opacity: 0; } }
.player-modal-card {
  position: relative;
  background:
    radial-gradient(ellipse at 50% 0%, #1a3361 0%, #0a1b35 60%, #050d1f 100%);
  color: var(--paper);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  max-width: 880px;
  width: 100%;
  border-radius: 4px;
  border: 1px solid rgba(233,191,94,0.32);
  box-shadow:
    0 30px 60px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.06);
  /* kein overflow:hidden — würde das sticky Foto-Panel blockieren; Eckclipping macht das Panel selbst */
  align-items: start;
  animation: playerModalSlide 0.5s cubic-bezier(.2,.7,.3,1);
}
@keyframes playerModalSlide { from { transform: translateY(20px) scale(0.98); opacity: 0; } }
.player-modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(243,239,230,0.12);
  color: var(--paper);
  border: 1px solid rgba(243,239,230,0.2);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s, transform 0.2s;
}
.player-modal-close:hover {
  background: var(--accent);
  color: var(--navy);
  transform: scale(1.05);
}

.player-modal-photo-wrap {
  position: sticky;
  top: 0;
  align-self: start;
  background:
    repeating-linear-gradient(0deg,
      rgba(0,0,0,0.05) 0 1px, transparent 1px 4px),
    radial-gradient(ellipse at 50% 80%, #1a3361 0%, #0a1b35 70%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 16px 8px 0;
  min-height: 480px;
  max-height: 100vh;
  overflow: hidden;
  border-radius: 4px 0 0 4px;
}
.player-modal-glow {
  position: absolute;
  top: -10%; left: 50%;
  transform: translateX(-50%);
  width: 140%;
  height: 90%;
  background: radial-gradient(ellipse at top, rgba(233,191,94,0.55) 0%, transparent 65%);
  pointer-events: none;
  filter: blur(14px);
}
.player-modal-photo {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter:
    drop-shadow(0 12px 18px rgba(0,0,0,0.6))
    drop-shadow(0 4px 6px rgba(0,0,0,0.5));
  align-self: stretch;
}
.player-modal-armband {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 6;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Big Shoulders Display", "Archivo", sans-serif;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: #2a1c10;
  background: linear-gradient(180deg, #f4d76b 0%, #b88a25 100%);
  border: 2.5px solid #2a1c10;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.5),
    0 6px 14px rgba(0,0,0,0.45);
}
.player-modal-armband.is-vc {
  font-size: 14px;
  background: linear-gradient(180deg, #d4a84a 0%, #8b6818 100%);
}
.player-modal-armband.is-trainer {
  font-size: 16px;
  background: linear-gradient(180deg, #5e3e23 0%, #2a1c10 100%);
  color: #f4d76b;
}
.player-modal-armband::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233,191,94,0.55) 0%, transparent 70%);
  z-index: -1;
  filter: blur(6px);
}

.player-modal-text {
  padding: 38px 36px 36px;
  display: flex;
  flex-direction: column;
}
.player-modal-role {
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.32em;
  color: #f4d76b;
  margin-bottom: 12px;
  font-weight: 700;
}
.player-modal-name {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0 0 10px;
}
.player-modal-first {
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  color: var(--accent);
  line-height: 1;
}
.player-modal-last {
  font-family: "Big Shoulders Display", "Archivo", sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 4.5vw, 52px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--paper);
  line-height: 0.9;
}
.player-modal-meta-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(243,239,230,0.18);
}
.player-modal-flag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(243,239,230,0.08);
  border: 1px solid rgba(243,239,230,0.22);
  padding: 5px 12px 5px 6px;
  border-radius: 999px;
}
.player-modal-flag-emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid rgba(0,0,0,0.25);
  overflow: hidden;
  flex: 0 0 auto;
}
.player-modal-flag-emoji img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.player-modal-flag-country {
  font-family: "Geist Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0.85;
  font-weight: 700;
}
.player-modal-position {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0.65;
}
.player-modal-bio {
  font-family: "Newsreader", Georgia, serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--paper);
  opacity: 0.88;
  margin: 0 0 18px;
  flex: 1;
}

/* Selbst geschriebene Spieler-Notiz — wirkt wie Edding-/Stift-Kommentar */
.player-modal-quote {
  position: relative;
  margin: 0 0 28px;
  padding: 16px 20px 18px 38px;
  background: rgba(243,239,230,0.06);
  border-left: 3px solid var(--accent);
  border-radius: 0 4px 4px 0;
}
.player-modal-quote-mark {
  position: absolute;
  top: -6px;
  left: 8px;
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-size: 60px;
  color: var(--accent);
  line-height: 1;
  opacity: 0.85;
}
.player-modal-quote p {
  font-family: "Caveat", "Brush Script MT", cursive;
  font-size: 22px;
  line-height: 1.35;
  color: #ffe9b8;
  margin: 0 0 10px;
  letter-spacing: 0.005em;
  font-weight: 500;
}
.player-modal-quote footer {
  font-family: "Caveat", "Brush Script MT", cursive;
  font-size: 16px;
  color: var(--accent);
  text-align: right;
  margin-right: 4px;
  opacity: 0.95;
}
/* Teaser-Dossier — geleakte Indizien-Akte mit Mini-Countdown */
.player-modal-dossier {
  margin: 0 0 28px;
  padding: 18px 20px 16px;
  background:
    repeating-linear-gradient(0deg, rgba(255,80,80,0.04) 0 1px, transparent 1px 28px),
    rgba(8,12,20,0.55);
  border: 1px solid rgba(255,80,80,0.45);
  border-left: 3px solid #ff4d4d;
  border-radius: 2px;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
  font-family: "Geist Mono", "JetBrains Mono", ui-monospace, monospace;
}
.player-modal-dossier::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff4d4d 0%, #ff4d4d 38%, transparent 38%, transparent 42%, #ff4d4d 42%, #ff4d4d 70%, transparent 70%, transparent 74%, #ff4d4d 74%);
  opacity: 0.85;
}
.pmd-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(255,80,80,0.35);
}
.pmd-head-strip {
  width: 14px; height: 14px;
  background: #ff4d4d;
  box-shadow: 0 0 12px rgba(255,77,77,0.7);
  animation: pmd-blink 1.4s infinite;
}
@keyframes pmd-blink {
  0%, 60% { opacity: 1; }
  61%, 100% { opacity: 0.25; }
}
.pmd-head-l {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: #ff8a8a;
  font-weight: 700;
  flex: 1;
}
.pmd-head-stamp {
  font-size: 9px;
  letter-spacing: 0.28em;
  color: #ff4d4d;
  border: 1px solid #ff4d4d;
  padding: 3px 7px;
  transform: rotate(-3deg);
  font-weight: 800;
}
.pmd-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pmd-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 10px;
  background: rgba(255,255,255,0.025);
  border-left: 2px solid rgba(255,80,80,0.25);
}
.pmd-num {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255,138,138,0.7);
  font-weight: 700;
  padding-top: 2px;
  flex-shrink: 0;
  min-width: 22px;
}
.pmd-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.pmd-tag {
  font-size: 9px;
  letter-spacing: 0.28em;
  color: #ff4d4d;
  font-weight: 800;
}
.pmd-text {
  font-family: "Newsreader", Georgia, serif;
  font-size: 14px;
  line-height: 1.5;
  color: var(--paper);
  opacity: 0.9;
}
.pmd-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed rgba(255,80,80,0.35);
}
.pmd-foot-dot {
  width: 4px; height: 4px;
  background: #ff4d4d;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(255,77,77,0.7);
}
.pmd-foot-l {
  font-size: 10px;
  letter-spacing: 0.24em;
  color: rgba(255,138,138,0.75);
  font-weight: 700;
}
.pmd-foot-time {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 18px;
  letter-spacing: 0.18em;
  color: #ff4d4d;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 10px rgba(255,77,77,0.45);
}
@media (max-width: 700px) {
  .player-modal-dossier { padding: 14px 14px 12px; }
  .pmd-text { font-size: 13px; }
  .pmd-foot-time { font-size: 16px; }
}

/* Signed photo — a Polaroid-style "signed for the collection" element */
.player-modal-sig {
  position: relative;
  margin: 0 0 32px;
  background: #f6f1e3;
  padding: 12px 12px 14px;
  border-radius: 2px;
  box-shadow:
    0 14px 28px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.5);
  transform: rotate(-1.6deg);
  max-width: 360px;
  align-self: flex-start;
}
.player-modal-sig img {
  display: block;
  width: 100%;
  height: auto;
  filter: saturate(0.9) contrast(1.05);
  border-radius: 1px;
}
.player-modal-sig-tape {
  position: absolute;
  width: 80px;
  height: 22px;
  background: rgba(243,239,230,0.7);
  border: 1px solid rgba(10,27,53,0.08);
  box-shadow: 0 2px 4px rgba(0,0,0,0.18);
  z-index: 3;
}
.player-modal-sig-tape-l {
  top: -8px;
  left: -14px;
  transform: rotate(-22deg);
}
.player-modal-sig-tape-r {
  top: -10px;
  right: -10px;
  transform: rotate(18deg);
}
.player-modal-sig figcaption {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 0 4px;
}
.player-modal-sig-tag {
  font-family: "Geist Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.28em;
  color: var(--paper);
  background: #c0392b;
  padding: 3px 8px;
  font-weight: 700;
  border-radius: 1px;
  text-transform: uppercase;
}
.player-modal-sig-cap {
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  color: #2a1c10;
  opacity: 0.78;
}

.player-modal-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Geist Mono", monospace;
  font-size: 9.5px;
  letter-spacing: 0.28em;
  color: var(--paper);
  opacity: 0.5;
  text-transform: uppercase;
}

/* Download-Button für Instagram-Story */
.player-modal-dl {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  padding: 14px 22px;
  background: var(--accent);
  color: var(--navy);
  font-family: "Big Shoulders Display", "Archivo", sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, transform 0.3s;
  align-self: flex-start;
}
.player-modal-dl:hover {
  background: #fff;
  transform: translateY(-2px);
}
.player-modal-dl-icon {
  font-size: 16px;
  line-height: 1;
}

/* IG-Card Host — versteckt, off-screen für html-to-image Capture */
.ig-card-host {
  position: fixed;
  top: 0;
  left: -2000px;
  width: 1080px;
  height: 1080px;
  pointer-events: none;
  z-index: -1;
  opacity: 1;
}

/* ==================================================================
   TRADING POSTER · Editorial Magazine Portrait (v3)
   1080x1350 (IG 4:5 Portrait Post) — TYPOGRAPHY HERO
   Riesige italic First-Name + massive distressed Surname + Polaroids
   ================================================================== */
.tp-card-host {
  position: fixed;
  top: 0;
  left: -3000px;
  width: 1080px;
  height: 1350px;
  pointer-events: none;
  z-index: -1;
  opacity: 1;
}
.tp-card.tp-v2 {
  position: relative;
  width: 1080px;
  height: 1350px;
  background: #efe7d2;
  color: #0a1b35;
  font-family: "Newsreader", Georgia, serif;
  overflow: hidden;
  isolation: isolate;
}

/* === Background texture layers === */
.tp-paper {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at 85% 8%, rgba(255,210,140,0.36) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 92%, rgba(10,27,53,0.08) 0%, transparent 55%),
    linear-gradient(180deg, #f1eadc 0%, #e7ddc1 100%);
}
.tp-paper-grain {
  position: absolute; inset: 0; z-index: 2;
  background-image:
    repeating-radial-gradient(circle at 31% 39%, rgba(10,27,53,0.04) 0 0.6px, transparent 0.6px 2.5px),
    repeating-linear-gradient(48deg, rgba(10,27,53,0.022) 0 1px, transparent 1px 2px),
    repeating-linear-gradient(132deg, rgba(255,255,255,0.07) 0 1px, transparent 1px 4px);
  mix-blend-mode: multiply;
  opacity: 0.78;
}
.tp-halftone {
  position: absolute;
  right: 30px; top: 180px;
  width: 280px; height: 280px;
  background-image: radial-gradient(circle at center, #0a1b35 1.6px, transparent 1.8px);
  background-size: 11px 11px;
  opacity: 0.09;
  z-index: 3;
  border-radius: 50%;
  -webkit-mask-image: radial-gradient(circle at center, black 50%, transparent 78%);
          mask-image: radial-gradient(circle at center, black 50%, transparent 78%);
}
.tp-lightleak {
  position: absolute;
  top: -160px; right: -160px;
  width: 580px; height: 580px;
  background: radial-gradient(circle, rgba(255,175,60,0.48) 0%, rgba(255,140,40,0.2) 30%, transparent 65%);
  z-index: 4;
  filter: blur(28px);
  pointer-events: none;
  mix-blend-mode: screen;
}
.tp-stain {
  position: absolute;
  border-radius: 50%;
  z-index: 5;
  pointer-events: none;
  mix-blend-mode: multiply;
  filter: blur(10px);
}
.tp-stain-1 {
  top: 360px; left: 22px;
  width: 200px; height: 140px;
  background: radial-gradient(ellipse at center, rgba(184,138,37,0.2) 0%, transparent 70%);
  transform: rotate(-12deg);
}
.tp-stain-2 {
  bottom: 280px; right: 80px;
  width: 240px; height: 170px;
  background: radial-gradient(ellipse at center, rgba(192,57,43,0.18) 0%, transparent 70%);
  transform: rotate(8deg);
}

/* === Diagonal dark zone with torn-paper rip === */
.tp-dark-zone {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 6;
  pointer-events: none;
}

/* === Editorial top header — größer === */
.tp-edit-bar {
  position: absolute;
  top: 40px;
  left: 60px;
  right: 60px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 3px solid #0a1b35;
}
.tp-edit-l {
  font-family: "Geist Mono", monospace;
  font-size: 16px;
  letter-spacing: 0.26em;
  font-weight: 800;
  color: #0a1b35;
}
.tp-edit-tag {
  background: #c0392b;
  color: #efe7d2;
  padding: 6px 12px;
  margin-right: 14px;
  letter-spacing: 0.32em;
  font-size: 15px;
}
.tp-edit-id {
  color: #c0392b;
  font-weight: 900;
  margin-right: 8px;
  font-size: 18px;
}
.tp-edit-sep {
  opacity: 0.4;
  margin: 0 10px;
}
.tp-edit-date { opacity: 0.85; }
.tp-edit-crest {
  width: 68px;
  height: 68px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.22));
}

/* === Red eyebrow row === */
.tp-eyebrow-row {
  position: absolute;
  top: 132px;
  left: 60px;
  right: 60px;
  z-index: 30;
}
.tp-eyebrow-text {
  font-family: "Geist Mono", monospace;
  font-size: 17px;
  letter-spacing: 0.36em;
  font-weight: 800;
  color: #c0392b;
}

/* === First name as huge italic title — MAGAZINE HERO TYPO === */
.tp-firstname-row {
  position: absolute;
  top: 162px;
  left: 60px;
  right: 60px;
  z-index: 30;
  display: flex;
  align-items: baseline;
  gap: 18px;
}
.tp-firstname {
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 142px;
  line-height: 1;
  letter-spacing: -0.025em;
  color: #0a1b35;
}
.tp-firstname em {
  font-style: italic;
  color: #c0392b;
  font-weight: 600;
}
.tp-firstname-sub {
  font-family: "Geist Mono", monospace;
  font-size: 17px;
  letter-spacing: 0.28em;
  color: rgba(10,27,53,0.65);
  font-weight: 800;
  white-space: nowrap;
  padding-bottom: 14px;
}

/* === Photo collage stage === */
.tp-stage-v2 {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
}

/* === Universelle zentrale Spielerfigur — kein Frame, steht VOR der MOSER-Typo === */
.tp-photo-main {
  position: absolute;
  left: 50%;
  top: 220px;
  transform: translateX(-50%);
  width: 580px;
  height: 720px;
  z-index: 26; /* ueber MOSER (22) — Spieler steht visuell vor dem Surname */
  filter:
    drop-shadow(0 30px 50px rgba(0,0,0,0.42))
    drop-shadow(0 0 28px rgba(192,57,43,0.14));
}
.tp-photo-main-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: contrast(1.04) saturate(1.02);
}

/* === Autogramm-Polaroid rechts oben (v4) === */
.tp-photo-sig-v4 {
  position: absolute;
  right: 32px;
  top: 230px;
  width: 240px;
  z-index: 28; /* ueber Photo (26) damit es nicht abgeschnitten wird */
  transform: rotate(4deg);
  filter: drop-shadow(0 16px 30px rgba(0,0,0,0.42));
}
.tp-photo-sig-v4-frame {
  position: relative;
  background: #f8f1de;
  padding: 12px 12px 14px;
  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,0.06),
    0 0 0 1px rgba(0,0,0,0.04);
}
.tp-photo-sig-v4-img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center center;
  background: #efe7d2;
  filter: contrast(1.04);
}
.tp-photo-sig-v4-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 10px;
  gap: 8px;
}
.tp-photo-sig-v4-tag {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.26em;
  color: #c0392b;
  font-weight: 800;
}
.tp-photo-sig-v4-sub {
  font-family: "Caveat", cursive;
  font-size: 18px;
  color: rgba(10,27,53,0.65);
}
.tp-tape-sig-v4 {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(-4deg);
  width: 120px;
  height: 22px;
  background: linear-gradient(180deg, rgba(244,215,107,0.78) 0%, rgba(184,138,37,0.6) 100%);
  box-shadow: 0 2px 4px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.4);
  z-index: 5;
}

/* Legacy v3 Photo-Komponenten (Hero-Polaroid + Action-Photo) — nicht mehr im JSX, behalten als dead code */
.tp-photo-action {
  position: absolute;
  right: -50px;
  top: 230px;
  width: 620px;
  height: 540px;
  z-index: 14;
  transform: rotate(2deg);
  filter:
    drop-shadow(0 30px 50px rgba(0,0,0,0.5))
    drop-shadow(0 -10px 30px rgba(0,0,0,0.18));
}
.tp-photo-action-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}
.tp-photo-action-img.is-real {
  filter: contrast(1.08) saturate(1.08);
}

/* Hero portrait — polaroid card */
.tp-photo-hero {
  position: absolute;
  left: 60px;
  top: 340px;
  width: 320px;
  z-index: 16;
  transform: rotate(-2.6deg);
}
.tp-photo-hero-frame {
  position: relative;
  background: #f8f1de;
  padding: 13px 13px 72px;
  box-shadow:
    0 22px 42px rgba(0,0,0,0.32),
    0 6px 12px rgba(0,0,0,0.18),
    inset 0 0 0 1px rgba(0,0,0,0.06);
}
.tp-photo-hero-img {
  display: block;
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center 18%;
  background: #e9dfc4;
  filter: contrast(1.04);
}
.tp-photo-hero-cap-block {
  position: absolute;
  bottom: 16px;
  left: 14px;
  right: 14px;
  text-align: center;
}
.tp-photo-hero-cap {
  display: block;
  font-family: "Caveat", "Brush Script MT", cursive;
  font-size: 30px;
  color: #0a1b35;
  line-height: 1.05;
}
.tp-photo-hero-cap-sub {
  display: block;
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.28em;
  color: rgba(10,27,53,0.55);
  margin-top: 4px;
  font-weight: 700;
}

/* Yellow tape pieces */
.tp-tape {
  position: absolute;
  width: 100px;
  height: 26px;
  background: linear-gradient(180deg, rgba(244,215,107,0.78) 0%, rgba(184,138,37,0.6) 100%);
  box-shadow: 0 2px 5px rgba(0,0,0,0.16), inset 0 1px 0 rgba(255,255,255,0.4);
  z-index: 5;
}
.tp-tape-tl {
  top: -12px;
  left: -28px;
  transform: rotate(-34deg);
}
.tp-tape-br {
  bottom: 70px;
  right: -30px;
  transform: rotate(20deg);
}
.tp-tape-sig {
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 140px;
  height: 24px;
}

/* Jubel mini-polaroid */
.tp-photo-jubel {
  position: absolute;
  left: 36px;
  top: 770px;
  width: 200px;
  z-index: 17;
  transform: rotate(5deg);
  filter: drop-shadow(0 14px 24px rgba(0,0,0,0.4));
}
.tp-photo-jubel-frame {
  background: #f8f1de;
  padding: 9px 9px 9px;
}
.tp-photo-jubel-img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center 20%;
  background: #0a1b35;
  filter: contrast(1.08) saturate(1.05);
}
.tp-photo-jubel-cap {
  display: block;
  text-align: center;
  font-family: "Caveat", cursive;
  font-size: 24px;
  color: #c0392b;
  margin-top: 8px;
  transform: rotate(-1.5deg);
}

/* Autogramm-Polaroid */
.tp-photo-sig {
  position: absolute;
  right: 50px;
  bottom: 280px;
  width: 280px;
  z-index: 18;
  transform: rotate(3.5deg);
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.45));
}
.tp-photo-sig-frame {
  position: relative;
  background: #f8f1de;
  padding: 12px 12px 16px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05);
}
.tp-photo-sig-img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: center 30%;
  background: #efe7d2;
  filter: contrast(1.04);
}
.tp-photo-sig-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  gap: 8px;
}
.tp-photo-sig-tag {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.28em;
  color: #c0392b;
  font-weight: 800;
}
.tp-photo-sig-sub {
  font-family: "Caveat", cursive;
  font-size: 18px;
  color: rgba(10,27,53,0.65);
}

/* === MASSIVE distressed surname — Hero typo === */
.tp-name-massive {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 280px;
  z-index: 22;
  text-align: center;
  height: 280px;
  pointer-events: none;
}
.tp-name-shadow,
.tp-name-main {
  position: absolute;
  left: 0; right: 0;
  font-family: "Big Shoulders Display", "Anton", "Archivo Black", sans-serif;
  font-weight: 900;
  font-size: 360px;
  line-height: 0.82;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.tp-name-shadow {
  color: #c0392b;
  transform: translate(12px, 14px);
  opacity: 0.95;
}
.tp-name-main {
  color: #efe7d2;
  -webkit-text-stroke: 3px #0a1b35;
}

/* Caveat handwritten signature line */
.tp-sig-line {
  position: absolute;
  left: 60px;
  top: 305px;
  z-index: 27;
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-family: "Caveat", "Brush Script MT", cursive;
  color: #c0392b;
  transform: rotate(-1.5deg);
}
.tp-sig-cursive {
  font-size: 46px;
  line-height: 1;
}
.tp-sig-cursive-sub {
  font-size: 30px;
  opacity: 0.78;
  color: rgba(10,27,53,0.7);
}
.tp-sig-arrow {
  font-size: 26px;
  color: #c0392b;
}

/* Magazine stats bar — 4 cells, MASSIVE numbers */
.tp-stats-bar {
  position: absolute;
  left: 60px;
  right: 60px;
  bottom: 90px;
  z-index: 28;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 2px solid rgba(239,231,210,0.35);
  border-bottom: 2px solid rgba(239,231,210,0.35);
  padding: 22px 0;
}
.tp-stat-cell {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 0 14px;
}
.tp-stat-cell:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 14%;
  bottom: 14%;
  width: 1px;
  background: rgba(239,231,210,0.24);
}
.tp-stat-cell-l {
  height: 36px;
  display: grid;
  place-items: center;
  font-family: "Geist Mono", monospace;
  font-size: 18px;
  color: rgba(239,231,210,0.55);
  font-weight: 800;
}
.tp-stat-cell-l img {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(244,215,107,0.55);
}
.tp-stat-cell-v {
  font-family: "Big Shoulders Display", "Anton", sans-serif;
  font-weight: 900;
  font-size: 56px;
  line-height: 1;
  color: #f4d76b;
  letter-spacing: -0.01em;
}
.tp-stat-cell-v-sm { font-size: 26px; padding: 8px 0 0; line-height: 1.05; }
.tp-stat-cell-v-xs { font-size: 17px; padding: 12px 0 0; line-height: 1.18; letter-spacing: 0.04em; }
.tp-stat-cell-cap {
  margin-top: 6px;
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: rgba(239,231,210,0.65);
  font-weight: 800;
}

/* Footer slogan strip */
.tp-foot-v2 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-family: "Geist Mono", monospace;
  font-size: 16px;
  letter-spacing: 0.34em;
  color: #f4d76b;
  font-weight: 800;
}
.tp-foot-x {
  color: #c0392b;
  font-size: 24px;
  font-weight: 900;
}


/* Download-Button Gruppe + Poster-Button-Variante */
.player-modal-dl-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.player-modal-dl-poster {
  background: linear-gradient(180deg, #f4d76b 0%, #b88a25 100%) !important;
  color: #0a1b35 !important;
  border-color: transparent !important;
}
.player-modal-dl-poster:hover {
  background: linear-gradient(180deg, #ffd24a 0%, #b88a25 100%) !important;
}
.player-modal-dl-poster .player-modal-dl-icon {
  color: #c0392b !important;
}
.ig-card {
  position: relative;
  width: 1080px;
  height: 1080px;
  background:
    radial-gradient(circle at 30% 0%, #1a3361 0%, #0a1b35 60%, #04091a 100%);
  color: #f3efe6;
  font-family: "Newsreader", Georgia, serif;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.ig-card-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 25% 50%, rgba(233,191,94,0.28) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 110%, rgba(192,57,43,0.18) 0%, transparent 50%);
  pointer-events: none;
}
.ig-card-grid-bg {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(243,239,230,0.035) 0 1px, transparent 1px 50px),
    repeating-linear-gradient(90deg, rgba(243,239,230,0.035) 0 1px, transparent 1px 50px);
  pointer-events: none;
}

/* Riesige Wasserzeichen-Initiale im Hintergrund */
.ig-card-watermark {
  position: absolute;
  top: 50%; left: 30%;
  transform: translate(-50%, -50%);
  font-family: "Instrument Serif", "Newsreader", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 980px;
  line-height: 0.8;
  color: rgba(233,191,94,0.07);
  z-index: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

/* Diagonaler Spotlight-Strahl von oben links */
.ig-card-spotlight {
  position: absolute;
  top: -300px; left: -200px;
  width: 1200px;
  height: 1500px;
  background: linear-gradient(135deg,
    rgba(233,191,94,0.18) 0%,
    rgba(233,191,94,0.06) 25%,
    transparent 60%);
  pointer-events: none;
  z-index: 1;
  transform: rotate(-12deg);
  filter: blur(20px);
}

/* Holografischer Streifen */
.ig-card-holo {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 35%;
  width: 8px;
  background: linear-gradient(180deg,
    transparent,
    rgba(233,191,94,0.4) 30%,
    rgba(233,191,94,0.7) 50%,
    rgba(233,191,94,0.4) 70%,
    transparent);
  filter: blur(2px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.6;
}

/* Goldener Doppelrand-Frame (Trading-Card-Optik) */
.ig-card-frame {
  position: absolute;
  inset: 14px;
  border: 2px solid rgba(233,191,94,0.55);
  border-radius: 6px;
  pointer-events: none;
  z-index: 6;
  box-shadow:
    inset 0 0 0 8px rgba(0,0,0,0.4),
    inset 0 0 0 9px rgba(233,191,94,0.25);
}

/* Top strip — branding */
.ig-card-top {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 30px 50px;
  background: linear-gradient(180deg, rgba(0,0,0,0.4), rgba(0,0,0,0.15));
  border-bottom: 1px solid rgba(233,191,94,0.35);
  margin: 22px 22px 0;
}
.ig-card-crest {
  width: 70px;
  height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.6)) drop-shadow(0 0 14px rgba(233,191,94,0.35));
}
.ig-card-eyebrow {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ig-card-eyebrow-1 {
  font-family: "Geist Mono", monospace;
  font-size: 17px;
  letter-spacing: 0.3em;
  font-weight: 700;
  color: #e9bf5e;
}
.ig-card-eyebrow-2 {
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-size: 20px;
  color: #f3efe6;
  opacity: 0.72;
}
.ig-card-num-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
}
.ig-card-num-l {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: #e9bf5e;
  opacity: 0.85;
}
.ig-card-num {
  font-family: "Big Shoulders Display", "Archivo", sans-serif;
  font-weight: 900;
  font-size: 38px;
  letter-spacing: 0.02em;
  color: #f3efe6;
  background: linear-gradient(180deg, #d4a84a 0%, #8b6818 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 14px rgba(233,191,94,0.3);
  padding: 0 6px;
  line-height: 1;
}

/* Body — split into photo left, info right */
.ig-card-body {
  position: relative;
  z-index: 5;
  flex: 1;
  display: grid;
  grid-template-columns: 470px 1fr;
  gap: 0;
  margin: 0 22px;
}

/* Photo side */
.ig-card-photo-side {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.4) 100%);
  border-right: 1px solid rgba(233,191,94,0.3);
  padding: 0 14px;
  overflow: hidden;
}

/* Riesige Trikotnummer hinter dem Spieler */
.ig-card-jersey-num {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Big Shoulders Display", "Archivo", sans-serif;
  font-weight: 900;
  font-size: 600px;
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 6px rgba(233,191,94,0.18);
  text-stroke: 6px rgba(233,191,94,0.18);
  z-index: 1;
  letter-spacing: -0.02em;
  pointer-events: none;
  user-select: none;
}

/* Vertikale Side-Tape Streifen */
.ig-card-side-tape {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 22px;
  background: linear-gradient(180deg, rgba(233,191,94,0.55), rgba(184,138,37,0.85), rgba(233,191,94,0.55));
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4);
}
.ig-card-side-tape-l { left: 0; }
.ig-card-side-tape-r { right: 0; }
.ig-card-side-tape span {
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.32em;
  font-weight: 800;
  color: #2a1c10;
  white-space: nowrap;
  transform: rotate(-90deg);
  transform-origin: center;
  display: inline-block;
}
.ig-card-side-tape-r span { transform: rotate(90deg); }
/* Subtle vignette inside photo area */
.ig-card-photo-vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 60%, transparent 40%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
  z-index: 2;
}
/* Diagonal stripe with player surname — trading card / kit number band */
.ig-card-stripe {
  position: absolute;
  bottom: 14%;
  left: -20%;
  right: -20%;
  z-index: 3;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(233,191,94,0.15) 12%,
    rgba(233,191,94,0.85) 50%,
    rgba(233,191,94,0.15) 88%,
    transparent 100%);
  padding: 10px 0;
  text-align: center;
  transform: rotate(-3deg);
  font-family: "Big Shoulders Display", "Archivo", sans-serif;
  font-weight: 900;
  font-size: 24px;
  letter-spacing: 0.5em;
  color: #2a1c10;
  text-shadow: 0 1px 0 rgba(255,255,255,0.3);
  box-shadow:
    0 2px 0 rgba(0,0,0,0.3),
    0 -1px 0 rgba(255,255,255,0.18) inset;
}
.ig-card-stripe span {
  display: inline-block;
  white-space: nowrap;
}
.ig-card-glow {
  position: absolute;
  top: 50px; left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 600px;
  background: radial-gradient(circle, rgba(233,191,94,0.4) 0%, transparent 60%);
  pointer-events: none;
  filter: blur(30px);
}
.ig-card-photo {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter:
    drop-shadow(0 18px 26px rgba(0,0,0,0.7))
    drop-shadow(0 6px 10px rgba(0,0,0,0.5));
}
.ig-card-armband {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 4;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Big Shoulders Display", "Archivo", sans-serif;
  font-weight: 900;
  font-size: 36px;
  letter-spacing: 0.04em;
  color: #2a1c10;
  background: linear-gradient(180deg, #f4d76b 0%, #b88a25 100%);
  border: 4px solid #2a1c10;
  box-shadow: 0 8px 18px rgba(0,0,0,0.55);
}
.ig-card-armband.is-vc { font-size: 26px; background: linear-gradient(180deg, #d4a84a 0%, #8b6818 100%); }
.ig-card-armband.is-new {
  font-size: 22px;
  background: linear-gradient(180deg, #2ecc71 0%, #1e8449 100%);
  color: #fff;
  letter-spacing: 0.1em;
}
.ig-card-flag {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 4;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #2a1c10;
  overflow: hidden;
  box-shadow: 0 6px 14px rgba(0,0,0,0.5);
}
.ig-card-flag img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Text side */
.ig-card-text {
  position: relative;
  z-index: 3;
  padding: 36px 44px 28px 44px;
  display: flex;
  flex-direction: column;
}
.ig-card-role {
  display: inline-block;
  font-family: "Geist Mono", monospace;
  font-size: 13px;
  letter-spacing: 0.34em;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(180deg, #e9bf5e 0%, #b88a25 100%);
  padding: 5px 14px;
  margin-bottom: 14px;
  border-radius: 1px;
  text-transform: uppercase;
  align-self: flex-start;
  box-shadow: 0 4px 10px rgba(233,191,94,0.35);
  color: #2a1c10;
}
.ig-card-role.is-new {
  background: linear-gradient(180deg, #2ecc71 0%, #1e8449 100%);
  color: #fff;
}
.ig-card-name {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}
.ig-card-first {
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 38px;
  color: #e9bf5e;
  line-height: 1;
  margin-bottom: 4px;
  text-shadow: 0 0 18px rgba(233,191,94,0.3);
}
.ig-card-last {
  font-family: "Big Shoulders Display", "Archivo", sans-serif;
  font-weight: 900;
  font-size: 76px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #f3efe6;
  line-height: 0.9;
  text-shadow:
    0 4px 14px rgba(0,0,0,0.5),
    0 0 22px rgba(233,191,94,0.2);
}

/* Meta grid — 3 cells with subtle dividers */
.ig-card-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  margin-bottom: 16px;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(233,191,94,0.18);
  border-radius: 3px;
  padding: 10px 0;
}
.ig-card-meta-cell {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 4px 14px;
  border-right: 1px solid rgba(233,191,94,0.18);
}
.ig-card-meta-cell:last-child { border-right: 0; }
.ig-card-meta-l {
  font-family: "Geist Mono", monospace;
  font-size: 9.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #e9bf5e;
  font-weight: 700;
}
.ig-card-meta-v {
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-size: 16px;
  color: #f3efe6;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ig-card-meta-flag {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.5);
  overflow: hidden;
  flex-shrink: 0;
}
.ig-card-meta-flag img { width: 100%; height: 100%; object-fit: cover; display: block; }

.ig-card-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(233,191,94,0.8), rgba(233,191,94,0) 70%);
  margin-bottom: 12px;
  position: relative;
}
.ig-card-divider::before {
  content: "★";
  position: absolute;
  top: -10px;
  left: 0;
  font-size: 14px;
  color: #e9bf5e;
}

/* Mini-Autogramm-Karte (Polaroid) — zwischen Bio und Quote */
.ig-card-sig {
  position: relative;
  margin: 14px auto 16px;
  width: 88%;
  max-width: 380px;
  padding: 8px 8px 6px;
  background: #f8f3e3;
  border-radius: 2px;
  box-shadow:
    0 8px 18px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.8);
  transform: rotate(-1.5deg);
}
.ig-card-sig-tape {
  position: absolute;
  width: 50px;
  height: 16px;
  background: linear-gradient(180deg, rgba(243,239,230,0.85), rgba(220,210,180,0.7));
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 2px 4px rgba(0,0,0,0.18);
}
.ig-card-sig-tape-l {
  top: -8px; left: -8px;
  transform: rotate(-30deg);
}
.ig-card-sig-tape-r {
  top: -8px; right: -8px;
  transform: rotate(28deg);
}
.ig-card-sig img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
  filter: saturate(0.95) contrast(1.04);
}
.ig-card-sig figcaption {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  padding: 2px 4px;
}
.ig-card-sig-tag {
  display: inline-block;
  background: #c0392b;
  color: #fff;
  font-family: "Geist Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.24em;
  font-weight: 700;
  padding: 3px 8px;
  text-transform: uppercase;
}
.ig-card-sig-cap {
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-size: 11px;
  color: #2a1c10;
  opacity: 0.7;
}

/* Achievement-Pillen am Ende der Text-Spalte */
.ig-card-stats-row {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 14px;
}
.ig-card-pill {
  display: inline-flex;
  align-items: center;
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 11px;
  background: rgba(243,239,230,0.08);
  border: 1px solid rgba(243,239,230,0.2);
  color: #f3efe6;
  border-radius: 999px;
}
.ig-card-pill.is-gold {
  background: linear-gradient(180deg, rgba(233,191,94,0.4), rgba(184,138,37,0.4));
  border-color: rgba(233,191,94,0.7);
  color: #ffe5b8;
}
.ig-card-pill.is-green {
  background: linear-gradient(180deg, rgba(46,204,113,0.4), rgba(30,132,73,0.4));
  border-color: rgba(46,204,113,0.7);
  color: #d5f5e3;
}

/* Card variants — Captain gets brighter glow */
.ig-card-captain .ig-card-watermark { color: rgba(233,191,94,0.1); }
.ig-card-captain .ig-card-bg {
  background:
    radial-gradient(ellipse at 25% 50%, rgba(233,191,94,0.36) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 110%, rgba(233,191,94,0.12) 0%, transparent 50%);
}
.ig-card-new .ig-card-bg {
  background:
    radial-gradient(ellipse at 25% 50%, rgba(46,204,113,0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 110%, rgba(233,191,94,0.18) 0%, transparent 50%);
}
.ig-card-new .ig-card-watermark { color: rgba(46,204,113,0.07); }
.ig-card-new .ig-card-spotlight {
  background: linear-gradient(135deg,
    rgba(46,204,113,0.18) 0%,
    rgba(233,191,94,0.06) 30%,
    transparent 65%);
}
.ig-card-bio {
  font-family: "Newsreader", Georgia, serif;
  font-size: 15px;
  line-height: 1.45;
  color: #f3efe6;
  opacity: 0.88;
  margin: 0 0 14px;
  flex: 1;
}
.ig-card-quote {
  position: relative;
  background: rgba(243,239,230,0.06);
  border-left: 3px solid #e9bf5e;
  padding: 12px 14px 12px 28px;
  margin: 0;
  border-radius: 0 3px 3px 0;
}
.ig-card-quote-mark {
  position: absolute;
  top: -8px;
  left: 8px;
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-size: 50px;
  color: #e9bf5e;
  line-height: 1;
  opacity: 0.85;
}
.ig-card-quote p {
  font-family: "Caveat", "Brush Script MT", cursive;
  font-size: 19px;
  line-height: 1.3;
  color: #ffe9b8;
  margin: 0 0 6px;
  font-weight: 500;
}
.ig-card-quote footer {
  font-family: "Caveat", "Brush Script MT", cursive;
  font-size: 14px;
  color: #e9bf5e;
  text-align: right;
  opacity: 0.95;
}

/* Footer */
.ig-card-foot {
  position: relative;
  z-index: 5;
  padding: 22px 50px 28px;
  border-top: 1px solid rgba(233,191,94,0.35);
  background: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.45));
  margin: 0 22px 22px;
}
.ig-card-foot-line { display: none; }
.ig-card-foot-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: "Geist Mono", monospace;
  font-size: 14px;
  letter-spacing: 0.3em;
  font-weight: 700;
  color: #f3efe6;
  opacity: 0.65;
  text-transform: uppercase;
}
.ig-card-foot-sep {
  width: 5px;
  height: 5px;
  background: #e9bf5e;
  border-radius: 50%;
  opacity: 0.85;
}

/* === Teaser-Variante der IG-Card === */
.ig-card-teaser {
  background:
    radial-gradient(circle at 30% 0%, #4a1a1a 0%, #1a0a0a 65%, #050202 100%);
}
.ig-card-teaser .ig-card-bg {
  background:
    radial-gradient(ellipse at 25% 50%, rgba(231,76,60,0.32) 0%, transparent 55%);
}
.ig-card-teaser .ig-card-grid-bg {
  background-image:
    repeating-linear-gradient(0deg, rgba(231,76,60,0.06) 0 1px, transparent 1px 50px),
    repeating-linear-gradient(90deg, rgba(231,76,60,0.06) 0 1px, transparent 1px 50px);
}
.ig-card-teaser .ig-card-top {
  background: linear-gradient(90deg, rgba(192,57,43,0.4), rgba(0,0,0,0.4));
  border-bottom-color: rgba(231,76,60,0.4);
}
.ig-card-teaser .ig-card-eyebrow-1 {
  color: #ff8a78;
}
.ig-card-teaser .ig-card-num {
  background: linear-gradient(180deg, rgba(231,76,60,0.25), rgba(0,0,0,0.4));
  border-color: rgba(231,76,60,0.6);
  color: #ffe5b8;
  font-size: 22px;
  letter-spacing: 0.18em;
}

/* Photo side teaser-version */
.ig-card-photo-side.is-teaser {
  background: linear-gradient(180deg, transparent 0%, rgba(74,26,26,0.4) 100%);
  border-right-color: rgba(231,76,60,0.3);
}
.ig-card-photo-side.is-teaser .ig-card-glow {
  background: radial-gradient(circle, rgba(231,76,60,0.55) 0%, transparent 60%);
}
.ig-card-photo.is-silhouette {
  filter:
    brightness(0)
    drop-shadow(0 0 28px rgba(231,76,60,0.7))
    drop-shadow(0 12px 22px rgba(0,0,0,0.7));
}
.ig-card-armband.is-teaser {
  background: linear-gradient(180deg, #e74c3c 0%, #8a2820 100%) !important;
  color: #fff !important;
  font-size: 44px !important;
  font-weight: 900;
}

/* Text side teaser */
.ig-card-role.is-teaser {
  color: #ff8a78;
  font-family: "Geist Mono", monospace;
  letter-spacing: 0.32em;
}
.ig-card-name.is-teaser .ig-card-first {
  font-family: "Geist Mono", "SF Mono", monospace;
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  color: #ffe5b8;
  letter-spacing: 0.06em;
  text-shadow: 0 0 12px rgba(231,76,60,0.6);
}
.ig-card-name.is-teaser .ig-card-last {
  font-family: "Geist Mono", "SF Mono", monospace;
  font-weight: 700;
  font-size: 56px;
  color: #ffe5b8;
  letter-spacing: 0.05em;
  text-transform: none;
  text-shadow:
    0 0 14px rgba(231,76,60,0.7),
    0 0 24px rgba(231,76,60,0.35);
}
.ig-card-teaser .ig-card-meta-l {
  color: #ff8a78;
}
.ig-card-teaser .ig-card-meta-v {
  font-family: "Geist Mono", monospace;
  font-style: normal;
  font-size: 16px;
  color: #ffe5b8;
  letter-spacing: 0.1em;
}
.ig-card-teaser .ig-card-divider {
  background: linear-gradient(90deg, rgba(231,76,60,0.7), transparent);
}
.ig-card-teaser .ig-card-bio strong {
  color: #ff8a78;
}
.ig-card-quote-teaser {
  border-left-color: #e74c3c !important;
  background: rgba(231,76,60,0.1) !important;
}
.ig-card-quote-teaser .ig-card-quote-mark {
  color: #e74c3c;
}
.ig-card-quote-teaser p {
  color: #ffd5cc;
}
.ig-card-quote-teaser footer {
  color: #ff8a78;
}
.ig-card-teaser .ig-card-foot {
  background: rgba(192,57,43,0.18);
  border-top-color: rgba(231,76,60,0.4);
}
.ig-card-teaser .ig-card-foot-row {
  color: #ffe5b8;
}
.ig-card-teaser .ig-card-foot-sep {
  background: #e74c3c;
}

/* Download-Button teaser-Variante */
.player-modal-dl.is-teaser {
  background: #e74c3c;
  color: #fff;
}
.player-modal-dl.is-teaser:hover {
  background: #fff;
  color: #c0392b;
}
.player-modal-foot-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.8;
}

@media (max-width: 700px) {
  .player-modal { padding: 0; align-items: flex-start; }
  .player-modal-card {
    grid-template-columns: 1fr;
    border-radius: 0;
    border: 0;
    min-height: auto;
    width: 100%;
    max-width: 100%;
  }
  .player-modal-photo-wrap { min-height: 320px; padding: 30px 20px 0; position: static; max-height: none; border-radius: 0; }
  .player-modal-text { padding: 28px 24px 60px; }
  .player-modal-armband { width: 36px; height: 36px; font-size: 15px; top: 14px; right: 14px; }
  .player-modal-armband.is-vc { font-size: 12px; }
  .player-modal-bio { font-size: 16px; }
  .player-modal-sig { max-width: 100%; align-self: stretch; transform: rotate(-1deg); }
  .player-modal-sig-tape { width: 60px; height: 18px; }
  .player-modal-sig-cap { font-size: 11.5px; }
}

@media (max-width: 820px) {
  .tb-sec { padding: 70px 22px 60px; }
  .tb-h { font-size: clamp(40px, 11vw, 72px); }
  .tb-lead { margin-bottom: 36px; font-size: 16px; }
  .tb-dugout { margin-bottom: 32px; }
  .tb-roof { height: 24px; }
  .tb-roof::after { font-size: 8px; letter-spacing: 0.22em; left: 14px; }
  .tb-bench { grid-template-columns: repeat(3, 1fr); gap: 3px; }
  .tb-bench > :nth-child(n+4) {
    border-top: 4px solid #1a3361;
  }
  .tb-seat { height: 150px; padding: 18px 4px 10px; }
  .tb-seat-filled { height: 200px; padding-top: 12px; padding-bottom: 10px; }
  .tb-bench-trainers .tb-seat { height: 240px; }
  .tb-bench-trainers .tb-seat-filled { height: 280px; padding-top: 16px; }
  .tb-bench-trainers .tb-seat-silhouette { font-size: 70px; margin-bottom: 12px; }
  .tb-bench-trainers .tb-seat-photo { bottom: 24px; height: 88%; }
  .tb-vacant-news { margin: 8px 8px 6px; }
  .tb-vacant-news-strip { font-size: 7.5px; padding: 4px 8px; letter-spacing: 0.22em; }
  .tb-vacant-news-headline { font-size: 11.5px; padding: 6px 6px 0; }
  .tb-vacant-news-tag { font-size: 6.5px; padding: 2px 5px; letter-spacing: 0.18em; }
  .tb-seat-photo { bottom: 22px; height: 86%; }
  .tb-seat-silhouette { font-size: 38px; margin-bottom: 8px; }
  .tb-seat-plate { font-size: 8.5px; padding: 4px 8px; letter-spacing: 0.18em; }
  .tb-seat-plate-first { font-size: 9px; }
  .tb-seat-plate-last { font-size: 10px; letter-spacing: 0.14em; }
  .tb-seat-plate-role { font-size: 7.5px; letter-spacing: 0.22em; }
  .tb-seat-armband { width: 24px; height: 24px; font-size: 10px; top: 8px; right: 8px; border-width: 1.5px; }
  .tb-seat-armband-vc { font-size: 8.5px; }
  .tb-seat-flag { width: 22px; height: 22px; font-size: 12px; top: 8px; left: 8px; border-width: 1.5px; }
  .tb-status { font-size: 10px; padding: 12px 16px; gap: 10px; letter-spacing: 0.18em; }
  .tb-foot { font-size: 9px; letter-spacing: 0.2em; }
}

@media (max-width: 480px) {
  .tb-sec { padding: 60px 14px 50px; }
  .tb-bench { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .trk-sec { padding: 50px 16px 50px; }
}

/* ───────────────────────── TROPHÄENSCHRANK (Wohnzimmer) ───────────────────────── */
.tro-sec {
  position: relative;
  background: #e8dec8;
  color: #3d2817;
  padding: 120px 60px 100px;
  overflow: hidden;
}
.tro-wallpaper {
  position: absolute; inset: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(90deg,
      rgba(120, 85, 50, 0.04) 0 1px,
      transparent 1px 22px),
    radial-gradient(circle at 30% 20%, rgba(190, 140, 80, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(190, 140, 80, 0.06) 0%, transparent 50%);
  opacity: 0.9;
}
.tro-warm-light {
  position: absolute;
  top: 18%; left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 420px;
  background: radial-gradient(ellipse at top, rgba(233,191,94,0.22) 0%, transparent 65%);
  pointer-events: none;
  filter: blur(20px);
}
.tro-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #3d2817;
  opacity: 0.7;
  max-width: 1280px;
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
}
.tro-eyebrow-line {
  flex: 1;
  height: 1px;
  background: rgba(61, 40, 23, 0.25);
}
.tro-h {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 400;
  font-size: clamp(48px, 7.5vw, 104px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  margin: 0 auto 18px;
  max-width: 1280px;
  position: relative;
  z-index: 2;
  color: #3d2817;
}
.tro-h em {
  font-style: italic;
  color: #b88636;
}
.tro-lead {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.5;
  max-width: 720px;
  margin: 0 auto 56px;
  opacity: 0.82;
  position: relative;
  z-index: 2;
  color: #3d2817;
}

/* ── Wooden cabinet ── */
.tro-cabinet {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto 60px;
  padding: 28px;
  background:
    /* outer wood frame: vertical grain */
    repeating-linear-gradient(90deg,
      #4a2f18 0px,
      #5e3e23 2px,
      #4a2f18 4px,
      #6b4528 6px,
      #4a2f18 9px),
    linear-gradient(180deg, #5e3e23 0%, #3d2817 100%);
  border-radius: 6px;
  box-shadow:
    /* inner shadow inside cabinet */
    inset 0 0 0 4px #2a1c10,
    inset 0 0 60px rgba(0,0,0,0.4),
    /* cabinet sitting on floor */
    0 30px 50px -10px rgba(20,10,0,0.5),
    0 8px 16px rgba(20,10,0,0.3);
}
/* brass top trim */
.tro-cabinet::before {
  content: "";
  position: absolute;
  top: 8px; left: 8px; right: 8px;
  height: 3px;
  background: linear-gradient(90deg, #8b6818, #d4a84a, #8b6818);
  border-radius: 2px;
}
/* glass reflection overlay */
.tro-cabinet-glass {
  position: absolute;
  top: 28px; left: 28px; right: 28px; bottom: 28px;
  pointer-events: none;
  background:
    linear-gradient(115deg,
      rgba(255,255,255,0.08) 0%,
      rgba(255,255,255,0.18) 18%,
      transparent 32%,
      transparent 60%,
      rgba(255,255,255,0.05) 75%,
      rgba(255,255,255,0.12) 88%,
      transparent 100%);
  z-index: 5;
  border-radius: 2px;
}

/* Each shelf */
.tro-shelf {
  position: relative;
  background:
    /* warm beige wallpaper inside cabinet */
    repeating-linear-gradient(90deg,
      rgba(120, 85, 50, 0.08) 0 1px,
      transparent 1px 18px),
    linear-gradient(180deg, #efe5cf 0%, #e0d4b8 100%);
  padding: 38px 22px 0;
  margin-bottom: 0;
}
.tro-shelf:first-of-type { padding-top: 28px; border-radius: 2px 2px 0 0; }
.tro-shelf:last-of-type { padding-bottom: 0; border-radius: 0 0 2px 2px; }

/* The wooden board at the bottom of each shelf — items "stand on" this */
.tro-shelf-board {
  position: relative;
  height: 18px;
  background:
    repeating-linear-gradient(90deg,
      #4a2f18 0px,
      #6b4528 1px,
      #5e3e23 3px,
      #4a2f18 4px,
      #7a4f2e 7px,
      #4a2f18 9px);
  border-top: 2px solid #2a1c10;
  border-bottom: 1px solid #1a1009;
  box-shadow:
    inset 0 2px 4px rgba(0,0,0,0.4),
    inset 0 -2px 2px rgba(255,255,255,0.05);
  margin: 16px -22px 0;
}

/* Items row on a shelf */
.tro-shelf-items {
  display: grid;
  gap: 18px;
  align-items: end;
}
.tro-shelf-items-3 { grid-template-columns: 1fr 1fr 1fr; }
.tro-shelf-items-4 { grid-template-columns: repeat(4, 1fr); }

/* Empty pedestals — small standing plaques */
.tro-pedestal-mini {
  text-align: center;
  padding: 0 4px;
}
.tro-pedestal-mini-empty {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-size: 78px;
  line-height: 0.9;
  color: rgba(61, 40, 23, 0.18);
  user-select: none;
  margin-bottom: 8px;
}
.tro-pedestal-mini-plate {
  display: inline-block;
  background: linear-gradient(180deg, #d4a84a 0%, #8b6818 100%);
  color: #2a1c10;
  font-family: "Big Shoulders Display", "Archivo", sans-serif;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.18em;
  padding: 6px 11px;
  border-radius: 1px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.4),
    0 2px 4px rgba(0,0,0,0.25);
}

/* Display-Bereich — einheitliche Höhe für alle drei Items */
.tro-pedestal-display {
  position: relative;
  height: 130px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 0;
}

/* Holzpodest unter jedem Item */
.tro-pedestal-stand {
  position: relative;
  height: 14px;
  margin: 0 auto 8px;
  width: 80%;
  background:
    repeating-linear-gradient(90deg,
      #4a2f18 0px,
      #6b4528 1px,
      #5e3e23 3px,
      #4a2f18 4px,
      #7a4f2e 7px,
      #4a2f18 9px);
  border-top: 2px solid #2a1c10;
  border-bottom: 1px solid #1a1009;
  border-radius: 1px 1px 2px 2px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 4px 6px rgba(0,0,0,0.3);
}
.tro-pedestal-stand-gold {
  background: linear-gradient(180deg, #d4a84a 0%, #8b6818 60%, #5e3e23 100%);
  border-top-color: #6b4528;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.4),
    0 4px 8px rgba(20,10,0,0.4);
}

/* Spinnennetz im linken oberen Eck des Kleinfeldturnier-Sockels */
.tro-pedestal-cobweb {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  pointer-events: none;
  background:
    radial-gradient(circle at 0 0, transparent 6%, rgba(255,255,255,0.18) 6.5%, transparent 7.5%),
    radial-gradient(circle at 0 0, transparent 14%, rgba(255,255,255,0.18) 14.5%, transparent 15.5%),
    radial-gradient(circle at 0 0, transparent 22%, rgba(255,255,255,0.18) 22.5%, transparent 23.5%),
    radial-gradient(circle at 0 0, transparent 30%, rgba(255,255,255,0.16) 30.5%, transparent 31.5%),
    linear-gradient(45deg, transparent 49.6%, rgba(255,255,255,0.18) 50%, transparent 50.4%),
    linear-gradient(0deg, transparent 49.6%, rgba(255,255,255,0.16) 50%, transparent 50.4%),
    linear-gradient(90deg, transparent 49.6%, rgba(255,255,255,0.16) 50%, transparent 50.4%),
    linear-gradient(135deg, transparent 49.6%, rgba(255,255,255,0.18) 50%, transparent 50.4%);
  opacity: 0.7;
}

/* Käse beim Champions-League-Mäuschen */
.tro-cheese {
  position: absolute;
  bottom: 4px;
  right: 28%;
  font-size: 22px;
  filter: drop-shadow(0 2px 3px rgba(0,0,0,0.3));
  transform: rotate(-8deg);
}

/* Jahrzeile unter den Plates */
.tro-pedestal-year {
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-size: 11px;
  color: rgba(61, 40, 23, 0.55);
  margin-top: 5px;
  letter-spacing: 0.02em;
}

/* Gold-Plate für die echte Trophäe */
.tro-pedestal-mini-plate-gold {
  background: linear-gradient(180deg, #f4d76b 0%, #b88a25 100%) !important;
  border: 1px solid rgba(255,255,255,0.4);
}

/* Creature container — backwards-compatible alias */
.tro-pedestal-mini-creature {
  height: 90px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  margin-bottom: 8px;
}

/* Maus emoji — sitzt am Sockel, sucht den Käse */
.tro-mouse {
  font-size: 64px;
  line-height: 1;
  display: inline-block;
  filter: drop-shadow(0 4px 6px rgba(20,10,0,0.4));
  animation: troMouseTwitch 5s ease-in-out infinite;
  transform-origin: center bottom;
  margin-bottom: 6px;
}
@keyframes troMouseTwitch {
  0%, 86%, 100% { transform: translateX(0) rotate(0); }
  90%           { transform: translateX(-3px) rotate(-3deg); }
  94%           { transform: translateX(2px) rotate(2deg); }
}

/* Staubwuzzel — CSS-gerendert, grau-flauschig */
.tro-dust-bunny {
  position: relative;
  width: 96px;
  height: 60px;
  display: inline-block;
  background: radial-gradient(ellipse at 50% 60%, #b6ada0 0%, #8e8579 60%, #6f675c 100%);
  border-radius: 50% 50% 48% 48% / 60% 60% 40% 40%;
  box-shadow:
    inset 0 -3px 4px rgba(0,0,0,0.25),
    0 6px 10px rgba(20,10,0,0.3);
  animation: troDustWobble 4s ease-in-out infinite;
  margin-bottom: 8px;
}
@keyframes troDustWobble {
  0%, 100% { transform: rotate(-1deg); }
  50%      { transform: rotate(1.5deg); }
}
.tro-dust-fluff {
  position: absolute;
  width: 14px;
  height: 14px;
  background: radial-gradient(circle, #aea69b 0%, #7e7669 100%);
  border-radius: 50%;
  opacity: 0.85;
}
.tro-dust-fluff:nth-child(1) {
  top: -6px; left: 14%;
  width: 18px; height: 18px;
}
.tro-dust-fluff:nth-child(2) {
  top: -10px; left: 50%;
  transform: translateX(-50%);
  width: 22px; height: 16px;
  border-radius: 50%;
}
.tro-dust-fluff:nth-child(3) {
  top: -4px; right: 8%;
  width: 12px; height: 12px;
}
.tro-dust-eye {
  position: absolute;
  width: 4px; height: 4px;
  background: #1a1409;
  border-radius: 50%;
  top: 55%;
}
.tro-dust-eye-l { left: 32%; }
.tro-dust-eye-r { right: 32%; }
.tro-dust-bunny::after {
  content: "";
  position: absolute;
  bottom: -10px; left: 50%;
  transform: translateX(-50%);
  width: 60%; height: 6px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.25) 0%, transparent 70%);
  pointer-events: none;
}

/* Filled pedestal — when there's actually a trophy on it (the Bier-Pokal) */
.tro-pedestal-mini-filled {
  position: relative;
}
.tro-pedestal-mini-glow {
  position: absolute;
  top: -6px; left: 50%;
  transform: translateX(-50%);
  width: 130%;
  height: 150px;
  background: radial-gradient(ellipse at center top, rgba(233,191,94,0.6) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  filter: blur(8px);
}
.tro-pedestal-mini-img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  max-height: 130px;
  object-fit: contain;
  object-position: center bottom;
  filter:
    drop-shadow(0 8px 10px rgba(20,10,0,0.35))
    drop-shadow(0 2px 3px rgba(20,10,0,0.4));
  transition: transform 0.5s cubic-bezier(.2,.7,.3,1);
}
.tro-pedestal-mini-filled:hover .tro-pedestal-mini-img {
  transform: scale(1.06) rotate(-2deg);
}

/* Mini frames — like real picture frames standing on shelf */
.tro-mini-frame {
  position: relative;
  background: linear-gradient(180deg, #5e3e23 0%, #3d2817 100%);
  padding: 8px 8px 0;
  margin: 0;
  border-radius: 2px;
  box-shadow:
    inset 0 1px 0 rgba(212, 168, 74, 0.25),
    0 6px 14px rgba(20,10,0,0.4),
    0 2px 4px rgba(20,10,0,0.3);
  transition: transform 0.4s cubic-bezier(.2,.7,.3,1), box-shadow 0.4s;
  display: flex;
  flex-direction: column;
}
.tro-mini-frame:hover {
  transform: translateY(-3px) rotate(0.5deg);
  box-shadow:
    inset 0 1px 0 rgba(212, 168, 74, 0.4),
    0 10px 22px rgba(20,10,0,0.5),
    0 3px 6px rgba(20,10,0,0.35);
}
.tro-mini-frame-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #2a1c10;
  border: 1px solid rgba(0,0,0,0.4);
}
.tro-mini-frame-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.04);
  transition: transform 0.5s cubic-bezier(.2,.7,.3,1);
}
.tro-mini-frame:hover .tro-mini-frame-img img {
  transform: scale(1.04);
}
.tro-mini-frame-cap {
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-size: 11.5px;
  text-align: center;
  padding: 6px 4px 8px;
  color: #f5e9cf;
  letter-spacing: 0.02em;
}

/* Centerpiece — the real 5. Platz pokal, on the middle shelf with warm spotlight */
.tro-centerpiece {
  position: relative;
  margin: 0;
  text-align: center;
  padding: 0 4px;
}
.tro-centerpiece-glow {
  position: absolute;
  top: -20px; left: 50%;
  transform: translateX(-50%);
  width: 140%;
  height: 100%;
  background: radial-gradient(ellipse at center top, rgba(233,191,94,0.55) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
  filter: blur(4px);
}
.tro-centerpiece-img {
  position: relative;
  z-index: 2;
  aspect-ratio: 3 / 4;
  background: linear-gradient(180deg, #5e3e23 0%, #3d2817 100%);
  padding: 6px;
  border-radius: 2px;
  box-shadow:
    inset 0 1px 0 rgba(212, 168, 74, 0.35),
    0 10px 22px rgba(20,10,0,0.5);
  margin-bottom: 10px;
  overflow: hidden;
}
.tro-centerpiece-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 1px;
  transition: transform 0.5s cubic-bezier(.2,.7,.3,1);
}
.tro-centerpiece:hover .tro-centerpiece-img img {
  transform: scale(1.03);
}
.tro-centerpiece-cap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}
.tro-centerpiece-tag {
  font-family: "Geist Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.24em;
  color: #5e3e23;
  background: linear-gradient(180deg, #d4a84a 0%, #8b6818 100%);
  padding: 4px 10px;
  font-weight: 700;
  border-radius: 1px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.4),
    0 2px 4px rgba(0,0,0,0.25);
}
.tro-centerpiece-title {
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: #3d2817;
  line-height: 1.2;
}

/* Cabinet base — the wooden bottom plinth */
.tro-cabinet-base {
  height: 22px;
  background:
    repeating-linear-gradient(90deg,
      #4a2f18 0px,
      #6b4528 1px,
      #5e3e23 3px,
      #4a2f18 4px,
      #7a4f2e 7px,
      #4a2f18 9px);
  border-top: 2px solid #2a1c10;
  border-radius: 0 0 4px 4px;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.4);
}
.tro-frame-meta {
  text-align: center;
}
.tro-frame-year {
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--accent);
  opacity: 0.85;
  margin-bottom: 4px;
}
.tro-frame-caption {
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-size: 16px;
  color: var(--paper);
  margin-bottom: 2px;
}
.tro-frame-sub {
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--paper);
  opacity: 0.5;
}

/* Stats row — like a brass plaque on the wall */
.tro-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  text-align: center;
  max-width: 1180px;
  margin: 0 auto;
  background: #4a2f18;
  border: 2px solid #3d2817;
  border-radius: 3px;
  box-shadow: 0 8px 18px rgba(20,10,0,0.3);
}
.tro-stat {
  padding: 22px 14px 18px;
  background: linear-gradient(180deg, #efe5cf 0%, #e0d4b8 100%);
}
.tro-stat-num {
  font-family: "Big Shoulders Display", "Archivo", sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 5vw, 60px);
  color: #8b6818;
  line-height: 1;
  margin-bottom: 6px;
}
.tro-stat-l {
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.24em;
  color: #3d2817;
  opacity: 0.75;
  text-transform: uppercase;
}

.tro-foot {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-align: center;
  margin-top: 36px;
  opacity: 0.5;
  position: relative;
  z-index: 2;
  color: #3d2817;
}

/* Click cursors for the trophy frames */
.tro-mini-frame { cursor: zoom-in; }
.tro-centerpiece { cursor: zoom-in; }

/* Lightbox — full-screen image viewer */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 250;
  background: rgba(5, 13, 31, 0.95);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 28px;
  animation: lightboxIn 0.28s ease;
  cursor: zoom-out;
}
@keyframes lightboxIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(243,239,230,0.12);
  border: 1px solid rgba(243,239,230,0.22);
  color: var(--paper);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s, transform 0.2s;
}
.lightbox-close:hover {
  background: var(--accent);
  color: var(--navy);
  transform: scale(1.05);
}
.lightbox-figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  max-width: min(1100px, 100%);
  max-height: 100%;
  cursor: default;
  animation: lightboxImgIn 0.4s cubic-bezier(.2,.7,.3,1);
}
@keyframes lightboxImgIn {
  from { transform: scale(0.94); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.lightbox-figure img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 3px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
  display: block;
}
.lightbox-figure figcaption {
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-size: 18px;
  color: var(--paper);
  opacity: 0.9;
  text-align: center;
  padding: 0 12px;
  letter-spacing: 0.01em;
}

@media (max-width: 600px) {
  .lightbox { padding: 40px 14px; }
  .lightbox-close { top: 12px; right: 12px; width: 38px; height: 38px; font-size: 22px; }
  .lightbox-figure img { max-height: 78vh; }
  .lightbox-figure figcaption { font-size: 15px; }
}

/* ───────────────────────── KLEINFELDTURNIER · OBERTILLIACH (Polaroid-Pinnwand) ───────────────────────── */
.tg-sec {
  position: relative;
  background: linear-gradient(180deg, #0a1b35 0%, #0c1f3d 100%);
  padding: 96px 24px 104px;
  overflow: hidden;
}
.tg-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}
.tg-eyebrow-line {
  width: 46px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent));
}
.tg-eyebrow span:last-child.tg-eyebrow-line,
.tg-eyebrow .tg-eyebrow-line:last-child {
  background: linear-gradient(90deg, var(--accent), transparent);
}
.tg-h {
  text-align: center;
  font-family: "Big Shoulders Display", "Archivo", sans-serif;
  font-weight: 900;
  font-size: clamp(34px, 6vw, 64px);
  letter-spacing: 0.01em;
  color: var(--paper);
  line-height: 0.95;
  margin: 0 0 16px;
}
.tg-h em {
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.tg-lead {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
  font-family: "Newsreader", Georgia, serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--paper);
  opacity: 0.82;
}
.tg-carousel {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
}
.tg-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px 6px 22px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(233,191,94,0.5) transparent;
}
.tg-track::-webkit-scrollbar { height: 8px; }
.tg-track::-webkit-scrollbar-track { background: transparent; }
.tg-track::-webkit-scrollbar-thumb {
  background: rgba(233,191,94,0.45);
  border-radius: 999px;
}
.tg-slide {
  flex: 0 0 auto;
  scroll-snap-align: center;
  margin: 0;
  height: 380px;
  background: #f6f1e3;
  padding: 12px;
  border-radius: 3px;
  box-shadow:
    0 14px 30px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.5);
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(.2,.7,.3,1), box-shadow 0.3s;
}
.tg-slide:hover {
  transform: translateY(-5px);
  box-shadow:
    0 22px 44px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.6);
}
.tg-slide-img {
  height: 100%;
  border-radius: 2px;
  overflow: hidden;
  line-height: 0;
  background: #0a1b35;
}
.tg-slide-img img {
  height: 100%;
  width: auto;
  display: block;
  filter: saturate(1.02);
}
.tg-nav {
  position: absolute;
  top: calc(50% - 6px);
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--accent);
  color: var(--navy);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.45);
  transition: transform 0.2s, background 0.2s;
}
.tg-nav:hover { transform: translateY(-50%) scale(1.1); background: #f4d76b; }
.tg-nav:active { transform: translateY(-50%) scale(0.96); }
.tg-nav-prev { left: -10px; }
.tg-nav-next { right: -10px; }
.tg-foot {
  text-align: center;
  margin-top: 30px;
  font-family: "Geist Mono", monospace;
  font-size: 9.5px;
  letter-spacing: 0.28em;
  color: var(--paper);
  opacity: 0.5;
}
@media (max-width: 540px) {
  .tg-sec { padding: 64px 14px 72px; }
  .tg-lead { font-size: 16px; margin-bottom: 36px; }
  .tg-slide { height: 300px; }
  .tg-nav { width: 42px; height: 42px; font-size: 26px; }
  .tg-nav-prev { left: 0; }
  .tg-nav-next { right: 0; }
}

.tro-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s, transform 0.8s;
}
.tro-reveal.in-view {
  opacity: 1;
  transform: none;
}

@media (max-width: 820px) {
  .tro-sec { padding: 80px 18px 70px; }
  .tro-cabinet { padding: 18px; margin-bottom: 36px; }
  .tro-cabinet-glass { top: 18px; left: 18px; right: 18px; bottom: 18px; }
  .tro-h { font-size: clamp(40px, 11vw, 72px); }
  .tro-lead { margin-bottom: 36px; }
  .tro-shelf { padding: 24px 14px 0; }
  .tro-shelf-board { margin: 12px -14px 0; height: 14px; }
  .tro-shelf-items { gap: 12px; }
  .tro-shelf-items-3 { grid-template-columns: 1fr 1fr 1fr; }
  .tro-shelf-items-4 { grid-template-columns: 1fr 1fr; row-gap: 18px; }
  .tro-pedestal-mini-empty { font-size: 56px; }
  .tro-pedestal-mini-plate { font-size: 8px; padding: 5px 8px; letter-spacing: 0.14em; }
  .tro-pedestal-mini-img { max-height: 90px; }
  .tro-pedestal-display { height: 95px; }
  .tro-pedestal-stand { height: 10px; width: 75%; }
  .tro-pedestal-cobweb { width: 38px; height: 38px; }
  .tro-cheese { font-size: 16px; right: 22%; bottom: 2px; }
  .tro-pedestal-year { font-size: 9.5px; margin-top: 3px; }
  .tro-mouse { font-size: 44px; margin-bottom: 4px; }
  .tro-dust-bunny { width: 64px; height: 40px; margin-bottom: 4px; }
  .tro-dust-fluff:nth-child(1) { width: 14px; height: 14px; }
  .tro-dust-fluff:nth-child(2) { width: 16px; height: 12px; }
  .tro-dust-fluff:nth-child(3) { width: 9px; height: 9px; }
  .tro-dust-eye { width: 3px; height: 3px; }
  .tro-mini-frame { padding: 6px 6px 0; }
  .tro-mini-frame-cap { font-size: 10.5px; }
  .tro-centerpiece-tag { font-size: 8px; padding: 3px 8px; letter-spacing: 0.18em; }
  .tro-centerpiece-title { font-size: 12px; }
  .tro-stats { grid-template-columns: repeat(2, 1fr); }
  .tro-stat { padding: 16px 10px 14px; }
}

@media (max-width: 480px) {
  .tro-sec { padding: 60px 12px 60px; }
  .tro-cabinet { padding: 14px; }
  .tro-cabinet-glass { top: 14px; left: 14px; right: 14px; bottom: 14px; }
  .tro-shelf { padding: 18px 8px 0; }
  .tro-shelf-board { margin: 10px -8px 0; }
  .tro-shelf-items { gap: 8px; }
  .tro-pedestal-mini-empty { font-size: 44px; }
  .tro-pedestal-mini-plate { font-size: 7px; padding: 4px 6px; }
  .tro-pedestal-mini-img { max-height: 70px; }
  .tro-pedestal-display { height: 78px; }
  .tro-pedestal-stand { height: 8px; width: 70%; }
  .tro-pedestal-cobweb { width: 28px; height: 28px; }
  .tro-cheese { font-size: 12px; }
  .tro-pedestal-year { font-size: 8.5px; }
  .tro-mouse { font-size: 32px; margin-bottom: 2px; }
  .tro-dust-bunny { width: 48px; height: 30px; margin-bottom: 2px; }
  .tro-mini-frame-cap { font-size: 9.5px; padding: 4px 2px 6px; }
  .tro-foot { font-size: 9px; letter-spacing: 0.22em; }
}

/* ───────────────────────── FIXTURES (zwei Termine) ───────────────────────── */
.fix-sec {
  position: relative;
  background: var(--paper);
  color: var(--navy);
  padding: 120px 60px 100px;
  max-width: 1280px;
  margin: 0 auto;
}
.fix-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 28px;
  opacity: 0.7;
}
.fix-eyebrow-line {
  flex: 1;
  height: 1px;
  background: rgba(10,27,53,0.25);
}
.fix-h {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 400;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  margin: 0 0 60px;
  color: var(--navy);
}
.fix-h em {
  font-style: italic;
  color: var(--accent);
}
.fix-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.fix-card {
  position: relative;
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--paper);
  padding: 36px 32px 32px;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(.2,.7,.3,1), box-shadow 0.45s;
  cursor: default;
}
.fix-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--accent);
}
.fix-card::after {
  content: "II";
  position: absolute;
  right: -28px; bottom: -64px;
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-size: 220px;
  color: rgba(233,191,94,0.08);
  pointer-events: none;
  line-height: 1;
}
.fix-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(10,27,53,0.25);
}
.fix-card-tag {
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  opacity: 0.9;
}
.fix-card-date {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 18px;
  font-family: "Big Shoulders Display", "Archivo", sans-serif;
}
.fix-card-day {
  font-size: 14px;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: rgba(243,239,230,0.55);
}
.fix-card-num {
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--paper);
  line-height: 1;
}
.fix-card-title {
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 30px);
  margin-bottom: 12px;
  color: var(--accent);
  line-height: 1.1;
}
.fix-card-meta {
  display: flex;
  gap: 10px;
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  opacity: 0.75;
}
.fix-card-dot { opacity: 0.5; }
.fix-card-arrow {
  position: absolute;
  top: 28px; right: 28px;
  font-size: 22px;
  color: var(--accent);
  opacity: 0.6;
  transition: transform 0.4s, opacity 0.4s;
}
.fix-card:hover .fix-card-arrow {
  transform: translate(4px, -4px);
  opacity: 1;
}
.fix-foot {
  margin-top: 40px;
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-align: center;
  opacity: 0.55;
}

/* fix-reveal — fade up on scroll */
.fix-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s, transform 0.7s;
}
.fix-reveal.in-view {
  opacity: 1;
  transform: none;
}

/* ───────────────────────── GALLERY ───────────────────────── */
.gal-sec {
  position: relative;
  background: var(--navy);
  color: var(--paper);
  padding: 120px 60px 120px;
  overflow: hidden;
}
.gal-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0.7;
  margin: 0 auto 28px;
  max-width: 1280px;
}
.gal-eyebrow-line {
  flex: 1;
  height: 1px;
  background: rgba(243,239,230,0.25);
}
.gal-h {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 400;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  margin: 0 auto 60px;
  max-width: 1280px;
  color: var(--paper);
}
.gal-h em {
  font-style: italic;
  color: var(--accent);
}
.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 14px;
  max-width: 1280px;
  margin: 0 auto;
}
.gal-tile {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 3px;
  background: var(--navy-2);
  cursor: zoom-in;
}
.gal-tile-tall { grid-row: span 2; }
.gal-tile-wide { grid-column: span 2; }
.gal-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(.2,.7,.3,1), filter 0.6s;
  filter: saturate(0.95) contrast(1.05);
}
.gal-tile:hover img {
  transform: scale(1.06);
  filter: saturate(1.1) contrast(1.08);
}
.gal-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,27,53,0.78) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
}
.gal-tile:hover::after { opacity: 1; }
.gal-cap {
  position: absolute;
  left: 16px; right: 16px; bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s, transform 0.4s;
  pointer-events: none;
}
.gal-tile:hover .gal-cap {
  opacity: 1;
  transform: none;
}
.gal-cap-n {
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--accent);
}
.gal-cap-t {
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-size: 16px;
  color: var(--paper);
  line-height: 1.2;
}

.gal-tile-strike-x {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  background:
    linear-gradient(
      to top right,
      transparent calc(50% - 4px),
      rgba(192, 57, 43, 0.92) calc(50% - 4px),
      rgba(192, 57, 43, 0.92) calc(50% + 4px),
      transparent calc(50% + 4px)
    ),
    linear-gradient(
      to top left,
      transparent calc(50% - 4px),
      rgba(192, 57, 43, 0.92) calc(50% - 4px),
      rgba(192, 57, 43, 0.92) calc(50% + 4px),
      transparent calc(50% + 4px)
    );
  filter: drop-shadow(0 2px 5px rgba(192,57,43,0.4));
}

/* gal-reveal — fade up on scroll */
.gal-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s, transform 0.8s;
}
.gal-reveal.in-view {
  opacity: 1;
  transform: none;
}

/* Tablet & mobile for fixtures + gallery */
@media (max-width: 820px) {
  .fix-sec { padding: 80px 24px 70px; }
  .fix-h { font-size: clamp(40px, 10vw, 64px); margin-bottom: 36px; }
  .fix-grid { grid-template-columns: 1fr; gap: 16px; }
  .fix-card { padding: 28px 22px 24px; }
  .fix-card::after { font-size: 160px; right: -20px; bottom: -48px; }
  .fix-card-num { font-size: clamp(40px, 13vw, 60px); }
  .fix-card-title { font-size: clamp(20px, 5.5vw, 26px); }

  .gal-sec { padding: 80px 16px 90px; }
  .gal-eyebrow, .gal-h { padding: 0 8px; }
  .gal-h { font-size: clamp(40px, 10vw, 64px); margin-bottom: 36px; }
  .gal-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
    gap: 8px;
  }
  .gal-tile-tall { grid-row: span 2; }
  .gal-tile-wide { grid-column: span 2; }
  /* Captions visible by default on touch */
  .gal-cap { opacity: 1; transform: none; }
  .gal-tile::after { opacity: 0.85; }
}

@media (max-width: 480px) {
  .fix-sec { padding: 60px 16px 60px; }
  .gal-sec { padding: 60px 10px 70px; }
  .gal-grid { grid-auto-rows: 150px; gap: 6px; }
  .gal-cap-t { font-size: 13px; }
  .gal-cap-n { font-size: 9px; }
}

/* ───────────────────────── FANFREUNDSCHAFT ───────────────────────── */
.ff-sec {
  position: relative;
  background:
    linear-gradient(180deg, #ede4cc 0%, #d8c89e 100%);
  color: var(--navy);
  padding: 100px 60px 90px;
  overflow: hidden;
}
.ff-grain {
  position: absolute; inset: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg, rgba(10,27,53,0.012) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(90deg, rgba(120,85,50,0.04) 0 1px, transparent 1px 22px);
  opacity: 0.7;
}
.ff-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.7;
  max-width: 980px;
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
}
.ff-eyebrow-line { flex: 1; height: 1px; background: rgba(10,27,53,0.25); }
.ff-h {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 400;
  font-size: clamp(40px, 6.5vw, 84px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 auto 18px;
  max-width: 980px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.ff-h em { font-style: italic; color: var(--accent); }
.ff-lead {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.5;
  max-width: 620px;
  margin: 0 auto 48px;
  text-align: center;
  opacity: 0.78;
  position: relative;
  z-index: 2;
}

.ff-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  max-width: 880px;
  margin: 0 auto;
  padding: 38px 40px 56px;
  background: var(--paper);
  border: 1px solid rgba(10,27,53,0.12);
  border-radius: 4px;
  text-decoration: none;
  color: var(--navy);
  box-shadow:
    0 18px 40px rgba(20,10,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.6);
  transition: transform 0.4s cubic-bezier(.2,.7,.3,1), box-shadow 0.4s, border-color 0.4s;
  z-index: 2;
}
.ff-card::before {
  content: "";
  position: absolute;
  top: 8px; left: 12px; right: 12px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(233,191,94,0.6), transparent);
}
.ff-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow:
    0 26px 50px rgba(20,10,0,0.24),
    inset 0 1px 0 rgba(255,255,255,0.6);
}

.ff-card-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.ff-card-crest {
  width: 96px;
  height: 96px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ff-card-crest img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(10,27,53,0.18));
}
.ff-card-crest-fallback {
  font-family: "Big Shoulders Display", "Archivo", sans-serif;
  font-weight: 900;
  font-size: 38px;
  letter-spacing: 0.04em;
  color: var(--navy);
  background:
    radial-gradient(circle, #f5efdd 0%, #d8c89e 100%);
  border: 3px solid var(--navy);
  border-radius: 50%;
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,0.4),
    0 6px 14px rgba(20,10,0,0.2);
}
.ff-card-tag {
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 700;
}
.ff-card-name {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 500;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.ff-card-name em {
  font-style: italic;
  color: var(--accent);
}
.ff-card-loc {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.6;
}

.ff-card-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  height: 100%;
  padding: 0 8px;
}
.ff-card-divider-line {
  flex: 1;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(10,27,53,0.3), transparent);
}
.ff-card-divider-mark {
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-size: 32px;
  color: var(--accent);
  line-height: 1;
}

.ff-card-cta {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--paper);
  padding: 10px 18px;
  font-family: "Big Shoulders Display", "Archivo", sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  white-space: nowrap;
  transition: background 0.3s, color 0.3s;
}
.ff-card:hover .ff-card-cta {
  background: var(--accent);
  color: var(--navy);
}
.ff-card-cta-arrow {
  font-size: 14px;
  transition: transform 0.3s;
}
.ff-card:hover .ff-card-cta-arrow {
  transform: translate(2px, -2px);
}

.ff-foot {
  font-family: "Geist Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.3em;
  text-align: center;
  margin-top: 36px;
  opacity: 0.5;
  position: relative;
  z-index: 2;
}

.ff-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s, transform 0.7s;
}
.ff-reveal.in-view { opacity: 1; transform: none; }

@media (max-width: 760px) {
  .ff-sec { padding: 70px 22px 70px; }
  .ff-h { font-size: clamp(34px, 9vw, 56px); }
  .ff-lead { margin-bottom: 32px; font-size: 15px; }
  .ff-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    padding: 30px 24px 60px;
    gap: 18px;
  }
  .ff-card-divider {
    flex-direction: row;
    height: auto;
    width: 60%;
    margin: 0 auto;
    padding: 6px 0;
  }
  .ff-card-divider-line { width: auto; height: 1px; flex: 1; background: linear-gradient(90deg, transparent, rgba(10,27,53,0.3), transparent); }
  .ff-card-divider-mark { font-size: 24px; }
  .ff-card-crest { width: 76px; height: 76px; }
  .ff-card-crest-fallback { font-size: 30px; }
  .ff-card-cta { font-size: 11px; padding: 9px 14px; }
}

/* ───────────────────────── FUSSBALL PAGE ───────────────────────── */
.fb-page {
  background: var(--paper);
  color: var(--navy);
  min-height: 100vh;
}
.fb-topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 20px 40px;
  border-bottom: 1px solid rgba(10,27,53,0.18);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
}
.fb-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.2s, transform 0.3s;
  width: fit-content;
}
.fb-back:hover { opacity: 1; transform: translateX(-2px); }
.fb-back-arrow { font-size: 14px; }
.fb-mark {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}
.fb-mark-img {
  width: 44px; height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(10,27,53,0.15));
}
.fb-mark-1 {
  font-family: "Big Shoulders Display", "Archivo", sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
}
.fb-mark-1 em {
  font-style: normal;
  color: var(--accent);
  margin-left: 4px;
}
.fb-mark-2 {
  font-family: "Geist Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.28em;
  opacity: 0.6;
  margin-top: 4px;
}
.fb-spacer { width: 1px; }

/* ─── Spezialisierter Fußball-Hero ─── */
.fb-hero {
  position: relative;
  padding: 0;
  margin: 0;
  background: var(--navy);
  color: var(--paper);
  overflow: hidden;
  border-bottom: 1px solid rgba(243,239,230,0.12);
}
.fb-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.fb-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(0.45) contrast(1.05) brightness(0.7);
}
.fb-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 25% 20%, rgba(233,191,94,0.18) 0%, transparent 55%),
    linear-gradient(180deg, rgba(10,27,53,0.7) 0%, rgba(10,27,53,0.85) 60%, rgba(10,27,53,0.95) 100%);
  pointer-events: none;
}
.fb-hero-grid {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 60px 50px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 44px;
  align-items: center;
}
.fb-hero-crest {
  position: relative;
  width: 180px;
  height: 180px;
  flex-shrink: 0;
}
.fb-hero-crest::before {
  content: "";
  position: absolute;
  inset: -16%;
  background: radial-gradient(circle, rgba(233,191,94,0.25) 0%, transparent 65%);
  filter: blur(14px);
  pointer-events: none;
}
.fb-hero-crest img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.55));
  animation: fbHeroFloat 7s ease-in-out infinite;
}
@keyframes fbHeroFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-8px) rotate(1.5deg); }
}
.fb-hero-text { position: relative; z-index: 1; }
.fb-hero-eyebrow {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--accent);
  margin-bottom: 12px;
  text-transform: uppercase;
  font-weight: 700;
}
.fb-hero-h {
  font-family: "Instrument Serif", "Newsreader", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(72px, 13vw, 180px);
  line-height: 0.85;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
  color: var(--paper);
  text-shadow: 0 6px 14px rgba(0,0,0,0.4);
}
.fb-hero-tagline {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--paper);
  opacity: 0.92;
}
.fb-hero-tagline em {
  font-style: italic;
  color: var(--accent);
}

/* Stat-Reihe */
.fb-hero-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px 36px;
  border-top: 1px solid rgba(243,239,230,0.18);
  padding-top: 28px;
}
.fb-hero-stat {
  text-align: left;
  padding: 0 20px;
  border-right: 1px solid rgba(243,239,230,0.12);
}
.fb-hero-stat:last-child { border-right: 0; }
.fb-hero-stat:first-child { padding-left: 0; }
.fb-hero-stat-num {
  font-family: "Big Shoulders Display", "Archivo", sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 3.6vw, 48px);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.fb-hero-stat-l {
  font-family: "Geist Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0.7;
}

/* Ticker — wie Sportfernsehen */
.fb-hero-ticker {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: stretch;
  background: var(--accent);
  color: var(--navy);
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  overflow: hidden;
}
.fb-hero-ticker-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: var(--navy);
  color: var(--paper);
  letter-spacing: 0.24em;
  flex: 0 0 auto;
  z-index: 2;
}
.fb-hero-ticker-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #c0392b;
  animation: fbTickerPulse 1.2s ease-in-out infinite;
}
@keyframes fbTickerPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.55; transform: scale(0.85); }
}
.fb-hero-ticker-track {
  display: flex;
  gap: 36px;
  padding: 12px 0;
  white-space: nowrap;
  animation: fbTickerScroll 60s linear infinite;
  flex: 1;
  min-width: 0;
}
.fb-hero-ticker-track span {
  padding-left: 30px;
  flex: 0 0 auto;
}
@keyframes fbTickerScroll {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

.fb-foot {
  background: var(--navy);
  color: var(--paper);
  padding: 50px 40px;
  margin-top: 60px;
}
.fb-foot-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.fb-foot-back {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--paper);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}
.fb-foot-back:hover { color: var(--accent); }
.fb-foot-meta {
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.28em;
  opacity: 0.55;
  display: flex;
  gap: 12px;
  text-transform: uppercase;
}
.fb-foot-sep { opacity: 0.5; }

@media (max-width: 820px) {
  .fb-topbar { padding: 14px 18px; gap: 12px; grid-template-columns: auto 1fr auto; }
  .fb-mark-img { width: 38px; height: 38px; }
  .fb-mark-1 { font-size: 18px; }
  .fb-mark-2 { font-size: 8px; }
  .fb-back span:last-child { display: none; }
  .fb-back-arrow { font-size: 18px; }
  .fb-hero-grid { grid-template-columns: 1fr; gap: 20px; padding: 50px 22px 32px; text-align: center; }
  .fb-hero-crest { width: 110px; height: 110px; margin: 0 auto; }
  .fb-hero-h { font-size: clamp(54px, 18vw, 96px); }
  .fb-hero-tagline { font-size: clamp(16px, 4.8vw, 22px); }
  .fb-hero-stats {
    grid-template-columns: 1fr 1fr;
    padding: 22px 22px 28px;
    gap: 14px 0;
  }
  .fb-hero-stat {
    text-align: center;
    padding: 0 6px;
    border-right: 1px solid rgba(243,239,230,0.12);
  }
  .fb-hero-stat:nth-child(2) { border-right: 0; }
  .fb-hero-stat:nth-child(3) {
    padding-top: 14px;
    border-top: 1px solid rgba(243,239,230,0.12);
    grid-column: 1;
    border-right: 1px solid rgba(243,239,230,0.12);
  }
  .fb-hero-stat:nth-child(4) {
    padding-top: 14px;
    border-top: 1px solid rgba(243,239,230,0.12);
    border-right: 0;
  }
  .fb-hero-stat-num { font-size: clamp(26px, 8vw, 36px); }
  .fb-hero-stat-l { font-size: 9.5px; letter-spacing: 0.18em; }
  .fb-hero-ticker { font-size: 10px; letter-spacing: 0.1em; }
  .fb-hero-ticker-label { padding: 10px 14px; letter-spacing: 0.18em; }
  .fb-hero-ticker-track { padding: 10px 0; gap: 22px; }
  .fb-hero-ticker-track span { padding-left: 18px; }
  .fb-foot { padding: 40px 24px; margin-top: 40px; }
  .fb-foot-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
}

@media (max-width: 480px) {
  .fb-mark-2 { display: none; }
  .fb-hero { padding: 40px 16px 20px; }
}

/* ───────────────────────── BLOG ───────────────────────── */
.blog-sec {
  position: relative;
  background: var(--paper);
  color: var(--navy);
  padding: 60px 60px 100px;
  max-width: 1280px;
  margin: 0 auto;
}
.blog-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 28px;
  opacity: 0.7;
}
.blog-eyebrow-line {
  flex: 1;
  height: 1px;
  background: rgba(10,27,53,0.25);
}
.blog-h {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 400;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  margin: 0 0 48px;
}
.blog-h em { font-style: italic; color: var(--accent); }
.blog-empty {
  font-family: "Geist Mono", monospace;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-align: center;
  padding: 60px 20px;
  opacity: 0.55;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.blog-card {
  position: relative;
  background: white;
  border: 1px solid rgba(10,27,53,0.12);
  border-radius: 3px;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(.2,.7,.3,1), box-shadow 0.4s, border-color 0.4s;
  display: flex;
  flex-direction: column;
}
.blog-card-img {
  border-radius: 3px 3px 0 0;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(10,27,53,0.14);
  border-color: var(--accent);
}
.blog-card-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--navy-2);
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(.2,.7,.3,1);
}
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body {
  padding: 16px 24px 24px;
  display: flex; flex-direction: column; flex: 1;
}
.blog-card:not(:has(.blog-card-img)) .author-badge-md {
  margin-top: 0;
  padding-top: 24px;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.blog-card-cat {
  font-family: "Geist Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  background: var(--navy);
  color: var(--paper);
  padding: 4px 9px;
  border-radius: 1px;
}
.blog-card-date {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  opacity: 0.6;
}
.blog-card-title {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.15;
  margin: 0 0 12px;
  color: var(--navy);
}
.blog-card-excerpt {
  font-family: "Newsreader", Georgia, serif;
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 18px;
  color: var(--navy);
  opacity: 0.78;
}
.blog-card-author {
  margin-top: auto;
  display: flex;
  align-items: center;
}

/* Author badge — bigger, more prominent (avatar centered above body) */
.author-badge {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px 0;
}
.author-badge-avatar {
  flex: 0 0 auto;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: "Big Shoulders Display", "Archivo", sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.author-badge-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}
.author-badge-l {
  font-family: "Geist Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.32em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 700;
}
.author-badge-name {
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0;
}

/* MD size (used on cards) — overlaps the cover image */
.author-badge-md {
  margin-top: -36px;
  z-index: 3;
}
.author-badge-md .author-badge-avatar {
  width: 60px; height: 76px;
  font-size: 22px;
}
.author-badge-md .author-badge-name {
  font-size: 17px;
}

/* LG size (modal) */
.author-badge-lg {
  padding: 0;
  margin-bottom: 28px;
  gap: 16px;
}
.author-badge-lg .author-badge-avatar {
  width: 76px; height: 96px;
  font-size: 28px;
}
.author-badge-lg .author-badge-l { font-size: 10px; }
.author-badge-lg .author-badge-name { font-size: 22px; }

/* Author chip — used on blog cards + modal */
.author-chip-blog {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 12px 4px 4px;
  border-radius: 999px;
  background: rgba(10,27,53,0.05);
  border: 1px solid rgba(10,27,53,0.08);
  transition: background 0.25s, border-color 0.25s;
}
.author-chip-blog:hover {
  background: rgba(233,191,94,0.18);
  border-color: rgba(233,191,94,0.5);
}
.author-chip-blog-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background-size: cover;
  background-position: center top;
  flex: 0 0 auto;
  font-family: "Big Shoulders Display", "Archivo", sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: white;
  letter-spacing: 0;
  overflow: hidden;
}
.author-chip-blog-name {
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: var(--navy);
  letter-spacing: 0;
}
.author-chip-blog.lg {
  padding: 6px 16px 6px 6px;
}
.author-chip-blog.lg .author-chip-blog-avatar {
  width: 44px; height: 44px;
  font-size: 18px;
}
.author-chip-blog.lg .author-chip-blog-name {
  font-size: 17px;
}

/* Modal */
.blog-modal {
  position: fixed;
  inset: 0;
  background: rgba(10,27,53,0.85);
  z-index: 200;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 60px 24px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  animation: blogModalIn 0.3s ease;
}
@keyframes blogModalIn { from { opacity: 0; } }
.blog-modal-inner {
  background: var(--paper);
  color: var(--navy);
  max-width: 760px;
  width: 100%;
  padding: 60px 60px 70px;
  border-radius: 3px;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
  animation: blogModalSlide 0.5s cubic-bezier(.2,.7,.3,1);
}
@keyframes blogModalSlide { from { transform: translateY(20px); opacity: 0; } }
.blog-modal-close {
  position: absolute;
  top: 18px; right: 18px;
  font-size: 28px;
  background: none;
  border: 0;
  color: var(--navy);
  cursor: pointer;
  width: 40px; height: 40px;
  border-radius: 50%;
  transition: background 0.2s;
  line-height: 1;
}
.blog-modal-close:hover { background: rgba(10,27,53,0.08); }
.blog-modal-meta {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
}
.blog-modal-title {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(34px, 4.5vw, 52px);
  line-height: 1.05;
  margin: 0 0 8px;
  color: var(--navy);
}
.blog-modal-author {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.blog-modal-cover {
  margin: 0 -20px 28px;
  border-radius: 2px;
  overflow: hidden;
}
.blog-modal-cover img { width: 100%; height: auto; display: block; }
.blog-modal-body {
  font-family: "Newsreader", Georgia, serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--navy);
}
.blog-modal-body h1, .blog-modal-body h2, .blog-modal-body h3 {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 500;
  font-style: italic;
  margin: 32px 0 12px;
}
.blog-modal-body h1 { font-size: 32px; }
.blog-modal-body h2 { font-size: 26px; }
.blog-modal-body h3 { font-size: 22px; }
.blog-modal-body p { margin: 0 0 16px; }
.blog-modal-body strong { color: var(--navy); }
.blog-modal-body em { color: var(--accent); }
.blog-modal-body a { color: var(--navy); text-decoration: underline; }
.blog-modal-body img { max-width: 100%; height: auto; border-radius: 2px; margin: 18px 0; }
.blog-modal-body blockquote {
  border-left: 3px solid var(--accent);
  padding: 4px 0 4px 18px;
  margin: 22px 0;
  font-style: italic;
  opacity: 0.85;
}
.blog-modal-body ul, .blog-modal-body ol { padding-left: 22px; margin: 0 0 18px; }

.blog-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s, transform 0.7s;
}
.blog-reveal.in-view { opacity: 1; transform: none; }

/* "Alle Beiträge ansehen" — Link zum Archiv */
.blog-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 48px;
}
.blog-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 32px;
  background: var(--navy);
  color: var(--paper);
  font-family: "Big Shoulders Display", "Archivo", sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.3s, color 0.3s, transform 0.3s;
  white-space: nowrap;
}
.blog-more-btn:hover {
  background: var(--accent);
  color: var(--navy);
  transform: translateY(-2px);
}
.blog-more-arrow {
  font-size: 18px;
  transition: transform 0.3s;
}
.blog-more-btn:hover .blog-more-arrow {
  transform: translateX(4px);
}
.blog-more-count {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--navy);
  opacity: 0.55;
  text-transform: uppercase;
}

@media (max-width: 820px) {
  .blog-sec { padding: 80px 24px 70px; }
  .blog-h { font-size: clamp(40px, 10vw, 64px); margin-bottom: 32px; }
  .blog-grid { grid-template-columns: 1fr; gap: 18px; }
  .blog-modal { padding: 0; }
  .blog-modal-inner { padding: 60px 24px 50px; min-height: auto; }
  .blog-modal-cover { margin: 0 0 22px; }
}

@media (max-width: 480px) {
  .blog-sec { padding: 60px 16px 60px; }
  .blog-modal-title { font-size: clamp(28px, 8vw, 38px); }
  .blog-modal-body { font-size: 16px; }
}

/* ───────────────────────── BREAKING NEWS ───────────────────────── */
.bn-sec {
  position: relative;
  background: var(--paper);
  color: var(--navy);
  padding: 0;
  overflow: hidden;
}
.bn-strip-end { margin-top: 80px; }
.bn-strip {
  background: #c0392b;
  color: #fff;
  padding: 14px 0;
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.32em;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}
.bn-strip-track {
  display: flex;
  width: max-content;
  animation: bnStripScroll 40s linear infinite;
}
.bn-strip-track-half {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-left: 28px;
  flex: 0 0 auto;
}
@keyframes bnStripScroll {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}
.bn-strip-label {
  flex: 0 0 auto;
}
.bn-strip-dot {
  flex: 0 0 auto;
  width: 8px; height: 8px;
  background: #fff;
  border-radius: 50%;
  animation: bnPulse 1.4s ease-in-out infinite;
}
@keyframes bnPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.55; transform: scale(0.85); }
}
.bn-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 60px 0;
  position: relative;
}
.bn-inner::before {
  content: "II";
  position: absolute;
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-size: 360px;
  color: rgba(10,27,53,0.05);
  top: 30px;
  right: -20px;
  pointer-events: none;
  line-height: 0.8;
  z-index: 0;
}
.bn-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 56px;
}
.bn-text { position: relative; z-index: 1; }
.bn-photo {
  position: relative;
  margin: 0;
  z-index: 1;
  overflow: hidden;
  border-radius: 3px;
  background: var(--navy-2);
  box-shadow: 0 24px 48px rgba(10,27,53,0.18);
  transform: rotate(0.6deg);
  transition: transform 0.6s cubic-bezier(.2,.7,.3,1);
}
.bn-photo:hover { transform: rotate(0deg) scale(1.01); }
.bn-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05) grayscale(0.15);
  display: block;
  aspect-ratio: 4 / 5;
}
.bn-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,27,53,0.7) 100%);
  pointer-events: none;
}
.bn-photo-strike {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  background:
    linear-gradient(
      to top right,
      transparent calc(50% - 5px),
      rgba(192, 57, 43, 0.92) calc(50% - 5px),
      rgba(192, 57, 43, 0.92) calc(50% + 5px),
      transparent calc(50% + 5px)
    ),
    linear-gradient(
      to top left,
      transparent calc(50% - 5px),
      rgba(192, 57, 43, 0.92) calc(50% - 5px),
      rgba(192, 57, 43, 0.92) calc(50% + 5px),
      transparent calc(50% + 5px)
    );
  filter: drop-shadow(0 2px 6px rgba(192,57,43,0.45));
  animation: bnStrikeIn 1.1s cubic-bezier(.2,.7,.3,1) 0.6s both;
}
@keyframes bnStrikeIn {
  0%   { opacity: 0; transform: scale(0.6) rotate(-4deg); }
  60%  { opacity: 1; transform: scale(1.04) rotate(2deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}
.bn-photo-cap {
  position: absolute;
  left: 18px; right: 18px; bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
  color: var(--paper);
}
.bn-photo-tag {
  display: inline-block;
  width: fit-content;
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.3em;
  background: #c0392b;
  padding: 4px 10px;
  font-weight: 700;
}
.bn-photo-t {
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.2;
  margin-top: 6px;
}
.bn-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.65;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
.bn-meta-tag {
  background: var(--navy);
  color: var(--paper);
  padding: 6px 12px;
  letter-spacing: 0.3em;
  opacity: 1;
}
.bn-meta-sep {
  flex: 0 0 40px;
  height: 1px;
  background: var(--navy);
  opacity: 0.3;
}
.bn-headline {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 500;
  font-size: clamp(56px, 8vw, 112px);
  line-height: 0.94;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 0 36px;
  position: relative;
  z-index: 1;
}
.bn-headline em {
  font-style: italic;
  color: #c0392b;
}
.bn-lead {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.45;
  color: var(--navy);
  max-width: 700px;
  margin: 0 0 48px;
  position: relative;
  z-index: 1;
}
.bn-lead em {
  font-style: italic;
  color: var(--accent);
}
.bn-divider {
  height: 1px;
  background: rgba(10,27,53,0.18);
  margin: 0 0 48px;
  position: relative;
  z-index: 1;
}
.bn-cta-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.bn-cta-text { max-width: 540px; }
.bn-cta-tag {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--accent);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.bn-cta-h {
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.05;
  color: var(--navy);
  margin-bottom: 8px;
}
.bn-cta-sub {
  font-family: "Geist Mono", monospace;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.65;
}
.bn-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: var(--navy);
  color: var(--paper);
  font-family: "Big Shoulders Display", "Archivo", sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.3s, transform 0.3s;
  white-space: nowrap;
}
.bn-cta-btn:hover {
  background: var(--accent);
  color: var(--navy);
  transform: translateY(-2px);
}

.bn-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s, transform 0.7s;
}
.bn-reveal.in-view {
  opacity: 1;
  transform: none;
}

.bn-end-strip {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 1180px;
  margin: 70px auto 0;
  padding: 0 60px;
}
.bn-end-line {
  flex: 1;
  height: 1px;
  background: rgba(10,27,53,0.25);
}
.bn-end-label {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--navy);
  opacity: 0.55;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 820px) {
  .bn-inner { padding: 60px 28px 0; }
  .bn-inner::before { font-size: 240px; top: 50px; right: -10px; }
  .bn-strip { padding: 12px 0; font-size: 10px; letter-spacing: 0.26em; }
  .bn-strip-track-half { gap: 22px; padding-left: 22px; }
  .bn-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px; }
  .bn-photo { transform: rotate(0deg); }
  .bn-photo img { aspect-ratio: 4 / 3; }
  .bn-meta { margin-bottom: 22px; gap: 12px; }
  .bn-meta-sep { display: none; }
  .bn-headline { font-size: clamp(48px, 12vw, 80px); margin-bottom: 24px; }
  .bn-lead { font-size: clamp(17px, 4.4vw, 22px); margin-bottom: 0; }
  .bn-divider { margin-bottom: 32px; }
  .bn-cta-row { flex-direction: column; align-items: stretch; gap: 24px; }
}

@media (max-width: 480px) {
  .bn-inner { padding: 50px 18px 0; }
  .bn-sec { padding-bottom: 70px; }
  .bn-end-strip { padding: 0 18px; gap: 10px; margin-top: 50px; }
  .bn-end-label { font-size: 9px; letter-spacing: 0.22em; }
}

@media (max-width: 820px) {
  .bn-end-strip { padding: 0 28px; margin-top: 56px; }
  .bn-end-label { font-size: 10px; }
}

/* === Hymne · Vinyl/Magazin-Look Audio-Player === */
.hy-sec {
  position: relative;
  overflow: hidden;
  padding: 80px 32px 88px;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(233,191,94,0.10) 0%, transparent 60%),
    linear-gradient(180deg, #0c1f3a 0%, #060d1e 100%);
  color: var(--paper);
  text-align: center;
}
.hy-grain {
  position: absolute; inset: 0;
  background-image: repeating-radial-gradient(circle at 60% 40%, rgba(255,255,255,0.025) 0 1px, transparent 1px 4px);
  pointer-events: none;
  z-index: 1;
}
.hy-eyebrow {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  padding: 7px 18px;
  background: rgba(233,191,94,0.15);
  border: 1px solid rgba(233,191,94,0.4);
  border-radius: 2px;
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.26em;
  color: #f4d76b;
  font-weight: 700;
}
.hy-eyebrow-dot {
  width: 6px; height: 6px;
  background: #e9bf5e;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(233,191,94,0.7);
}
.hy-h {
  position: relative;
  z-index: 2;
  font-family: "Newsreader", Georgia, serif;
  font-weight: 500;
  font-size: clamp(48px, 8.5vw, 86px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: #f6efde;
}
.hy-h em {
  font-style: italic;
  color: #e9bf5e;
}
.hy-lead {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto 44px;
  font-family: "Newsreader", Georgia, serif;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(243,239,230,0.78);
}
.hy-spotify {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin: 0 auto 30px;
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(0,0,0,0.4) 100%),
    rgba(8,18,38,0.85);
  border: 1px solid rgba(233,191,94,0.32);
  border-radius: 10px;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.06);
}
.hy-spotify iframe {
  display: block;
  border-radius: 6px;
  width: 100%;
}

/* Legacy Custom-Audio-Player (v1 Hymne) — nicht mehr verwendet, behalten als dead code */
.hy-player {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto 30px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: center;
  padding: 32px 36px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(0,0,0,0.4) 100%),
    rgba(8,18,38,0.85);
  border: 1px solid rgba(233,191,94,0.32);
  border-radius: 4px;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.06);
  text-align: left;
}
.hy-cover {
  position: relative;
  width: 240px;
  height: 240px;
  display: grid;
  place-items: center;
}
.hy-disc {
  position: relative;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #1a1a1a 0%, #0a0a0a 60%, #050505 100%);
  box-shadow:
    0 10px 30px rgba(0,0,0,0.7),
    inset 0 0 0 1px rgba(255,255,255,0.04),
    inset 0 0 30px rgba(0,0,0,0.6);
  display: grid;
  place-items: center;
  transition: transform 0.4s;
}
.hy-disc.is-spinning {
  animation: hyDiscSpin 4s linear infinite;
}
@keyframes hyDiscSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.hy-disc-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04);
  pointer-events: none;
}
.hy-disc-ring-1 { inset: 14px; }
.hy-disc-ring-2 { inset: 32px; }
.hy-disc-ring-3 { inset: 55px; border-color: rgba(255,255,255,0.06); }
.hy-disc-label {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, #c0392b 0%, #7a1c12 80%);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #f6efde;
  font-family: "Geist Mono", monospace;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 1px rgba(0,0,0,0.5);
  position: relative;
}
.hy-disc-label::after {
  content: "";
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #050505;
  box-shadow: inset 0 0 4px rgba(0,0,0,0.9);
}
.hy-disc-l-1 { font-size: 11px; opacity: 0.9; }
.hy-disc-l-2 { font-family: "Newsreader", Georgia, serif; font-style: italic; font-size: 28px; line-height: 1; }
.hy-disc-l-3 { font-size: 7px; letter-spacing: 0.15em; opacity: 0.7; margin-top: 3px; }
.hy-tonearm {
  position: absolute;
  top: -6px;
  right: -10px;
  width: 130px;
  height: 8px;
  background: linear-gradient(90deg, #b0b0b0, #888 60%, #555);
  transform-origin: right center;
  transform: rotate(-22deg);
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.5);
  z-index: 3;
}
.hy-tonearm::before {
  content: "";
  position: absolute;
  left: -8px;
  top: -3px;
  width: 14px;
  height: 14px;
  background: #c0392b;
  border-radius: 2px;
  box-shadow: 0 0 4px rgba(0,0,0,0.5);
}
.hy-tonearm::after {
  content: "";
  position: absolute;
  right: -8px;
  top: -8px;
  width: 24px;
  height: 24px;
  background: radial-gradient(circle, #888 0%, #444 100%);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.6);
}
.hy-controls {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hy-title {
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-size: 28px;
  color: #f6efde;
  line-height: 1.1;
  margin-bottom: 6px;
}
.hy-sub {
  font-family: "Geist Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: rgba(243,239,230,0.55);
}
.hy-play-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hy-play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(180deg, #f4d76b 0%, #b88a25 100%);
  border: none;
  color: #0a1b35;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow:
    0 8px 18px rgba(233,191,94,0.4),
    inset 0 1px 0 rgba(255,255,255,0.4);
  transition: transform 0.15s, box-shadow 0.15s;
}
.hy-play-btn:hover {
  transform: scale(1.06);
  box-shadow:
    0 10px 24px rgba(233,191,94,0.55),
    inset 0 1px 0 rgba(255,255,255,0.5);
}
.hy-play-btn:active { transform: scale(0.96); }
.hy-progress {
  position: relative;
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  cursor: pointer;
}
.hy-progress-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  background: linear-gradient(90deg, #b88a25, #e9bf5e);
  border-radius: 3px;
  box-shadow: 0 0 8px rgba(233,191,94,0.5);
}
.hy-progress-cursor {
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  background: #f4d76b;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px rgba(233,191,94,0.7);
}
.hy-time {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(243,239,230,0.65);
  font-variant-numeric: tabular-nums;
  display: inline-flex;
  gap: 4px;
  flex-shrink: 0;
  min-width: 80px;
  justify-content: flex-end;
}
.hy-time-cur { color: #e9bf5e; }
.hy-time-sep { color: rgba(243,239,230,0.3); }
.hy-eq {
  display: flex;
  align-items: center;
  gap: 4px;
  padding-top: 6px;
  height: 28px;
}
.hy-eq-bar {
  width: 3px;
  height: 6px;
  background: rgba(233,191,94,0.4);
  border-radius: 1px;
  align-self: flex-end;
}
.hy-eq.is-active .hy-eq-bar {
  animation: hyEqBounce 0.8s ease-in-out infinite;
  background: #e9bf5e;
  box-shadow: 0 0 4px rgba(233,191,94,0.6);
}
@keyframes hyEqBounce {
  0%, 100% { height: 6px; }
  50%      { height: 22px; }
}
.hy-eq-l {
  margin-left: 10px;
  font-family: "Geist Mono", monospace;
  font-size: 9.5px;
  letter-spacing: 0.22em;
  color: rgba(233,191,94,0.6);
  font-weight: 700;
  align-self: center;
}
.hy-foot {
  position: relative;
  z-index: 2;
  font-family: "Geist Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(243,239,230,0.45);
  margin-top: 24px;
}
.hy-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s, transform 0.7s;
}
.hy-reveal.in-view { opacity: 1; transform: none; }
@media (max-width: 760px) {
  .hy-sec { padding: 60px 18px 70px; }
  .hy-h { font-size: clamp(38px, 11vw, 64px); }
  .hy-lead { font-size: 15px; margin-bottom: 32px; }
  .hy-player {
    grid-template-columns: 1fr;
    padding: 24px 20px;
    gap: 22px;
    max-width: 100%;
  }
  .hy-cover { margin: 0 auto; width: 200px; height: 200px; }
  .hy-disc { width: 180px; height: 180px; }
  .hy-tonearm { width: 100px; right: -4px; }
  .hy-title { font-size: 22px; }
  .hy-play-row { gap: 10px; }
  .hy-play-btn { width: 48px; height: 48px; }
  .hy-time { font-size: 11px; min-width: 68px; }
  .hy-foot { font-size: 9px; letter-spacing: 0.22em; }
}

/* === Torwart-Trikot Drop · Limited-Edition mit Live-Unblur === */
.tk-drop-sec {
  position: relative;
  overflow: hidden;
  padding: 80px 28px 88px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(192,57,43,0.12) 0%, transparent 50%),
    linear-gradient(180deg, #0a1b35 0%, #060d1e 100%);
  color: var(--paper);
  text-align: center;
  isolation: isolate;
}
.tk-drop-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(233,191,94,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(233,191,94,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 1;
}
.tk-drop-spotlight {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(192,57,43,0.18) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.tk-drop-eyebrow {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding: 7px 16px;
  background: #c0392b;
  color: #fff;
  border-radius: 2px;
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.28em;
  font-weight: 800;
  box-shadow: 0 6px 18px rgba(192,57,43,0.5);
}
.tk-drop-eyebrow-strip {
  display: inline-block;
  width: 20px;
  height: 2px;
  background: #fff;
}
.tk-drop-eyebrow-dot {
  width: 7px; height: 7px;
  background: #fff;
  border-radius: 50%;
  animation: cmEyebrowPulse 1.2s ease-in-out infinite;
}
.tk-drop-h {
  position: relative;
  z-index: 3;
  font-family: "Newsreader", Georgia, serif;
  font-weight: 500;
  font-size: clamp(44px, 7.5vw, 78px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: #f6efde;
}
.tk-drop-h em {
  font-style: italic;
  color: #e9bf5e;
}
.tk-drop-lead {
  position: relative;
  z-index: 3;
  max-width: 720px;
  margin: 0 auto 44px;
  font-family: "Newsreader", Georgia, serif;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(243,239,230,0.78);
}
.tk-drop-lead strong {
  color: #f4d76b;
  font-weight: 600;
}
.tk-drop-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 880px;
  margin: 0 auto 48px;
}
.tk-drop-card {
  position: relative;
  margin: 0;
  padding: 18px 16px 14px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(0,0,0,0.45) 100%),
    rgba(8,18,38,0.7);
  border: 1px solid rgba(233,191,94,0.32);
  border-radius: 3px;
  box-shadow: 0 14px 36px rgba(0,0,0,0.5);
  transition: transform 0.3s, box-shadow 0.3s;
}
.tk-drop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(0,0,0,0.6);
}
.tk-drop-card-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 10px;
  background: rgba(192,57,43,0.25);
  border: 1px solid rgba(192,57,43,0.5);
  color: #ff8a8a;
  font-family: "Geist Mono", monospace;
  font-size: 9.5px;
  letter-spacing: 0.26em;
  font-weight: 800;
  border-radius: 2px;
}
.tk-drop-card-stage {
  position: relative;
  background: radial-gradient(ellipse at center, rgba(233,191,94,0.06) 0%, transparent 70%);
  padding: 18px 8px;
  border-radius: 2px;
  min-height: 320px;
  display: grid;
  place-items: center;
}
.tk-drop-card-img {
  max-width: 100%;
  max-height: 360px;
  width: auto;
  height: auto;
  transition: filter 0.6s;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.5));
}
.tk-drop-card-veil {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Geist Mono", monospace;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.24em;
  color: #ff4d4d;
  text-align: center;
  line-height: 1.4;
  background: rgba(0,0,0,0.7);
  padding: 12px 18px;
  border: 2px solid #ff4d4d;
  border-radius: 2px;
  text-shadow: 0 0 12px rgba(255,77,77,0.7);
  box-shadow: 0 0 20px rgba(255,77,77,0.3);
  pointer-events: none;
  z-index: 3;
}
.tk-drop-card-cap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding: 8px 12px;
  background: rgba(0,0,0,0.4);
  border-top: 1px dashed rgba(233,191,94,0.25);
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  font-weight: 700;
}
.tk-drop-card-cap-l { color: #e9bf5e; }
.tk-drop-card-cap-r { color: rgba(255,138,138,0.7); }
.tk-drop-cd {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto 30px;
  padding: 18px 22px;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(233,191,94,0.35);
  border-radius: 2px;
}
.tk-drop-cd-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 72px;
  padding: 10px 6px 6px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(233,191,94,0.2);
  border-radius: 2px;
}
.tk-drop-cd-num {
  font-family: "Geist Mono", monospace;
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 800;
  color: #f4d76b;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  text-shadow: 0 0 12px rgba(233,191,94,0.45);
}
.tk-drop-cd-l {
  font-family: "Geist Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.24em;
  color: rgba(233,191,94,0.6);
  font-weight: 700;
  margin-top: 6px;
}
.tk-drop-cd-sep {
  font-size: 30px;
  font-weight: 800;
  color: rgba(233,191,94,0.4);
  font-family: "Geist Mono", monospace;
}
.tk-drop-revealed {
  position: relative;
  z-index: 3;
  display: inline-block;
  margin: 0 auto 30px;
  padding: 22px 28px;
  background: rgba(0,0,0,0.55);
  border: 1px solid #e9bf5e;
  border-radius: 3px;
  box-shadow: 0 12px 30px rgba(233,191,94,0.18);
}
.tk-drop-revealed-tag {
  display: inline-block;
  background: #e9bf5e;
  color: #0a1b35;
  font-family: "Geist Mono", monospace;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.32em;
  padding: 5px 12px;
  margin-bottom: 12px;
}
.tk-drop-revealed-h {
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-size: 28px;
  color: #f6efde;
  line-height: 1.2;
}
.tk-drop-revealed-sub {
  margin-top: 6px;
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: rgba(243,239,230,0.6);
}
.tk-drop-foot {
  position: relative;
  z-index: 3;
  font-family: "Geist Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(243,239,230,0.45);
  margin-top: 20px;
}
.tk-drop-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s, transform 0.7s;
}
.tk-drop-reveal.in-view { opacity: 1; transform: none; }
@media (max-width: 760px) {
  .tk-drop-sec { padding: 60px 16px 70px; }
  .tk-drop-h { font-size: clamp(34px, 11vw, 56px); }
  .tk-drop-lead { font-size: 15px; margin-bottom: 32px; }
  .tk-drop-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 100%;
  }
  .tk-drop-card-stage { min-height: 260px; }
  .tk-drop-card-img { max-height: 280px; }
  .tk-drop-card-veil { font-size: 13px; padding: 10px 14px; }
  .tk-drop-cd { gap: 6px; padding: 14px 14px; }
  .tk-drop-cd-cell { min-width: 56px; padding: 8px 4px 4px; }
  .tk-drop-cd-sep { font-size: 22px; }
  .tk-drop-cd-l { font-size: 8.5px; letter-spacing: 0.18em; }
  .tk-drop-foot { font-size: 9px; letter-spacing: 0.18em; }
}
@media (max-width: 480px) {
  .tk-drop-cd-sep { display: none; }
  .tk-drop-cd { gap: 4px; }
  .tk-drop-cd-cell { flex: 1 1 calc(25% - 4px); min-width: 0; }
}

/* === Instagram CTA — klassisch im Leisach-Brand (navy/cream/gold) === */
.ig-cta-sec {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 60px 28px 70px;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(233,191,94,0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 90%, rgba(233,191,94,0.06) 0%, transparent 55%),
    linear-gradient(180deg, #0a1b35 0%, #060d1e 100%);
  color: var(--paper);
  isolation: isolate;
  text-decoration: none;
  border-top: 1px solid rgba(233,191,94,0.12);
  border-bottom: 1px solid rgba(233,191,94,0.12);
  transition: background 0.4s;
}
.ig-cta-link {
  cursor: pointer;
}
.ig-cta-link:hover {
  background:
    radial-gradient(ellipse at 70% 20%, rgba(233,191,94,0.16) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 90%, rgba(233,191,94,0.10) 0%, transparent 55%),
    linear-gradient(180deg, #0c2240 0%, #08122a 100%);
}
.ig-cta-grain {
  position: absolute; inset: 0;
  background-image: repeating-radial-gradient(circle at 60% 40%, rgba(255,255,255,0.025) 0 1px, transparent 1px 4px);
  pointer-events: none;
  z-index: 1;
}
.ig-cta-glow {
  position: absolute;
  top: -220px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 700px;
  background: radial-gradient(circle, rgba(233,191,94,0.14) 0%, rgba(233,191,94,0.08) 35%, transparent 75%);
  pointer-events: none;
  z-index: 1;
  filter: blur(28px);
}

/* Marquee strip oben — gold/cream im Brand-Look */
.ig-cta-strip {
  position: absolute;
  top: 0;
  left: 0; right: 0;
  z-index: 2;
  overflow: hidden;
  padding: 10px 0;
  background: linear-gradient(180deg, #b88a25 0%, #8a651a 100%);
  color: #f3efe6;
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.4em;
  font-weight: 800;
  white-space: nowrap;
  border-bottom: 1px solid rgba(0,0,0,0.18);
}
.ig-cta-strip span {
  display: inline-block;
  padding-left: 100%;
  animation: igCtaTicker 30s linear infinite;
}
@keyframes igCtaTicker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* === Main profile card grid === */
.ig-cta-grid {
  position: relative;
  z-index: 3;
  max-width: 880px;
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: center;
}

/* === Avatar with story-ring (animated IG gradient) === */
.ig-cta-avatar-block {
  display: grid;
  place-items: center;
}
.ig-cta-avatar-ring {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  padding: 4px;
  background: conic-gradient(from 0deg, #b88a25, #f4d76b, #e9bf5e, #b88a25, #f4d76b, #b88a25);
  animation: igCtaRingSpin 14s linear infinite;
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}
@keyframes igCtaRingSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.ig-cta-avatar-ring-inner {
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: #0a1b35;
  z-index: 1;
}
.ig-cta-avatar {
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: #f3efe6;
  display: grid;
  place-items: center;
  z-index: 2;
  overflow: hidden;
  animation: igCtaRingSpin 14s linear infinite reverse;
}
.ig-cta-avatar img {
  width: 75%;
  height: 75%;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.18));
}
.ig-cta-live-dot {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  background: #c0392b;
  color: #fff;
  font-family: "Geist Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.22em;
  font-weight: 900;
  padding: 3px 7px;
  border-radius: 3px;
  z-index: 4;
  box-shadow: 0 0 0 2px #0a1b35, 0 2px 6px rgba(192,57,43,0.6);
  animation: igCtaLiveBlink 1.4s ease-in-out infinite;
}
@keyframes igCtaLiveBlink {
  0%, 60% { opacity: 1; }
  61%, 100% { opacity: 0.45; }
}

/* === Right info column === */
.ig-cta-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ig-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: rgba(243,239,230,0.55);
  font-weight: 700;
}
.ig-cta-eyebrow-dot {
  width: 7px;
  height: 7px;
  background: #e9bf5e;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(233,191,94,0.7);
  animation: igCtaLiveBlink 1.6s ease-in-out infinite;
}

.ig-cta-handle-h {
  margin: 0;
  line-height: 1;
}
.ig-cta-handle {
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(56px, 7vw, 88px);
  letter-spacing: -0.025em;
  color: #f6efde;
  display: inline-block;
}
.ig-cta-handle::first-letter {
  color: #e9bf5e;
}

.ig-cta-bio {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: rgba(243,239,230,0.8);
}
.ig-cta-bio-tag {
  display: inline-block;
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.22em;
  font-weight: 800;
  color: #f4d76b;
  margin-bottom: 2px;
}
.ig-cta-bio-line {
  font-family: "Newsreader", Georgia, serif;
  font-size: 16px;
  line-height: 1.4;
}
.ig-cta-bio-line-italic {
  font-style: italic;
  color: rgba(243,239,230,0.62);
}

/* Stats row */
.ig-cta-stats {
  display: flex;
  gap: 28px;
  margin-top: 8px;
  padding: 14px 0;
  border-top: 1px solid rgba(243,239,230,0.08);
  border-bottom: 1px solid rgba(243,239,230,0.08);
}
.ig-cta-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 60px;
}
.ig-cta-stat-v {
  font-family: "Big Shoulders Display", "Anton", sans-serif;
  font-weight: 900;
  font-size: 30px;
  line-height: 1;
  color: #e9bf5e;
}
.ig-cta-stat-l {
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: rgba(243,239,230,0.5);
  font-weight: 700;
}

/* Inline FOLGEN button — gold im Brand-Look (wie die Trading-Poster Buttons) */
.ig-cta-btn-inline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: linear-gradient(180deg, #f4d76b 0%, #b88a25 100%);
  color: #0a1b35;
  border-radius: 3px;
  align-self: flex-start;
  margin-top: 12px;
  box-shadow:
    0 12px 28px rgba(184,138,37,0.35),
    inset 0 1px 0 rgba(255,255,255,0.32);
  transition: transform 0.2s, box-shadow 0.2s;
}
.ig-cta-link:hover .ig-cta-btn-inline {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #ffd24a 0%, #b88a25 100%);
  box-shadow:
    0 18px 36px rgba(184,138,37,0.45),
    inset 0 1px 0 rgba(255,255,255,0.4);
}
.ig-cta-btn-text {
  font-family: "Geist Mono", monospace;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.32em;
}
.ig-cta-btn-arrow {
  font-size: 18px;
  font-weight: 700;
  transition: transform 0.2s;
}
.ig-cta-link:hover .ig-cta-btn-arrow {
  transform: translate(2px, -2px);
}

.ig-cta-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s, transform 0.7s;
}
.ig-cta-reveal.in-view { opacity: 1; transform: none; }

@media (max-width: 760px) {
  .ig-cta-sec { padding: 50px 18px 60px; }
  .ig-cta-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
    text-align: center;
  }
  .ig-cta-avatar-ring { width: 160px; height: 160px; }
  .ig-cta-info { align-items: center; }
  .ig-cta-handle { font-size: clamp(42px, 12vw, 64px); }
  .ig-cta-bio-line { font-size: 15px; }
  .ig-cta-stats { gap: 20px; padding: 12px 0; }
  .ig-cta-stat-v { font-size: 24px; }
  .ig-cta-btn-inline { padding: 12px 18px; align-self: center; }
  .ig-cta-btn-text { font-size: 13px; letter-spacing: 0.26em; }
  .ig-cta-strip { font-size: 10px; letter-spacing: 0.32em; padding: 8px 0; }
}

/* ───────────────────────── RADTRIKOT · VORBESTELLUNG (Unterseite /trikot/) ───────────────────────── */
.rt-page {
  min-height: 100vh;
  color: var(--paper);
  background: radial-gradient(ellipse at 50% -10%, #14305c 0%, #0a1b35 55%, #050d1f 100%);
}
.rt-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 28px;
  border-bottom: 1px solid rgba(233,191,94,0.18);
  position: sticky; top: 0; z-index: 20;
  background: rgba(10,27,53,0.85);
  backdrop-filter: blur(8px);
}
.rt-back {
  font-family: "Geist Mono", monospace; font-size: 11px; letter-spacing: 0.2em;
  color: var(--paper); text-decoration: none; opacity: 0.8;
}
.rt-back:hover { opacity: 1; color: var(--accent); }
.rt-top-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: "Big Shoulders Display", "Archivo", sans-serif; font-weight: 800;
  letter-spacing: 0.14em; font-size: 14px;
}
.rt-top-brand em { color: var(--accent); font-style: normal; }
.rt-top-logo { width: 26px; height: 26px; border-radius: 50%; object-fit: cover; }
.rt-top-spacer { width: 60px; }

.rt-hero { text-align: center; padding: 64px 24px 30px; max-width: 760px; margin: 0 auto; }
.rt-hero-eyebrow {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  font-family: "Geist Mono", monospace; font-size: 10.5px; letter-spacing: 0.3em;
  color: var(--accent); margin-bottom: 18px;
}
.rt-hero-stripe { width: 38px; height: 1px; background: var(--accent); opacity: 0.6; }
.rt-hero-h {
  font-family: "Big Shoulders Display", "Archivo", sans-serif; font-weight: 900;
  font-size: clamp(40px, 8vw, 78px); line-height: 0.92; margin: 0 0 16px; letter-spacing: 0.01em;
}
.rt-hero-h em { font-family: "Newsreader", Georgia, serif; font-style: italic; font-weight: 500; color: var(--accent); }
.rt-hero-lead { font-family: "Newsreader", Georgia, serif; font-size: 17px; line-height: 1.6; opacity: 0.86; margin: 0; }

.rt-body {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 40px;
  max-width: 1040px; margin: 0 auto; padding: 30px 24px 20px; align-items: start;
}
.rt-jersey { position: sticky; top: 90px; margin: 0; }
.rt-jersey-glow {
  position: absolute; inset: -8% -4% 10%;
  background: radial-gradient(ellipse at 50% 35%, rgba(233,191,94,0.22) 0%, transparent 65%);
  filter: blur(20px); pointer-events: none;
}
.rt-jersey img {
  width: 100%; height: auto; display: block; border-radius: 6px; position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.55);
}
.rt-jersey-cap {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  margin-top: 14px; font-family: "Geist Mono", monospace;
}
.rt-jersey-tag { background: var(--accent); color: var(--navy); font-weight: 700; font-size: 12px; letter-spacing: 0.1em; padding: 4px 10px; border-radius: 2px; }
.rt-jersey-specs { font-size: 10px; letter-spacing: 0.2em; opacity: 0.7; text-transform: uppercase; }

.rt-form-wrap {
  background: var(--paper); color: var(--navy);
  border-radius: 6px; padding: 30px 30px 28px;
  box-shadow: 0 24px 50px rgba(0,0,0,0.5);
}
.rt-form-h, .rt-done-h {
  font-family: "Big Shoulders Display", "Archivo", sans-serif; font-weight: 800;
  font-size: 26px; letter-spacing: 0.04em; text-transform: uppercase; margin: 0 0 20px;
}
.rt-form { display: flex; flex-direction: column; gap: 16px; }
.rt-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.rt-field { display: flex; flex-direction: column; }
.rt-field label {
  font-family: "Geist Mono", monospace; font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 700; opacity: 0.75; margin-bottom: 6px;
}
.rt-opt { opacity: 0.5; font-weight: 400; }
.rt-field input, .rt-field select, .rt-field textarea {
  width: 100%; font-family: "Newsreader", Georgia, serif; font-size: 16px;
  padding: 11px 12px; border: 1px solid rgba(10,27,53,0.22); border-radius: 3px;
  background: white; color: var(--navy);
}
.rt-field input:focus, .rt-field select:focus, .rt-field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(233,191,94,0.25);
}
.rt-field textarea { resize: vertical; }
.rt-invalid { border-color: #c0392b !important; background: #fbf2f1; }

.rt-prods { display: flex; flex-direction: column; gap: 8px; }
.rt-prods-invalid { outline: 1px dashed rgba(192,57,43,0.55); outline-offset: 6px; border-radius: 4px; }
.rt-prod {
  display: flex; align-items: center; gap: 12px; text-align: left;
  padding: 11px 14px; border: 1px solid rgba(10,27,53,0.2); border-radius: 4px;
  background: white; cursor: pointer; font: inherit; transition: border-color 0.2s, background 0.2s;
}
.rt-prod:hover { border-color: var(--accent); }
.rt-prod.is-on { border-color: var(--navy); background: #fbf7ec; box-shadow: inset 0 0 0 1px var(--navy); }
.rt-prod-check {
  flex: 0 0 auto; width: 22px; height: 22px; border-radius: 4px;
  border: 1.5px solid rgba(10,27,53,0.3); display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--navy); font-weight: 700;
}
.rt-prod.is-on .rt-prod-check { background: var(--accent); border-color: var(--accent); }
.rt-prod-main { flex: 1; display: flex; flex-direction: column; gap: 1px; }
.rt-prod-label { font-family: "Big Shoulders Display", "Archivo", sans-serif; font-weight: 800; font-size: 16px; letter-spacing: 0.02em; }
.rt-prod-sub { font-family: "Newsreader", Georgia, serif; font-size: 12.5px; opacity: 0.7; }
.rt-prod-tag {
  flex: 0 0 auto; font-family: "Geist Mono", monospace; font-size: 8px; letter-spacing: 0.14em;
  font-weight: 700; padding: 4px 7px; border-radius: 2px; white-space: nowrap; text-align: center; line-height: 1.3;
}
.rt-prod-tag-go { background: #1e8449; color: white; }
.rt-prod-tag-maybe { background: #b8860b; color: white; }
.rt-prod-tag-demand { background: rgba(10,27,53,0.12); color: var(--navy); }
.rt-prod-thumb {
  flex: 0 0 auto; position: relative;
  width: 66px; height: 50px; border-radius: 3px; overflow: hidden;
  background: #eef1f5; border: 1px solid rgba(10,27,53,0.12); cursor: zoom-in;
}
.rt-prod-thumb img { width: 100%; height: 100%; object-fit: contain; display: block; }
.rt-prod-zoom {
  position: absolute; right: 2px; bottom: 1px; font-size: 11px; line-height: 1;
  color: var(--navy); background: rgba(255,255,255,0.82); border-radius: 2px; padding: 1px 3px;
  opacity: 0; transition: opacity 0.2s;
}
.rt-prod-thumb:hover .rt-prod-zoom { opacity: 1; }
.rt-jersey { cursor: zoom-in; }

/* Linke Spalte: die Teile zum Anschauen */
.rt-showcase { align-self: start; position: sticky; top: 90px; }
.rt-showcase-h { font-family: "Geist Mono", monospace; font-size: 10px; letter-spacing: 0.18em; color: var(--accent); margin-bottom: 12px; }
.rt-showcase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.rt-show {
  margin: 0; cursor: zoom-in; background: #eef1f5;
  border: 1px solid rgba(233,191,94,0.18); border-radius: 6px; padding: 10px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.rt-show:hover { transform: translateY(-3px); box-shadow: 0 14px 26px rgba(0,0,0,0.4); border-color: var(--accent); }
.rt-show-img { aspect-ratio: 4 / 3; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.rt-show-img img { max-width: 100%; max-height: 100%; width: auto; height: auto; display: block; }
.rt-show-cap { display: flex; flex-direction: column; gap: 6px; align-items: flex-start; margin-top: 8px; }
.rt-show-label { font-family: "Big Shoulders Display", "Archivo", sans-serif; font-weight: 800; font-size: 16px; letter-spacing: 0.02em; color: var(--navy); }
.rt-show-tag { font-family: "Geist Mono", monospace; font-size: 8px; letter-spacing: 0.12em; font-weight: 700; padding: 4px 7px; border-radius: 2px; line-height: 1.2; }

/* Produktkarten umbruchfähig (Tag rutscht bei wenig Platz unter den Text) */
.rt-prod { flex-wrap: wrap; align-items: flex-start; }
.rt-prod-main { min-width: 0; gap: 3px; }
.rt-prod-check { margin-top: 1px; }
.rt-prod-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.rt-prod-price { font-family: "Newsreader", Georgia, serif; font-size: 13.5px; color: var(--navy); margin-top: 3px; }
.rt-prod-price strong { font-family: "Big Shoulders Display", "Archivo", sans-serif; font-size: 17px; color: #1e6b3a; letter-spacing: 0.02em; }
.rt-prod-price-meta { display: block; font-family: "Geist Mono", monospace; font-size: 9.5px; letter-spacing: 0.04em; color: rgba(10,27,53,0.6); margin-top: 2px; }
.rt-prods-hint { font-family: "Newsreader", serif; font-style: italic; font-size: 12.5px; opacity: 0.72; margin: 0 0 10px; color: var(--navy); }
.rt-qty { display: inline-flex; align-items: center; gap: 8px; margin-top: 8px; }
.rt-qty-b { width: 32px; height: 32px; border-radius: 4px; border: 1px solid rgba(10,27,53,0.25); background: white; color: var(--navy); font-size: 18px; line-height: 1; cursor: pointer; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.rt-qty-b:hover { background: var(--navy); color: var(--paper); border-color: var(--navy); }
.rt-qty-v { min-width: 24px; text-align: center; font-family: "Big Shoulders Display", "Archivo", sans-serif; font-weight: 800; font-size: 18px; }
.rt-qty-l { font-family: "Geist Mono", monospace; font-size: 10px; letter-spacing: 0.12em; opacity: 0.6; text-transform: uppercase; }
.rt-summe { margin-top: 12px; padding: 12px 14px; background: rgba(30,107,58,0.1); border: 1px solid rgba(30,107,58,0.32); border-radius: 4px; font-family: "Newsreader", serif; font-size: 14px; color: var(--navy); line-height: 1.4; }
.rt-summe strong { font-family: "Big Shoulders Display", "Archivo", sans-serif; font-size: 20px; color: #1e6b3a; margin-left: 2px; }
.rt-summe-note { display: block; font-family: "Geist Mono", monospace; font-size: 9px; letter-spacing: 0.06em; opacity: 0.6; margin-top: 4px; }

.rt-size-link { margin-top: 7px; font-family: "Geist Mono", monospace; font-size: 10px; letter-spacing: 0.08em; color: var(--navy); opacity: 0.6; text-decoration: none; align-self: flex-start; }
.rt-size-link:hover { opacity: 1; color: #b8860b; }

/* Passtabelle + Größenrechner */
.rt-size { max-width: 720px; margin: 30px auto 0; padding: 40px 28px 10px; text-align: center; }
.rt-size-eyebrow { font-family: "Geist Mono", monospace; font-size: 10px; letter-spacing: 0.3em; color: var(--accent); margin-bottom: 8px; }
.rt-size-h { font-family: "Big Shoulders Display", "Archivo", sans-serif; font-weight: 900; font-size: 36px; margin: 0 0 10px; }
.rt-size-text { font-family: "Newsreader", serif; font-size: 15px; line-height: 1.6; opacity: 0.82; max-width: 560px; margin: 0 auto 24px; }
.rt-calc { background: var(--paper); color: var(--navy); border-radius: 6px; padding: 20px 22px; text-align: left; box-shadow: 0 16px 34px rgba(0,0,0,0.4); margin-bottom: 22px; }
.rt-calc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.rt-fit { display: flex; gap: 8px; }
.rt-fit-b { flex: 1; font-family: "Geist Mono", monospace; font-size: 11px; letter-spacing: 0.06em; font-weight: 700; padding: 11px 8px; border: 1px solid rgba(10,27,53,0.22); border-radius: 3px; background: white; color: var(--navy); cursor: pointer; transition: background 0.2s, border-color 0.2s; }
.rt-fit-b:hover { border-color: var(--accent); }
.rt-fit-b.is-on { background: var(--navy); color: var(--paper); border-color: var(--navy); }
.rt-calc-out { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; border-top: 1px solid rgba(10,27,53,0.12); padding-top: 16px; }
.rt-calc-res { font-family: "Newsreader", serif; font-size: 17px; }
.rt-calc-res strong { font-family: "Big Shoulders Display", "Archivo", sans-serif; font-size: 26px; color: #b8860b; letter-spacing: 0.04em; margin-left: 4px; }
.rt-calc-apply { padding: 11px 16px; font-size: 11px; }
.rt-calc-placeholder { font-family: "Newsreader", serif; font-style: italic; opacity: 0.6; font-size: 14px; }
.rt-size-table { width: 100%; max-width: 420px; margin: 0 auto 18px; border-collapse: collapse; background: rgba(255,255,255,0.05); border: 1px solid rgba(233,191,94,0.18); border-radius: 6px; overflow: hidden; }
.rt-size-table th, .rt-size-table td { padding: 9px 16px; text-align: left; font-size: 14px; border-bottom: 1px solid rgba(233,191,94,0.12); }
.rt-size-table th { font-family: "Geist Mono", monospace; font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); }
.rt-size-table td { font-family: "Newsreader", serif; }
.rt-size-table td:first-child { font-family: "Big Shoulders Display", "Archivo", sans-serif; font-weight: 800; letter-spacing: 0.04em; }
.rt-size-table tr:last-child td { border-bottom: 0; }
.rt-size-table tr.is-rec { background: rgba(233,191,94,0.2); }
.rt-size-table tr.is-rec td:first-child { color: var(--accent); }
.rt-size-note { font-family: "Newsreader", serif; font-size: 12.5px; line-height: 1.55; opacity: 0.7; max-width: 560px; margin: 0 auto; }
.rt-size-note a { color: var(--accent); }

.rt-btn {
  font-family: "Geist Mono", monospace; font-size: 12px; letter-spacing: 0.14em; font-weight: 700;
  text-transform: uppercase; border: 0; border-radius: 3px; cursor: pointer; padding: 14px 18px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.rt-btn-go { background: var(--navy); color: var(--paper); }
.rt-btn-go:hover { background: var(--accent); color: var(--navy); }
.rt-btn-go:disabled { opacity: 0.6; cursor: default; }
.rt-btn-go:active { transform: scale(0.99); }
.rt-btn-arrow { font-size: 14px; }
.rt-btn-ghost { background: transparent; color: var(--navy); border: 1px solid rgba(10,27,53,0.3); }
.rt-btn-ghost:hover { background: var(--navy); color: var(--paper); }

.rt-error { background: #fbeae8; color: #a02d22; border-left: 3px solid #c0392b; padding: 10px 12px; font-size: 13px; font-family: "Newsreader", serif; border-radius: 0 3px 3px 0; }
.rt-hint { font-size: 12px; color: #a02d22; font-family: "Geist Mono", monospace; letter-spacing: 0.04em; }
.rt-privacy { font-size: 11px; opacity: 0.6; font-family: "Newsreader", serif; font-style: italic; margin: 4px 0 0; line-height: 1.4; }

.rt-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.rt-done { text-align: center; padding: 20px 6px; }
.rt-done-check { width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 18px; background: #1e8449; color: white; font-size: 34px; display: flex; align-items: center; justify-content: center; }
.rt-done-text { font-family: "Newsreader", serif; font-size: 16px; line-height: 1.6; margin: 0 0 22px; }
.rt-done-back { display: block; margin-top: 16px; font-family: "Geist Mono", monospace; font-size: 11px; letter-spacing: 0.16em; color: var(--navy); opacity: 0.7; }

.rt-maker { max-width: 880px; margin: 30px auto 0; padding: 40px 28px 10px; text-align: center; }
.rt-maker-eyebrow { font-family: "Geist Mono", monospace; font-size: 10px; letter-spacing: 0.3em; color: var(--accent); margin-bottom: 8px; }
.rt-maker-h { font-family: "Big Shoulders Display", "Archivo", sans-serif; font-weight: 900; font-size: 40px; margin: 0 0 12px; }
.rt-maker-text { font-family: "Newsreader", serif; font-size: 16px; line-height: 1.65; opacity: 0.85; max-width: 640px; margin: 0 auto 26px; }
.rt-maker-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; text-align: left; margin-bottom: 24px; }
.rt-maker-spec { background: rgba(255,255,255,0.05); border: 1px solid rgba(233,191,94,0.18); border-radius: 4px; padding: 14px 16px; }
.rt-maker-spec-l { font-family: "Geist Mono", monospace; font-size: 9.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 5px; }
.rt-maker-spec-v { font-family: "Newsreader", serif; font-size: 14px; line-height: 1.4; opacity: 0.9; }
.rt-maker-foot { display: flex; flex-direction: column; gap: 6px; align-items: center; font-family: "Geist Mono", monospace; font-size: 11px; letter-spacing: 0.1em; }
.rt-maker-foot a { color: var(--accent); text-decoration: none; }
.rt-maker-foot a:hover { text-decoration: underline; }
.rt-maker-contact { opacity: 0.55; font-size: 10px; letter-spacing: 0.08em; }

.rt-foot { text-align: center; padding: 40px 20px 50px; font-family: "Geist Mono", monospace; font-size: 9.5px; letter-spacing: 0.28em; opacity: 0.45; }

@media (max-width: 820px) {
  .rt-body { grid-template-columns: 1fr; gap: 26px; }
  .rt-jersey { position: static; max-width: 420px; margin: 0 auto; }
  .rt-showcase { position: static; }
  .rt-maker-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .rt-form-wrap { padding: 22px 18px 22px; }
  .rt-row-2 { grid-template-columns: 1fr; }
  .rt-hero { padding: 44px 18px 20px; }
  .rt-prod-tag { font-size: 7.5px; }
  .rt-calc-row { grid-template-columns: 1fr; }
  .rt-calc-out { flex-direction: column; align-items: stretch; }
  .rt-size-h { font-size: 30px; }
}
