:root {
  /* Nightflyers / Tampa-inspirierte Palette */
  --bg: #0A0A08;
  --bg-2: #15120F;
  --panel: rgba(52, 48, 43, 0.74);
  --panel-strong: rgba(52, 48, 43, 0.92);

  --red: #D50A0A;
  --red-dark: #8F0707;
  --orange: #FF7900;
  --pewter: #34302B;
  --silver: #B1BABF;

  --text: #F4F1EC;
  --muted: #B1BABF;
  --line: rgba(177, 186, 191, 0.18);

  /* alte Variablennamen als Kompatibilität */
  --midnight: #0A0A08;
  --midnight-2: #15120F;
  --navy: #34302B;
  --steel: #4A4540;
  --gold: #FF7900;
  --ice: #F4F1EC;

  --shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
  --radius: 22px;
  --max: 1180px;
}

/* Verhindert, dass CSS display-Regeln das hidden-Attribut überschreiben */
[hidden] {
  display: none !important;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(213, 10, 10, .28), transparent 32rem),
    radial-gradient(circle at 88% 8%, rgba(255, 121, 0, .16), transparent 28rem),
    linear-gradient(135deg, #050504 0%, var(--bg) 45%, var(--pewter) 100%);
  color: var(--ice);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  background: #fff;
  color: #000;
  padding: .75rem 1rem;
  z-index: 1000;
}
.skip-link:focus { left: 1rem; }

.scorebar {
  background: linear-gradient(90deg, var(--red), var(--orange), var(--red));
  color: #090b10;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.scorebar__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: .45rem 1rem;
  display: flex;
  gap: 1.4rem;
  justify-content: center;
  white-space: nowrap;
  overflow: hidden;
}
.scorebar strong { color: #fff; text-shadow: 0 1px 12px rgba(0,0,0,.5); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background:
    linear-gradient(90deg, rgba(10, 10, 8, .94), rgba(52, 48, 43, .88));
  border-bottom: 1px solid rgba(255, 121, 0, .24);
  box-shadow: 0 12px 34px rgba(0,0,0,.28);
}
.nav {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 82px;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: .85rem;
}
.brand img {
  width: 54px;
  height: 54px;
  filter: drop-shadow(0 8px 18px rgba(255,59,31,.25));
}
.brand strong {
  display: block;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 1.04rem;
}
.brand small {
  display: block;
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: .45rem;
}
.nav-links a {
  color: #dce4f1;
  font-weight: 800;
  padding: .7rem .9rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .78rem;
}
.nav-links a:hover,
.nav-links a.active {
  background: rgba(255,255,255,.1);
}
.nav-cta {
  background: linear-gradient(135deg, var(--red), var(--orange)) !important;
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(213, 10, 10, .28);
}
.nav-toggle { display: none; }

.hero {
  position: relative;
  min-height: 760px;
  max-width: min(1500px, calc(100vw - 2rem));
  margin: 1rem auto 0;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  isolation: isolate;
}
.hero__media,
.hero__media img,
.hero__overlay {
  position: absolute;
  inset: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 1% center;
  transform: scale(1.03);
}
.hero__overlay {
  background:
    radial-gradient(circle at 72% 42%, rgba(255, 121, 0, .16), transparent 26rem),
    linear-gradient(90deg, rgba(5, 5, 4, .94), rgba(10, 10, 8, .48) 42%, rgba(5, 5, 4, .9)),
    linear-gradient(0deg, rgba(5, 5, 4, .94), transparent 46%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(7rem, 14vw, 14rem) 1.2rem 0;
}
.eyebrow {
  color: var(--orange);
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .75rem;
  margin: 0 0 .75rem;
}
.hero h1 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -.03em;
  line-height: .84;
  font-size: clamp(4.8rem, 14vw, 12rem);
  font-family: Impact, "Arial Black", ui-sans-serif, sans-serif;
  color: var(--ice);
  -webkit-text-stroke: 0;
  text-shadow:
    0.6px 0 rgba(213, 10, 10, 0.75),
    -0.6px 0 rgba(213, 10, 10, 0.75),
    0 0.6px rgba(213, 10, 10, 0.75),
    0 -0.6px rgba(213, 10, 10, 0.75),
    0 18px 58px rgba(0,0,0,.48);
}
.hero__tagline {
  max-width: 760px;
  margin: 1.1rem 0 0;
  font-size: clamp(1.25rem, 3vw, 2.1rem);
  font-weight: 850;
}
.hero__actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .85rem 1.15rem;
  border-radius: 999px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-size: .82rem;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 10px 28px rgba(0,0,0,.25);
}
.button--primary {
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: #fff;
  border: none;
}
.button--ghost {
  background: rgba(255,255,255,.08);
  color: #fff;
  backdrop-filter: blur(14px);
}
.hero__card {
  position: absolute;
  right: max(1rem, calc((100vw - var(--max))/2));
  bottom: 2rem;
  z-index: 2;
  width: min(360px, calc(100% - 2rem));
  padding: 1.3rem;
  border: 1px solid rgba(255, 121, 0, .28);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(52, 48, 43, .82), rgba(10, 10, 8, .78));
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 54px rgba(0,0,0,.36);
}
.hero__card span {
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .7rem;
}
.hero__card strong {
  display: block;
  margin-top: .3rem;
  font-size: 1.6rem;
  line-height: 1.05;
}
.hero__card p { color: var(--muted); margin-bottom: 0; }

.ticker {
  display: flex;
  gap: 1rem;
  align-items: center;
  max-width: var(--max);
  margin: 1rem auto 0;
  padding: 0 1rem;
}
.ticker strong {
  flex: 0 0 auto;
  background: var(--red);
  padding: .65rem .85rem;
  border-radius: 12px;
  font-size: .8rem;
  letter-spacing: .12em;
}
.ticker__track {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  color: #dbe5f4;
  white-space: nowrap;
}

.ticker__marquee {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: tickerScroll 28s linear infinite;
}

.ticker__marquee:hover {
  animation-play-state: paused;
}

@keyframes tickerScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}.ticker__track span::before {
  content: "◆";
  color: var(--orange);
  margin-right: .75rem;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 1rem 0;
}
.section__header {
  max-width: 760px;
  margin-bottom: 2rem;
}
.section__header--split {
  max-width: none;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
}
.section__header h2,
.league-panel h2,
.feature-media h2,
.sponsor-card h2 {
  margin: 0;
  font-family: Impact, "Arial Black", ui-sans-serif, sans-serif;
  letter-spacing: -.03em;
  text-transform: uppercase;
  line-height: .95;
  font-size: clamp(2.4rem, 6vw, 5rem);
}
.section__header p,
.league-panel p,
.feature-media p,
.sponsor-card p {
  color: var(--muted);
  font-size: 1.05rem;
}

.countdown-section {
  padding: clamp(2rem, 5vw, 4rem) 0;
}

.countdown-panel {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(255, 121, 0, .26);
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 121, 0, .22), transparent 22rem),
    radial-gradient(circle at 12% 90%, rgba(213, 10, 10, .24), transparent 24rem),
    linear-gradient(135deg, rgba(52, 48, 43, .94), rgba(10, 10, 8, .92));
  box-shadow: var(--shadow);
  padding: clamp(1.4rem, 4vw, 2.4rem);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(1.4rem, 4vw, 2.4rem);
  align-items: center;
}

.countdown-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(255,255,255,.06), transparent);
  transform: translateX(-100%);
  animation: countdownSheen 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes countdownSheen {
  0%, 55% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.countdown-copy,
.countdown-clock,
.reveal-panel {
  position: relative;
  z-index: 1;
}

.countdown-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: -.045em;
  font-family: Impact, "Arial Black", ui-sans-serif, sans-serif;
}

.countdown-copy p,
.countdown-text {
  max-width: 46rem;
  color: var(--muted);
}

.countdown-text p {
  margin: 0 0 .9rem;
}

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

.release-links {
  margin-top: 1.2rem;
}

.countdown-clock {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .85rem;
}

.countdown-unit {
  border: 1px solid rgba(177, 186, 191, .18);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(10, 10, 8, .68), rgba(52, 48, 43, .7));
  padding: clamp(1rem, 2vw, 1.35rem);
  text-align: center;
}

.countdown-unit strong {
  display: block;
  font-family: Impact, "Arial Black", ui-sans-serif, sans-serif;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: .9;
  color: var(--ice);
  text-shadow:
    .5px 0 rgba(213, 10, 10, .7),
    -.5px 0 rgba(213, 10, 10, .7),
    0 .5px rgba(213, 10, 10, .7),
    0 -.5px rgba(213, 10, 10, .7),
    0 14px 34px rgba(0,0,0,.42);
}

.countdown-unit span {
  display: block;
  margin-top: .5rem;
  color: var(--silver);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .72rem;
  font-weight: 800;
}

.reveal-panel {
  border-radius: 26px;
  border: 1px solid rgba(255, 121, 0, .36);
  background:
    linear-gradient(135deg, rgba(213, 10, 10, .2), rgba(10, 10, 8, .72));
  padding: clamp(1.2rem, 3vw, 2rem);
}

.reveal-actions {
  margin-top: 1rem;
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}

.reveal-sound-button {
  border: 0;
  border-radius: 999px;
  padding: .85rem 1.15rem;
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--orange));
  box-shadow: 0 12px 28px rgba(213, 10, 10, .28);
}

.reveal-sound-button:hover,
.reveal-sound-button:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.reveal-kicker {
  display: inline-flex;
  margin-bottom: .6rem;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .72rem;
  font-weight: 900;
}

.reveal-panel h3 {
  margin: 0;
  font-size: clamp(1.7rem, 4vw, 3.4rem);
  text-transform: uppercase;
  letter-spacing: -.04em;
  font-family: Impact, "Arial Black", ui-sans-serif, sans-serif;
}

.reveal-panel p {
  color: var(--muted);
}

@media (max-width: 820px) {
  .countdown-panel {
    grid-template-columns: 1fr;
  }

  .countdown-clock {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.story-grid {
  display: grid;
  grid-template-columns: 1.35fr .85fr;
  gap: 1rem;
}
.story-card {
  min-height: 260px;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.035));
  box-shadow: 0 16px 42px rgba(0,0,0,.24);
}
.story-card h3,
.player-card h3,
.depth-card h3 {
  margin: 0 0 .6rem;
  font-size: 1.35rem;
}
.story-card p { color: #d4deed; }
.story-card--wide { grid-row: span 2; }
.story-card--image {
  padding: 0;
  overflow: hidden;
}
.story-card--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  margin-top: 1.5rem;
}
.stats-row span {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
}
.stats-row strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  color: #fff;
}
.stats-row small {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.timeline-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 1.3rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(16,41,87,.85), rgba(7,17,31,.8));
}
.timeline-card::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -50px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,138,0,.5), transparent 70%);
}
.timeline-card span {
  display: block;
  font-family: Impact, "Arial Black", ui-sans-serif, sans-serif;
  font-size: 3.6rem;
  line-height: .9;
  color: #fff;
}
.timeline-card strong {
  display: block;
  margin-top: 1rem;
  font-size: 1.1rem;
  color: #f9fbff;
}

.season-switcher {
  margin: 0 0 1.4rem;
  padding: 1rem;
  border: 1px solid rgba(255, 121, 0, .24);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(213, 10, 10, .14), transparent 48%),
    rgba(255,255,255,.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.season-switcher__label {
  display: block;
  color: var(--orange);
  font-size: .72rem;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.season-switcher__status {
  margin: .25rem 0 0;
  color: var(--silver);
  font-weight: 800;
}

.season-tabs {
  display: flex;
  gap: .55rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.season-tab {
  border: 1px solid rgba(255, 121, 0, .28);
  background: rgba(10, 10, 8, .72);
  color: var(--silver);
  border-radius: 999px;
  padding: .72rem 1rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
  cursor: pointer;
}

.season-tab:hover,
.season-tab:focus-visible {
  border-color: rgba(255, 121, 0, .72);
  color: #fff;
}

.season-tab.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--orange));
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(213, 10, 10, .28);
}

@media (max-width: 760px) {
  .season-switcher {
    flex-direction: column;
    align-items: stretch;
  }

  .season-tabs {
    justify-content: flex-start;
  }
}

.depth-grid {
  display: grid;
  grid-template-columns: repeat(9, minmax(110px, 1fr));
  gap: .75rem;
}
.depth-card {
  padding: 1rem;
  min-height: 170px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.045));
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.depth-card::before {
  content: attr(data-slot);
  position: absolute;
  top: .65rem;
  right: .75rem;
  color: rgba(255,255,255,.14);
  font-family: Impact, sans-serif;
  font-size: 2.2rem;
}
.depth-card small {
  display: inline-block;
  margin-bottom: 1rem;
  background: rgba(255,59,31,.18);
  color: #ffd4cd;
  border: 1px solid rgba(255,59,31,.26);
  border-radius: 999px;
  padding: .25rem .55rem;
  font-weight: 850;
}
.depth-card h3 {
  font-size: 1.1rem;
  line-height: 1.05;
  max-width: 10rem;
}
.depth-card p {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
}

.roster-tools {
  margin: 2rem 0 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  display: flex;
  gap: 1rem;
  align-items: end;
  justify-content: space-between;
}
.roster-tools label {
  flex: 1;
  display: grid;
  gap: .4rem;
  color: var(--muted);
  font-weight: 800;
}
.roster-tools input {
  width: 100%;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.3);
  color: #fff;
  min-height: 48px;
  border-radius: 14px;
  padding: 0 1rem;
  font: inherit;
}
.filter-buttons {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.filter {
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.07);
  color: #fff;
  border-radius: 999px;
  min-height: 42px;
  padding: 0 .85rem;
  font-weight: 900;
  cursor: pointer;
}
.filter.active {
  background: var(--red);
  border-color: transparent;
}

.roster-summary {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: .75rem;
  margin-bottom: 1rem;
}
.summary-pill {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  padding: .85rem;
}
.summary-pill strong { display:block; font-size: 1.55rem; }
.summary-pill span { color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }

.roster-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.player-card {
  padding: 1.2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(177, 186, 191, .18);
  background:
    linear-gradient(135deg, rgba(213, 10, 10, .18), transparent 44%),
    linear-gradient(180deg, rgba(52, 48, 43, .82), rgba(10, 10, 8, .72));
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.player-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 121, 0, .62);
  background:
    linear-gradient(135deg, rgba(213, 10, 10, .24), transparent 46%),
    linear-gradient(180deg, rgba(70, 63, 56, .88), rgba(10, 10, 8, .76));
  box-shadow: 0 18px 46px rgba(0,0,0,.32);
}
.player-card__top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.player-link {
  color: inherit;
  text-decoration: none;
}

.player-link:hover,
.player-link:focus-visible {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 34px;
  border-radius: 999px;
  background: #fff;
  color: #08111d;
  font-weight: 1000;
  font-size: .8rem;
}
.player-card h3 { margin-top: .9rem; }
.player-card p { margin: .2rem 0 0; color: var(--muted); }

.draft-board {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  background: rgba(255,255,255,.055);
}
.draft-row {
  display: grid;
  grid-template-columns: 92px 1fr 95px 90px;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid var(--line);
}
.draft-row:last-child { border-bottom: 0; }
.draft-pick {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: #fff;
  font-weight: 1000;
}
.draft-pick small { display: block; font-size: .6rem; opacity: .85; }
.draft-name strong { display: block; font-size: 1.12rem; }
.draft-name span { color: var(--muted); }
.draft-tag {
  justify-self: start;
  border-radius: 999px;
  padding: .35rem .65rem;
  background: rgba(255,255,255,.08);
  color: #dfe8f7;
  font-weight: 900;
}

.league-panel {
  border-radius: 30px;
  padding: clamp(1.2rem, 4vw, 2.2rem);
  border: 1px solid rgba(255, 121, 0, .22);
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 121, 0, .24), transparent 20rem),
    radial-gradient(circle at 8% 92%, rgba(213, 10, 10, .18), transparent 18rem),
    linear-gradient(135deg, rgba(52, 48, 43, .9), rgba(10, 10, 8, .86));
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 2rem;
  align-items: center;
}
.league-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .85rem;
}
.league-card {
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.07);
}
.league-card span {
  color: var(--muted);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.league-card strong {
  display: block;
  margin-top: .3rem;
  font-size: 1.1rem;
}

.feature-media,
.sponsor-card {
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
}
.feature-media__copy,
.sponsor-card > div {
  padding: clamp(1.3rem, 4vw, 2.4rem);
  align-self: center;
}
.feature-media img,
.sponsor-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-media__image {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: 420px;
}

.feature-media__image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.14) translateX(-8%);
  transform-origin: center center;
}
.feature-media img {
  object-position: center;
  transform: scale(1.08) translateX(-35%);
}
.sponsor-card {
  grid-template-columns: 1fr .8fr;
}
.sponsor-card img {
  min-height: 300px;
}

.site-footer {
  max-width: var(--max);
  margin: 4rem auto 0;
  padding: 2rem 1rem 3rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}
.site-footer strong { color: #fff; }
.site-footer a { color: #fff; font-weight: 900; }

@media (max-width: 1020px) {
  .depth-grid { grid-template-columns: repeat(3, 1fr); }
  .roster-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .story-grid,
  .league-panel,
  .feature-media,
  .sponsor-card { grid-template-columns: 1fr; }
  .story-card--wide { grid-row: auto; }
  .sponsor-card img { max-height: 420px; }
}

@media (max-width: 760px) {
  .scorebar__inner { justify-content: start; overflow-x: auto; }
  .nav-toggle {
    display: inline-flex;
    border: 1px solid var(--line);
    color: #fff;
    background: rgba(255,255,255,.08);
    border-radius: 999px;
    padding: .65rem .9rem;
    font-weight: 900;
    text-transform: uppercase;
  }
  .nav-links {
    display: none;
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 76px;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(7,17,31,.98);
  }
  .nav-links.open { display: flex; }
  .nav-links a { text-align: center; }
  .hero {
    min-height: 670px;
    max-width: calc(100vw - 1rem);
    border-radius: 22px;
  }
  .hero__content { padding-top: 7rem; }
  .hero h1 { font-size: clamp(4.4rem, 21vw, 7rem); }
  .hero__card { left: 1rem; right: 1rem; bottom: 1rem; }
  .ticker { align-items: start; }
  .section__header--split,
  .roster-tools,
  .site-footer { flex-direction: column; align-items: stretch; }
  .roster-summary { grid-template-columns: repeat(3, 1fr); }
  .roster-grid,
  .depth-grid,
  .timeline,
  .league-cards { grid-template-columns: 1fr; }
  .draft-row {
    grid-template-columns: 72px 1fr;
    gap: .7rem;
  }
  .draft-tag { grid-column: 2; }
  .draft-row > span:last-child { grid-column: 2; color: var(--muted); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* Album Reveal Erweiterung */
.countdown-panel.is-reveal-mode {
  grid-template-columns: 0.82fr 1.18fr;
}

.reveal-panel--album {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 2.4vw, 1.4rem);
}

.reveal-stage {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  border: 1px solid rgba(255, 121, 0, .28);
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 121, 0, .18), transparent 22rem),
    linear-gradient(135deg, rgba(10, 10, 8, .94), rgba(52, 48, 43, .72));
  box-shadow: 0 22px 52px rgba(0,0,0,.42);
}

.reveal-video,
.album-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 1.2s ease, transform 1.2s ease, filter 1.2s ease;
}

.reveal-video {
  opacity: 1;
  z-index: 1;
}

.album-cover {
  opacity: 0;
  z-index: 2;
  transform: scale(1.045);
  filter: saturate(.95) brightness(.86);
}

.reveal-stage.is-cover-visible .reveal-video {
  opacity: 0;
  transform: scale(1.035);
}

.reveal-stage.is-cover-visible .album-cover {
  opacity: 1;
  transform: scale(1);
  filter: saturate(1.04) brightness(1);
}

.reveal-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), transparent 25%, rgba(0,0,0,.18)),
    linear-gradient(90deg, rgba(213, 10, 10, .14), transparent 36%, rgba(255, 121, 0, .12));
  mix-blend-mode: screen;
  opacity: .58;
}

.album-info {
  position: relative;
  z-index: 4;
}

.album-subtitle {
  margin-top: -.25rem;
  font-size: .96rem;
  color: var(--silver);
}

.streaming-links {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1rem;
}

.streaming-links a,
.streaming-links span,
.reveal-play {
  border-radius: 999px;
  border: 1px solid rgba(255, 121, 0, .35);
  background: rgba(10, 10, 8, .52);
  color: var(--ice);
  padding: .68rem .9rem;
  font-weight: 900;
  font-size: .78rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
}

.streaming-links a:hover,
.streaming-links a:focus-visible,
.reveal-play:hover,
.reveal-play:focus-visible {
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: #fff;
}

.reveal-play {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  z-index: 5;
  transform: translateX(-50%);
  cursor: pointer;
}

@media (max-width: 820px) {
  .countdown-panel.is-reveal-mode {
    grid-template-columns: 1fr;
  }
}

/* Feine Buccaneers-rote Kontur für Überschriften */
h2,
h3 {
  letter-spacing: -.015em;
  text-shadow:
    0.45px 0 rgba(213, 10, 10, 0.58),
    -0.45px 0 rgba(213, 10, 10, 0.58),
    0 0.45px rgba(213, 10, 10, 0.58),
    0 -0.45px rgba(213, 10, 10, 0.58),
    0 12px 34px rgba(0, 0, 0, 0.42);
}

/* Mehr Abstand für Überschriften */
body h2,
body h3,
.countdown-copy h2,
.reveal-panel h3,
.league-panel h2,
.media-card h2 {
  letter-spacing: 0 !important;
}

/* News Center */
.news-section {
  scroll-margin-top: 100px;
}

.news-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 1rem;
}

.news-card {
  position: relative;
  min-height: 260px;
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 121, 0, .22);
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 121, 0, .18), transparent 16rem),
    linear-gradient(145deg, rgba(52, 48, 43, .86), rgba(10, 10, 8, .78));
  box-shadow: 0 18px 46px rgba(0,0,0,.24);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.news-card::before {
  content: "NF";
  position: absolute;
  right: -0.15rem;
  top: -0.45rem;
  font-family: Impact, "Arial Black", ui-sans-serif, sans-serif;
  font-size: 6rem;
  line-height: 1;
  color: rgba(255,255,255,.045);
  pointer-events: none;
}

.news-card--featured {
  grid-row: span 2;
  min-height: 420px;
  background:
    linear-gradient(180deg, rgba(10, 10, 8, .08), rgba(10, 10, 8, .82)),
    radial-gradient(circle at 82% 12%, rgba(255, 121, 0, .28), transparent 20rem),
    linear-gradient(135deg, rgba(213, 10, 10, .28), rgba(52, 48, 43, .86));
}

.news-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 121, 0, .68);
  box-shadow: 0 24px 58px rgba(0,0,0,.34);
}

.news-card__meta {
  display: inline-flex;
  width: fit-content;
  margin-bottom: .7rem;
  color: var(--orange);
  font-size: .72rem;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.news-card h3 {
  margin: 0 0 .65rem;
  font-family: Impact, "Arial Black", ui-sans-serif, sans-serif;
  text-transform: uppercase;
  line-height: .98;
  font-size: clamp(1.65rem, 3vw, 3.2rem);
}

.news-card p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.news-card__link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: .72rem .95rem;
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: #fff;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .78rem;
  box-shadow: 0 10px 24px rgba(213, 10, 10, .24);
}

.news-card__link::after {
  content: "→";
  margin-left: .45rem;
}

.article-main {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) 1rem 0;
}

.article-hero {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: 30px;
  border: 1px solid rgba(255, 121, 0, .26);
  background:
    radial-gradient(circle at 84% 10%, rgba(255, 121, 0, .24), transparent 26rem),
    radial-gradient(circle at 12% 90%, rgba(213, 10, 10, .2), transparent 24rem),
    linear-gradient(135deg, rgba(52, 48, 43, .94), rgba(10, 10, 8, .92));
  box-shadow: var(--shadow);
  padding: clamp(1.4rem, 5vw, 3rem);
  display: flex;
  align-items: flex-end;
}

.article-hero::after {
  content: "Nightflyers";
  position: absolute;
  right: -1rem;
  bottom: -2.4rem;
  font-family: Impact, "Arial Black", ui-sans-serif, sans-serif;
  text-transform: uppercase;
  letter-spacing: -.06em;
  font-size: clamp(5rem, 14vw, 11rem);
  line-height: .8;
  color: rgba(255,255,255,.04);
  pointer-events: none;
}

.article-hero__content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.article-hero h1 {
  margin: 0;
  font-family: Impact, "Arial Black", ui-sans-serif, sans-serif;
  text-transform: uppercase;
  letter-spacing: -.035em;
  line-height: .9;
  font-size: clamp(3.2rem, 8vw, 7rem);
  text-shadow:
    0.45px 0 rgba(213, 10, 10, .58),
    -0.45px 0 rgba(213, 10, 10, .58),
    0 0.45px rgba(213, 10, 10, .58),
    0 -0.45px rgba(213, 10, 10, .58),
    0 18px 58px rgba(0,0,0,.48);
}

.article-meta {
  margin: 1rem 0 0;
  color: var(--silver);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .82rem;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 1.2rem;
  align-items: start;
  margin-top: 1.2rem;
}

.article-body,
.article-aside {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  box-shadow: 0 16px 42px rgba(0,0,0,.22);
}

.article-body {
  padding: clamp(1.2rem, 3vw, 2rem);
  color: #dce4f1;
  font-size: 1.05rem;
}

.article-body p {
  margin: 0 0 1.1rem;
}

.article-body p:last-child {
  margin-bottom: 0;
}

.article-body .lead {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
}

.article-aside {
  padding: 1.2rem;
  position: sticky;
  top: 106px;
}

.article-aside h2 {
  margin: 0 0 .7rem;
  font-size: 1.7rem;
  font-family: Impact, "Arial Black", ui-sans-serif, sans-serif;
  text-transform: uppercase;
}

.article-aside a {
  display: block;
  padding: .75rem 0;
  color: var(--silver);
  border-top: 1px solid var(--line);
  font-weight: 800;
}

.article-aside a:hover,
.article-aside a:focus-visible {
  color: var(--orange);
}

.article-back {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--orange);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-size: .82rem;
}

@media (max-width: 1020px) {
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-card--featured {
    grid-row: auto;
    grid-column: 1 / -1;
    min-height: 340px;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
  }
}

@media (max-width: 760px) {
  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-card,
  .news-card--featured {
    min-height: 260px;
  }

  .article-hero {
    min-height: 360px;
  }
}
