/* ═══════════════════════════════════════════════════════
   NK CROATIA UZWIL — style.css
   Rot dominant · Aggressiv · Modern · DE/HR bilingual
   ═══════════════════════════════════════════════════════ */

/* ── Reset & Tokens ─────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background: var(--black);
}

:root {
  --red: #CC0000;
  --red-dark: #A00000;
  --red-light: #FF2222;
  --blue: #003580;
  --blue-dark: #00266A;
  --white: #FFFFFF;
  --gray-50: #F7F7F7;
  --gray-100: #EBEBEB;
  --gray-200: #D0D0D0;
  --gray-500: #8A8A8A;
  --gray-600: #707070;
  --gray-700: #3A3A3A;
  --black: #0A0A0A;

  --gold: #C8950A;
  --gold-bg: #FFF9ED;
  --silver: #7A8A99;
  --silver-bg: #F5F7FA;
  --bronze: #9B5C2A;
  --bronze-bg: #FDF5EF;
  --gonner: #003580;
  --gonner-bg: #EEF3FB;

  --ff-head: 'Clash Display', 'Arial Black', sans-serif;
  --ff-body: 'Satoshi', 'Inter', system-ui, sans-serif;

  --container: 1180px;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .08);
  --shadow-md: 0 6px 24px rgba(0, 0, 0, .12);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, .16);

  --header-h: 72px;
}

body {
  font-family: var(--ff-body);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--ff-head);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .18s, color .18s, border-color .18s, transform .12s, box-shadow .18s;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(0);
}

.btn--red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn--red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .55);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, .12);
  border-color: var(--white);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ── Label tag ───────────────────────────────────────── */
.label-tag {
  display: inline-block;
  font-family: var(--ff-head);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(204, 0, 0, .08);
  padding: 5px 12px;
  border-radius: 40px;
  margin-bottom: 12px;
}

.label-tag--white {
  color: var(--white);
  background: rgba(255, 255, 255, .2);
}

/* ── Section ─────────────────────────────────────────── */
.section {
  padding: 80px 0;
}

.section--gray {
  background: var(--gray-50);
}

.section--blue {
  background: var(--blue);
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-header h2 {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.section--blue .section-header h2 {
  color: var(--white);
}

.section-desc {
  margin-top: 12px;
  color: var(--gray-500);
  font-size: .95rem;
}

/* ══════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--header-h);
  background: transparent;
  transition: background .3s, box-shadow .3s;
}

.header.scrolled {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0, 0, 0, .12);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  position: relative;
  height: 100%;
}

.logo-img {
  position: absolute;
  left: 0;
  top: 50%;
  height: 88px;
  width: auto;
  transform: translateY(-28%);
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .25));
  transition: transform .3s;
  border-radius: 0;
  background: transparent;
}

.logo:hover .logo-img {
  transform: translateY(-28%) scale(1.05);
}

.logo-text-block {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  padding-left: 94px;
}

.logo-name {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: color .3s;
}

.header.scrolled .logo-name {
  color: var(--black);
}

/* Nav */
.nav {
  margin-left: auto;
}

.nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-family: var(--ff-head);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .85);
  padding: 8px 14px;
  border-radius: 6px;
  transition: color .2s, background .2s;
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, .12);
}

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 8px 18px;
}

.nav-cta:hover {
  background: var(--red-dark) !important;
}

.header.scrolled .nav-link {
  color: var(--gray-700);
}

.header.scrolled .nav-link:hover {
  color: var(--black);
  background: var(--gray-50);
}

.header.scrolled .nav-cta {
  color: var(--white) !important;
  background: var(--red) !important;
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255, 255, 255, .12);
  border: 1.5px solid rgba(255, 255, 255, .3);
  border-radius: 6px;
  padding: 6px 12px;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}

.lang-toggle:hover {
  background: rgba(255, 255, 255, .2);
  border-color: rgba(255, 255, 255, .55);
}

.header.scrolled .lang-toggle {
  background: var(--gray-50);
  border-color: var(--gray-200);
}

.lang-opt {
  font-family: var(--ff-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .5);
  transition: color .2s, font-size .15s;
  cursor: pointer;
}

.header.scrolled .lang-opt {
  color: var(--gray-500);
}

.lang-opt.active {
  color: var(--red) !important;
  font-size: .8rem;
}

.lang-sep {
  font-size: .75rem;
  color: rgba(255, 255, 255, .3);
  margin: 0 2px;
}

.header.scrolled .lang-sep {
  color: var(--gray-200);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.header.scrolled .burger span {
  background: var(--black);
}

.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  padding: 20px 24px 32px;
  z-index: 899;
  border-top: 3px solid var(--red);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mm-link {
  display: block;
  font-family: var(--ff-head);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-700);
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
  transition: color .2s, padding-left .2s;
}

.mm-link:hover {
  color: var(--red);
  padding-left: 8px;
}

/* ══════════════════════════════════════════════════════
   HERO — Vollbild
══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

/* Background image */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: .75;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: .75;
}

/* Multi-layer overlay: dark vignette + red tint at bottom */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(0, 0, 0, .35) 0%,
      rgba(0, 0, 0, .10) 40%,
      rgba(100, 0, 0, .45) 80%,
      rgba(160, 0, 0, .75) 100%);
}

/* Diagonal red slash across the image — aggressive design element */
.hero-diagonal {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 180px;
  background: var(--white);
  clip-path: polygon(0 60%, 100% 0%, 100% 100%, 0 100%);
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-h) + 48px);
  padding-bottom: 160px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-family: var(--ff-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 4px;
  margin-bottom: 28px;
}

.hero-badge::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, .8);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .4;
    transform: scale(.7);
  }
}

.hero-title {
  font-family: var(--ff-head);
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -.01em;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.hero-title em {
  font-style: normal;
  color: var(--red-light);
  position: relative;
  display: inline-block;
  text-shadow:
    0 0 24px rgba(255, 40, 40, .7),
    0 0 60px rgba(255, 40, 40, .35),
    0 0 120px rgba(255, 40, 40, .15);
}

.hero-title em::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--red);
  transform: skewX(-12deg);
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(255, 40, 40, .8);
}

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

#heroPrimaryBtn {
  gap: 10px;
}

.hero-live-dot {
  display: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--white);
  flex-shrink: 0;
  animation: lsbPulse 1.6s ease-in-out infinite;
}

.hero-live-dot:not([hidden]) {
  display: block;
}

/* The white diagonal cut at the very bottom — creates the page transition */
.hero-cut {
  display: none;
  /* handled by .hero-diagonal inside .hero-bg */
}

/* ══════════════════════════════════════════════════════
   NEWS & NÄCHSTES SPIEL
══════════════════════════════════════════════════════ */
.spiele-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.col-title {
  font-family: var(--ff-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.col-title::after {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, var(--blue), transparent);
}

/* Match Card */
.match-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1.5px solid var(--gray-100);
  margin-bottom: 16px;
}

.match-card-top {
  background: var(--red);
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.match-badge {
  font-family: var(--ff-head);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .85);
}

.match-date {
  font-family: var(--ff-head);
  font-size: .8rem;
  font-weight: 600;
  color: var(--white);
}

.match-clubs {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.match-club-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.club-logo {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--black);
  flex-shrink: 0;
}

.club-placeholder {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-500);
  flex-shrink: 0;
}

.club-name {
  font-family: var(--ff-head);
  font-size: .95rem;
  font-weight: 600;
  color: var(--gray-700);
}

.club-name--home {
  color: var(--black);
  font-weight: 700;
}

.match-vs {
  font-family: var(--ff-head);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--gray-500);
  text-transform: uppercase;
  padding-left: 56px;
}

.match-foot {
  padding: 12px 20px;
  border-top: 1px solid var(--gray-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  color: var(--gray-500);
}

.match-foot .match-link {
  margin-left: auto;
}

.match-link {
  font-family: var(--ff-head);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--red);
  text-transform: uppercase;
}

.match-link:hover {
  color: var(--red-dark);
}

/* Result card */
.result-card {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 18px 20px;
}

.result-label {
  font-family: var(--ff-head);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray-500);
  display: block;
  margin-bottom: 10px;
}

.result-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.result-team {
  font-family: var(--ff-head);
  font-size: .88rem;
  font-weight: 600;
  color: var(--gray-700);
  flex: 1;
}

.result-team.home {
  color: var(--black);
  font-weight: 700;
}

.result-score {
  font-family: var(--ff-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--red);
  white-space: nowrap;
}

.result-meta {
  display: block;
  font-size: .78rem;
  color: var(--gray-500);
  margin-top: 8px;
}

/* News list */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.news-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--gray-100);
  transition: background .15s;
}

.news-item:first-child {
  padding-top: 0;
}

.news-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.news-item--featured .news-tag {
  background: var(--red);
  color: var(--white);
}

.news-item--muted {
  opacity: .65;
}

.news-tag {
  display: inline-block;
  font-family: var(--ff-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--gray-100);
  color: var(--gray-700);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.news-item h4 {
  font-family: var(--ff-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.news-item p {
  font-size: .88rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: 8px;
}

.news-item p a {
  color: var(--red);
  font-weight: 600;
}

.news-item p a:hover {
  text-decoration: underline;
}

.news-date {
  font-size: .78rem;
  color: var(--gray-600);
  font-weight: 600;
}

/* ══════════════════════════════════════════════════════
   KADER
══════════════════════════════════════════════════════ */
.team-block {
  margin-bottom: 48px;
}

.team-block:last-of-type {
  margin-bottom: 0;
}

.team-role-title {
  font-family: var(--ff-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.team-role-title::after {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, var(--red), transparent);
}

.player-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}

.player-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  transition: box-shadow .2s, border-color .2s, transform .15s;
}

.player-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
  transform: translateY(-2px);
}

/* ── Neue Kader-Cards: Foto + Name ─────────────────── */
.player-card {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 14px;
  gap: 12px;
}

.player-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gray-100);
  flex-shrink: 0;
}

.player-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.player-photo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  color: var(--gray-500);
}

.player-name {
  font-family: var(--ff-head);
  font-size: .88rem;
  font-weight: 700;
  color: var(--blue);
  text-align: center;
  line-height: 1.2;
}

/* ── Resultat: eine Zeile ──────────────────────────── */
.match-oneline {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
}

.mol-team {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.mol-team--right {
  flex-direction: row-reverse;
  text-align: right;
}

.mol-logo {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  flex-shrink: 0;
}

.mol-logo--img {
  object-fit: cover;
}

.mol-logo--placeholder {
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-size: .9rem;
  font-weight: 700;
  color: var(--gray-500);
}

.mol-name {
  font-family: var(--ff-head);
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-700);
  line-height: 1.2;
}

.mol-name--us {
  color: var(--black);
  font-weight: 700;
}

.mol-score {
  font-family: var(--ff-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--red);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: .02em;
}

.match-badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px 12px;
  border-top: 1px solid var(--gray-100);
}

.match-halftime {
  font-size: .78rem;
  color: var(--gray-500);
}

/* OFV Tabellen-Link */
.ofv-table-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  font-family: var(--ff-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-500);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 9px 16px;
  transition: color .2s, border-color .2s, background .2s;
  width: 100%;
  justify-content: center;
  display: none;
}

.ofv-table-link span,
.ofv-table-link svg {
  color: var(--red);
}

.ofv-table-link:hover {
  color: var(--red);
  border-color: var(--red);
  background: rgba(204, 0, 0, .03);
}

/* ── Tabelle & Spielplan (manuell gepflegt, data/uzwil4.json) ── */
.ts-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: start;
}

.ts-grid--single {
  grid-template-columns: 1fr;
  max-width: 736px;
  margin: 0 auto;
}

.ts-empty {
  padding: 32px 20px;
  text-align: center;
  color: var(--gray-500);
  font-size: .88rem;
}

.ts-empty p {
  margin-bottom: 12px;
}

.ts-empty a {
  display: inline-flex;
  font-family: var(--ff-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--red);
}

.ts-empty a:hover {
  color: var(--red-dark);
}

/* Standings table */
.standings-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--gray-100);
  overflow: hidden;
}

.standings-table-wrap {
  overflow-x: auto;
}

.standings-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .82rem;
  white-space: nowrap;
}

.standings-table th,
.standings-table td {
  padding: 10px 10px;
  text-align: center;
}

.standings-table th {
  background: var(--red);
  color: var(--white);
  font-family: var(--ff-head);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.standings-table .st-team {
  text-align: left;
  white-space: normal;
}

.st-team-inner {
  display: flex;
  align-items: center;
  gap: 8px;
}

.st-logo {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

.standings-table th.st-team {
  text-align: left;
}

.standings-table tbody tr {
  border-bottom: 1px solid var(--gray-100);
}

.standings-table tbody tr:last-child {
  border-bottom: none;
}

.standings-table tbody tr:nth-child(even) {
  background: var(--gray-50);
}

.standings-table .st-points {
  font-family: var(--ff-head);
  font-weight: 700;
  color: var(--gray-700);
}

.standings-row--us {
  background: rgba(204, 0, 0, .07) !important;
  box-shadow: inset 3px 0 0 var(--red);
}

.standings-row--us .st-team,
.standings-row--us .st-points {
  color: var(--red);
  font-weight: 700;
}

.table-widget-note {
  margin-top: 28px;
  font-size: .82rem;
  color: var(--gray-500);
  text-align: center;
}

/* Trainer-Rolle Tag */
.player-role-tag {
  font-family: var(--ff-head);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--blue);
  padding: 3px 8px;
  border-radius: 4px;
  margin-top: 2px;
}

/* ── Aktive Sponsoren Zeilen ─────────────────────────── */
.active-sponsors {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}

.as-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-100);
}

.as-row:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.as-tier {
  font-family: var(--ff-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  min-width: 60px;
  padding: 5px 12px;
  border-radius: 4px;
  text-align: center;
  flex-shrink: 0;
}

.as-tier--gold {
  background: rgba(200, 149, 10, .12);
  color: var(--gold);
}

.as-tier--silver {
  background: rgba(122, 138, 153, .1);
  color: var(--silver);
}

.as-tier--bronze {
  background: rgba(155, 92, 42, .1);
  color: var(--bronze);
}

.as-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex: 1;
}

.as-slot {
  height: 52px;
  min-width: 120px;
  border-radius: var(--radius);
  border: 2px dashed var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  transition: border-color .2s;
}

.as-slot--gold {
  min-width: 160px;
  height: 64px;
}

.as-slot:hover {
  border-color: var(--gray-500);
}

/* ── Resultat & Tabelle (legacy/unused kept for safety) ── */
.match-result-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.match-final-score {
  font-family: var(--ff-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: .02em;
  flex: 1;
  text-align: center;
}

.match-result-badge {
  font-family: var(--ff-head);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  flex-shrink: 0;
}

.match-result-badge.win {
  background: rgba(0, 160, 60, .1);
  color: #009933;
  border: 1px solid rgba(0, 160, 60, .2);
}

.match-result-badge.loss {
  background: rgba(204, 0, 0, .1);
  color: var(--red);
  border: 1px solid rgba(204, 0, 0, .2);
}

.match-result-badge.draw {
  background: var(--gray-100);
  color: var(--gray-500);
  border: 1px solid var(--gray-200);
}

.match-scorers {
  padding: 10px 20px;
  border-top: 1px solid var(--gray-100);
}

.scorers-label {
  display: block;
  font-family: var(--ff-head);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 6px;
}

.scorers-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.scorer {
  font-size: .8rem;
  color: var(--gray-700);
  font-weight: 600;
}

.scorer::before {
  content: '⚽ ';
  font-size: .7rem;
}

/* Split scorers (home | away) — used on the "Nächstes Spiel" card once a
   live-tracked result exists for it. */
.match-scorers--split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0 16px;
}

.match-scorers--split[hidden] {
  display: none;
}

/* Nächstes Spiel: Wochentag / Tag / Monat als drei Boxen */
.match-date-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 0 20px 18px;
}

.match-date-boxes[hidden] {
  display: none;
}

.mdb-box {
  background: rgba(0, 53, 128, .06);
  color: var(--blue);
  font-family: var(--ff-head);
  font-size: .82rem;
  font-weight: 700;
  text-align: center;
  padding: 10px 6px;
  border-radius: var(--radius);
}

.ms-col {
  min-width: 0;
}

.ms-col .scorers-list {
  flex-direction: column;
  gap: 4px;
}

.ms-col--away {
  text-align: right;
}

.ms-col--away .scorers-list {
  align-items: flex-end;
}

.ms-divider {
  width: 1px;
  background: var(--gray-200);
}

/* Tabelle */
.tabelle-wrap {
  margin-top: 4px;
}

.tabelle {
  width: 100%;
  border-collapse: collapse;
  font-size: .85rem;
  margin-bottom: 10px;
}

.tabelle thead tr {
  background: var(--red);
}

.tabelle thead th {
  font-family: var(--ff-head);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  padding: 8px 10px;
  text-align: left;
}

.tabelle thead th:nth-child(3),
.tabelle thead th:nth-child(4) {
  text-align: center;
}

.tabelle tbody tr {
  border-bottom: 1px solid var(--gray-100);
  transition: background .15s;
}

.tabelle tbody tr:hover {
  background: var(--gray-50);
}

.tabelle tbody td {
  padding: 8px 10px;
  color: var(--gray-700);
}

.tabelle tbody td:nth-child(3),
.tabelle tbody td:nth-child(4) {
  text-align: center;
}

.tabelle tbody td:first-child {
  font-family: var(--ff-head);
  font-weight: 700;
  color: var(--gray-500);
  font-size: .78rem;
  width: 28px;
}

/* Unsere Zeile hervorheben */
.tabelle-row--us td {
  background: rgba(204, 0, 0, .05) !important;
  color: var(--black) !important;
}

.tabelle-row--us td:first-child {
  color: var(--red) !important;
}

.tabelle-link {
  display: inline-block;
  font-family: var(--ff-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--red);
  text-transform: uppercase;
  transition: color .2s;
}

.tabelle-link:hover {
  color: var(--red-dark);
}

.team-note {
  font-size: .82rem;
  color: var(--gray-500);
  text-align: center;
  margin-top: 28px;
  font-style: italic;
}

/* ══════════════════════════════════════════════════════
   VEREIN
══════════════════════════════════════════════════════ */
.verein-split {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
}

.verein-text .label-tag {
  margin-bottom: 16px;
}

.verein-text h2 {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: .03em;
  line-height: 1.15;
  margin-bottom: 24px;
}

.verein-text p {
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 16px;
  font-size: .95rem;
}

.verein-text p strong {
  color: var(--black);
  font-weight: 700;
}

.verein-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 2px solid var(--gray-100);
}

.fact {
  text-align: center;
}

.fact-val {
  display: block;
  font-family: var(--ff-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1.1;
}

.fact-key {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-top: 4px;
}

/* Visual side */
.verein-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vv-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 50%, var(--black) 100%);
  border-radius: var(--radius-lg);
  /* diagonal slash */
  clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
}

.vv-logo {
  position: relative;
  z-index: 1;
  width: 200px;
  height: 200px;
  object-fit: contain;
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, .5));
  padding: 24px;
}

/* ══════════════════════════════════════════════════════
   SPONSOREN
══════════════════════════════════════════════════════ */
.sponsor-packages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.pkg {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-100);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}

.pkg:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Colored top border per tier */
.pkg--gold {
  border-top: 4px solid var(--gold);
}

.pkg--silver {
  border-top: 4px solid var(--silver);
}

.pkg--bronze {
  border-top: 4px solid var(--bronze);
}

.pkg--gonner {
  border-top: 4px solid var(--blue);
}

.pkg-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 20px 0;
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.pkg--gold .pkg-header {
  color: var(--gold);
}

.pkg--silver .pkg-header {
  color: var(--silver);
}

.pkg--bronze .pkg-header {
  color: var(--bronze);
}

.pkg--gonner .pkg-header {
  color: var(--blue);
}

.pkg-price {
  padding: 10px 20px 16px;
  font-family: var(--ff-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--black);
  border-bottom: 1px solid var(--gray-100);
  margin-bottom: 0;
}

.pkg-list {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.pkg-list li {
  font-size: .83rem;
  color: var(--gray-700);
  padding-left: 18px;
  position: relative;
  line-height: 1.4;
}

.pkg-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 700;
  font-size: .8rem;
}

.pkg--gold .pkg-list li::before {
  color: var(--gold);
}

.pkg--silver .pkg-list li::before {
  color: var(--silver);
}

.pkg--bronze .pkg-list li::before {
  color: var(--bronze);
}

.pkg--gonner .pkg-list li::before {
  color: var(--blue);
}

/* Sponsor slots */
.slot-name {
  font-family: var(--ff-head);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-500);
}

/* Sponsor CTA */
.sponsor-cta {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.sponsor-cta p {
  font-size: .95rem;
  color: var(--gray-700);
  text-align: left;
}

/* ══════════════════════════════════════════════════════
   KONTAKT
══════════════════════════════════════════════════════ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}

.contact-left h2 {
  font-family: var(--ff-head);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.contact-left p {
  color: rgba(255, 255, 255, .75);
  line-height: 1.7;
  margin-bottom: 36px;
  font-size: .95rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, .9);
  font-size: .9rem;
  transition: color .2s;
}

.contact-item:hover {
  color: var(--white);
}

.ci-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s;
}

.contact-item:hover .ci-icon {
  background: rgba(255, 255, 255, .25);
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cf-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cf-group label {
  font-family: var(--ff-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65);
}

.cf-group input,
.cf-group textarea {
  background: rgba(255, 255, 255, .1);
  border: 1.5px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--ff-body);
  font-size: .9rem;
  width: 100%;
  transition: border-color .2s, background .2s;
  outline: none;
  resize: vertical;
}

.cf-group input::placeholder,
.cf-group textarea::placeholder {
  color: rgba(255, 255, 255, .35);
}

.cf-group input:focus,
.cf-group textarea:focus {
  border-color: rgba(255, 255, 255, .6);
  background: rgba(255, 255, 255, .15);
}

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.footer {
  background: var(--black);
  color: var(--white);
}

/* Croatian flag stripe */
.footer-stripe {
  height: 6px;
  background: linear-gradient(90deg,
      var(--red) 0%, var(--red) 33.33%,
      var(--white) 33.33%, var(--white) 66.66%,
      var(--blue) 66.66%, var(--blue) 100%);
}

.footer-inner {
  padding: 40px 24px 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
}

.footer-name {
  display: block;
  font-family: var(--ff-head);
  font-size: .95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--white);
}

.footer-sub {
  display: block;
  font-size: .75rem;
  color: rgba(255, 255, 255, .45);
  margin-top: 2px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 20px;
}

.footer-nav a {
  font-family: var(--ff-head);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  transition: color .2s;
}

.footer-nav a:hover {
  color: var(--red);
}

.footer-copy {
  width: 100%;
  text-align: center;
  font-size: .75rem;
  color: rgba(255, 255, 255, .3);
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-copy a {
  color: rgba(255, 255, 255, .4);
}

.footer-copy a:hover {
  color: var(--red);
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 1040px) {
  .sponsor-packages {
    grid-template-columns: repeat(2, 1fr);
  }

  .verein-split {
    grid-template-columns: 1fr;
  }

  .verein-visual {
    min-height: 260px;
    max-width: 380px;
    margin: 0 auto;
  }

  .vv-logo {
    width: 150px;
    height: 150px;
  }

  .verein-facts {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 800px) {
  .nav {
    display: none;
  }

  .burger {
    display: flex;
  }

  .lang-toggle {
    margin-left: auto;
  }

  .hero-title {
    font-size: clamp(2.8rem, 12vw, 5rem);
  }

  .hero-content {
    padding-bottom: 120px;
  }

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

  .news-featured-banner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .nfb-date {
    margin-top: 4px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sponsor-packages {
    grid-template-columns: 1fr 1fr;
  }

  .sponsor-cta {
    flex-direction: column;
    text-align: center;
  }

  .sponsor-cta p {
    text-align: center;
  }
}

@media (max-width: 520px) {
  .sponsor-packages {
    grid-template-columns: 1fr;
  }

  .player-cards {
    grid-template-columns: 1fr 1fr;
  }

  .verein-facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ══════════════════════════════════════════════════════
   NEWS ACCORDION
══════════════════════════════════════════════════════ */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.acc-item {
  border-bottom: 1px solid var(--gray-100);
}

.acc-item:last-child {
  border-bottom: none;
}

.acc-item--featured .acc-trigger {
  background: rgba(204, 0, 0, .025);
}

.acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background .15s;
}

.acc-trigger:hover {
  background: var(--gray-50);
}

.acc-trigger-left {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}

.acc-title {
  font-family: var(--ff-head);
  font-size: .95rem;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.2;
}

.acc-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.acc-chevron {
  color: var(--gray-500);
  transition: transform .25s;
  flex-shrink: 0;
}

.acc-item.open .acc-chevron {
  transform: rotate(180deg);
}

.acc-body {
  display: none;
  padding: 0 20px 18px;
}

.acc-item.open .acc-body {
  display: block;
}

.acc-body p {
  font-size: .88rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.acc-body p a {
  color: var(--red);
  font-weight: 600;
}

.acc-body p a:hover {
  text-decoration: underline;
}

/* ══════════════════════════════════════════════════════
   TEAM: MANNSCHAFTSFOTO PLACEHOLDER + KAPITÄN
══════════════════════════════════════════════════════ */
.team-photo-placeholder {
  width: 100%;
  height: 280px;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  border: 2px dashed var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
  overflow: hidden;
}

.tpp-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--gray-500);
}

.tpp-inner p {
  font-family: var(--ff-head);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.player-card--captain {
  border-color: var(--red) !important;
  background: rgba(204, 0, 0, .03) !important;
}

.captain-badge {
  display: inline;
  font-family: var(--ff-head);
  font-size: .88rem;
  font-weight: 700;
  color: var(--red);
  background: none;
  padding: 0;
  border-radius: 0;
  margin-left: 2px;
  vertical-align: baseline;
}

/* Sponsoring Add-on Zeile */
.pkg-addon {
  color: var(--gray-500) !important;
  font-style: italic;
  border-top: 1px solid var(--gray-100);
  padding-top: 8px !important;
  margin-top: 4px;
}

.pkg-addon--gift {
  color: var(--blue) !important;
  font-style: normal !important;
  font-weight: 600;
}

.pkg-addon--gift::before {
  color: var(--blue) !important;
  content: '' !important;
}

/* ══════════════════════════════════════════════════════
   SHOP
══════════════════════════════════════════════════════ */
.shop-section-title {
  font-family: var(--ff-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 6px;
}

.shop-section-sub {
  font-size: .88rem;
  color: var(--gray-500);
  margin-bottom: 28px;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 56px;
}

.shop-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}

.shop-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.shop-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-card-img--red {
  background: linear-gradient(135deg, #fce8e8 0%, #f5c0c0 100%);
}

.shop-card-img--dark {
  background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 100%);
}

.shop-card-body {
  padding: 14px 16px 8px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.shop-brand {
  font-family: var(--ff-head);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.shop-name {
  font-family: var(--ff-head);
  font-size: .88rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.25;
}

.shop-price {
  font-family: var(--ff-head);
  font-size: .95rem;
  font-weight: 700;
  color: var(--red);
  margin-top: 4px;
}

.shop-price-sale {
  color: var(--red);
}

.shop-price-old {
  font-size: .78rem;
  color: var(--gray-500);
  text-decoration: line-through;
  font-weight: 500;
}

.shop-btn {
  display: block;
  margin: 0 16px 16px;
  padding: 10px 16px;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--ff-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-700);
  text-align: center;
  transition: background .18s, border-color .18s, color .18s;
}

.shop-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* "Alle anzeigen" Card */
.shop-card--all {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  border-color: transparent;
  justify-content: center;
}

.shop-all-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 28px 20px;
  text-align: center;
}

.shop-all-logo {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  opacity: .9;
}

.shop-all-inner p {
  font-family: var(--ff-head);
  font-size: .88rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .9);
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.3;
}

.shop-card--all .btn--red {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
  font-size: .78rem;
}

.shop-card--all .btn--red:hover {
  background: rgba(255, 255, 255, .9);
}

/* ── Fanartikel ─────────────────────────────────────── */
.fan-section {
  padding-top: 40px;
  border-top: 2px solid var(--gray-100);
}

.fan-layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.fan-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.fan-item {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  transition: border-color .15s;
}

.fan-item:hover {
  border-color: var(--gray-200);
}

.fan-check {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  cursor: pointer;
  width: 100%;
}

.fan-check input[type="checkbox"] {
  display: none;
}

.fan-check-box {
  width: 22px;
  height: 22px;
  border: 2px solid var(--gray-200);
  border-radius: 5px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, border-color .15s;
  position: relative;
}

.fan-check input:checked~.fan-check-box {
  background: var(--red);
  border-color: var(--red);
}

.fan-check input:checked~.fan-check-box::after {
  content: '';
  width: 6px;
  height: 10px;
  border: 2px solid var(--white);
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
}

.fan-item:has(input:checked) {
  border-color: var(--red);
  background: rgba(204, 0, 0, .02);
}

.fan-check-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fan-item-name {
  font-family: var(--ff-head);
  font-size: .9rem;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: .03em;
}

.fan-item-price {
  font-size: .78rem;
  color: var(--gray-500);
}

/* Fan Form */
.fan-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fan-selected-display {
  padding: 12px 16px;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  display: flex;
  gap: 8px;
  align-items: baseline;
  flex-wrap: wrap;
}

.fan-selected-label {
  font-family: var(--ff-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-500);
  flex-shrink: 0;
}

.fan-selected-items {
  font-family: var(--ff-head);
  font-size: .85rem;
  font-weight: 700;
  color: var(--red);
}

.fan-form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fan-form-row--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: end;
  margin-bottom: 16px;
}

.fan-form-row--2:last-child {
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 0;
}

.fan-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fan-form-group label {
  font-family: var(--ff-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-700);
}

.fan-form-group input,
.fan-form-group select {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-family: var(--ff-body);
  font-size: .9rem;
  color: var(--gray-700);
  width: 100%;
  outline: none;
  transition: border-color .2s;
  appearance: none;
  -webkit-appearance: none;
}

.fan-form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238A8A8A' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.fan-form-group input:focus,
.fan-form-group select:focus {
  border-color: var(--red);
}

.fan-form-group input::placeholder {
  color: var(--gray-200);
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — Shop & Accordion additions
══════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .fan-items {
    grid-template-columns: repeat(2, 1fr);
  }

  .fan-form-row--2 {
    grid-template-columns: 1fr 1fr;
  }

  .fan-form-row--2:last-child {
    grid-template-columns: 1fr;
  }

  .fan-form-row--2:last-child .btn {
    margin-top: 4px;
  }
}

@media (max-width: 800px) {
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-photo-placeholder {
    height: 200px;
  }
}

@media (max-width: 600px) {
  .fan-items {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .fan-form-row--2 {
    grid-template-columns: 1fr;
  }

  .fan-form-row--2:last-child {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════════════
   NEWS MODAL
══════════════════════════════════════════════════════ */
.news-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
  backdrop-filter: blur(3px);
}

.news-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.news-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform .25s;
}

.news-modal-overlay.open .news-modal {
  transform: translateY(0);
}

.news-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--gray-100);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-700);
  transition: background .15s, color .15s;
  z-index: 2;
  flex-shrink: 0;
}

.news-modal-close:hover {
  background: var(--red);
  color: var(--white);
}

#nextMatchModal .news-modal-close {
  width: 25px;
  height: 25px;
}

#nextMatchModal .news-modal-close svg {
  width: 13px;
  height: 13px;
}

#liveSquadModal .news-modal-close {
  width: 25px;
  height: 25px;
}

#liveSquadModal .news-modal-close svg {
  width: 13px;
  height: 13px;
}

.news-modal-body {
  display: flex;
  flex-direction: column;
}

.news-modal-img-wrap {
  width: 100%;
  max-height: 260px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: var(--gray-100);
}

.news-modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-modal-content {
  padding: 32px 36px 36px;
}

.news-modal-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.nm-tag {
  font-family: var(--ff-head);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 4px;
}

.nm-date {
  font-size: .82rem;
  color: var(--gray-500);
  font-weight: 600;
}

.news-modal-title {
  font-family: var(--ff-head);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.15;
  margin-bottom: 18px;
}

.news-modal-text p {
  font-size: .92rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 14px;
}

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

.news-modal-text strong {
  color: var(--black);
  font-weight: 700;
}

.news-modal-text ul {
  padding-left: 0;
  margin: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.news-modal-text ul li {
  font-size: .9rem;
  color: var(--gray-700);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.news-modal-text ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
  font-size: .8rem;
}

.news-modal-text a {
  color: var(--red);
  font-weight: 600;
}

.news-modal-text a:hover {
  text-decoration: underline;
}

/* ══════════════════════════════════════════════════════
   NEWS-VORANKÜNDIGUNG (statischer Banner, bewusst nicht klickbar)
══════════════════════════════════════════════════════ */
.news-featured-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-left: 4px solid var(--red);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 18px 22px;
  margin-bottom: 20px;
}

.nfb-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nfb-body {
  flex: 1;
  min-width: 0;
}

.nfb-tag {
  display: inline-block;
  font-family: var(--ff-head);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(204, 0, 0, .08);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.nfb-title {
  font-family: var(--ff-head);
  font-size: .92rem;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: 1.3;
  margin-bottom: 4px;
}

.nfb-sub {
  font-size: .84rem;
  color: var(--gray-600);
  line-height: 1.4;
}

.nfb-date {
  flex-shrink: 0;
  font-family: var(--ff-head);
  font-size: .8rem;
  font-weight: 700;
  color: var(--red);
  white-space: nowrap;
}

/* ══════════════════════════════════════════════════════
   NEWS CARDS (eine Zeile pro Post, untereinander)
══════════════════════════════════════════════════════ */
.news-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.news-card {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  text-align: left;
  transition: transform .15s, box-shadow .15s, border-color .15s;
}

.news-card:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  border-color: var(--gray-200);
}

.news-card--featured {
  background: rgba(204, 0, 0, .025);
}

.news-card--featured:hover {
  background: rgba(204, 0, 0, .05);
}

.nc-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.news-tag {
  flex-shrink: 0;
  display: inline-block;
  font-family: var(--ff-head);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(0, 53, 128, .08);
  padding: 4px 10px;
  border-radius: 20px;
}

.nc-title {
  width: 100%;
  min-width: 0;
  font-family: var(--ff-head);
  font-size: .88rem;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Excerpt stays in the data for the modal; hidden from the compact
   one-line list view. */
.nc-excerpt {
  display: none;
}

.nc-right {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nc-arrow {
  color: var(--gray-600);
  transition: transform .2s, color .2s;
}

.news-card:hover .nc-arrow {
  transform: translateX(3px);
  color: var(--red);
}

/* ══════════════════════════════════════════════════════
   NÄCHSTES SPIEL — Placeholder
══════════════════════════════════════════════════════ */
.match-card--next {
  opacity: .75;
}

.match-card-top--gray {
  background: var(--gray-200) !important;
}

.match-card-top--gray .match-badge,
.match-card-top--gray .match-date {
  color: var(--gray-700) !important;
}

.match-next-placeholder {
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.match-next-placeholder p {
  font-family: var(--ff-head);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gray-500);
}

/* ══════════════════════════════════════════════════════
   PLAYER: Kapitän — kein roter Rahmen, C in Rot
══════════════════════════════════════════════════════ */
.player-card--captain {
  border-color: var(--gray-100) !important;
  background: var(--white) !important;
}

.captain-badge {
  display: inline;
  font-family: var(--ff-head);
  font-size: .88rem;
  font-weight: 700;
  color: var(--red);
  background: none;
  padding: 0;
  border-radius: 0;
  margin-left: 2px;
  vertical-align: baseline;
}

/* ══════════════════════════════════════════════════════
   SHOP — echte Produktbilder
══════════════════════════════════════════════════════ */
.shop-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-50);
  overflow: hidden;
}

.shop-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  transition: transform .3s;
}

.shop-card:hover .shop-card-img img {
  transform: scale(1.04);
}

/* ══════════════════════════════════════════════════════
   FAN ARTIKEL — Vertikal, Artikel oben, Formular darunter
══════════════════════════════════════════════════════ */
.fan-item {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 0;
  overflow: hidden;
  transition: border-color .15s;
}

.fan-item:hover {
  border-color: var(--gray-200);
}

.fan-item-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 16px 8px;
}

.fan-qty {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 8px 12px 14px;
  align-self: flex-start;
  max-width: calc(100% - 24px);
}

.fan-qty-btn {
  width: 36px;
  height: 36px;
  background: var(--gray-50);
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-700);
  transition: background .15s, color .15s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fan-qty-btn:hover {
  background: var(--red);
  color: var(--white);
}

.fan-qty-input {
  width: 44px;
  height: 36px;
  text-align: center;
  border: none;
  border-left: 1.5px solid var(--gray-200);
  border-right: 1.5px solid var(--gray-200);
  font-family: var(--ff-head);
  font-size: .95rem;
  font-weight: 700;
  color: var(--black);
  background: var(--white);
  outline: none;
  -moz-appearance: textfield;
}

.fan-qty-input::-webkit-outer-spin-button,
.fan-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

/* Qty > 0: highlight item */
.fan-item:has(.fan-qty-input:not([value="0"])) {
  border-color: var(--blue);
}

@media (max-width: 520px) {
  .news-modal-content {
    padding: 24px 20px 28px;
  }
}

/* ══════════════════════════════════════════════════════
   FAN ITEM — Bild-Placeholder (SVG Icon)
══════════════════════════════════════════════════════ */
.fan-item-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  flex-shrink: 0;
  border-radius: 0;
  overflow: hidden;
  border-bottom: 1.5px solid var(--gray-100);
}

.fan-item-img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
}

/* ══════════════════════════════════════════════════════
   MOL LOGO — transparent on match card (logo.png)
══════════════════════════════════════════════════════ */
.mol-logo--img {
  object-fit: contain !important;
  background: transparent;
  padding: 2px;
}

/* ══════════════════════════════════════════════════════
   VV LOGO — transparent on dark/red background
══════════════════════════════════════════════════════ */
.vv-logo {
  background: transparent;
}

/* Fan form: submit button in grid row */
.fan-form-row--2 .btn {
  width: 100%;
  justify-content: center;
  height: 48px;
}

/* ══════════════════════════════════════════════════════
   MANNSCHAFTSFOTO — echtes Bild
══════════════════════════════════════════════════════ */
.team-photo-real {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 48px;
}

.team-photo-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ══════════════════════════════════════════════════════
   MOBILE OPTIMIERUNG — vollständig
   Breakpoints: 768px (tablet), 480px (mobile)
══════════════════════════════════════════════════════ */

/* ── 768px: Tablet / kleines Desktop ─────────────────── */
@media (max-width: 768px) {

  /* Container */
  .container {
    padding: 0 16px;
  }

  /* Section spacing */
  .section {
    padding: 56px 0;
  }

  /* Hero */
  .hero {
    min-height: 85svh;
  }

  .hero-badge {
    font-size: .68rem;
  }

  .hero-title {
    font-size: clamp(2.4rem, 10vw, 4rem);
    line-height: 1.05;
  }

  .hero-sub {
    font-size: 1rem;
    max-width: 90%;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Header */
  .header-inner {
    padding: 0 16px;
  }

  .logo-img {
    height: 40px;
    width: 40px;
  }

  .logo-name {
    font-size: 1rem;
  }

  /* News + Spiele: 2-Spalten → 1-Spalte */
  .spiele-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .col-title {
    font-size: .8rem;
  }

  /* Tabelle & Spielplan: 2-Spalten → 1-Spalte */
  .ts-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Match card */
  .match-oneline {
    padding: 14px 16px;
    gap: 8px;
  }

  .mol-name {
    font-size: .78rem;
  }

  .mol-score {
    font-size: 1.1rem;
    padding: 4px 10px;
  }

  /* News cards */
  .news-card {
    padding: 14px 16px;
  }

  .nc-title {
    font-size: .82rem;
  }

  /* Kader */
  .player-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .team-block {
    margin-bottom: 32px;
  }

  .team-role-title {
    font-size: .75rem;
    margin-bottom: 14px;
  }

  /* Verein */
  .verein-split {
    grid-template-columns: 1fr;
  }

  .verein-facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .verein-visual {
    max-width: 100%;
    min-height: 220px;
  }

  /* Sponsoren */
  .sponsor-packages {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .pkg-card {
    padding: 24px 20px;
  }

  .pkg-price {
    font-size: 2rem;
  }

  /* Shop */
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .shop-tabs {
    gap: 6px;
  }

  .shop-tab {
    font-size: .72rem;
    padding: 8px 14px;
  }

  /* Fanartikel */
  .fan-items {
    grid-template-columns: repeat(3, 1fr);
  }

  .fan-form-row--2 {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .fan-form-row--2 .btn {
    width: 100%;
  }

  /* Kontakt */
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-form-wrap {
    padding: 28px 20px;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 12px;
  }

  /* News Modal */
  .news-modal-overlay {
    padding: 10px;
  }

  .news-modal {
    margin: 0;
    width: 100%;
    max-height: 96svh;
  }

  .news-modal-content {
    padding: 20px 14px 24px;
  }

  #nextMatchModal .mol-name {
    font-size: clamp(.6rem, 2.6vw, .72rem);
  }

  #nextMatchModal .mol-score {
    font-size: 1.05rem;
  }

  #nextMatchModal .match-card-top {
    padding: 10px 14px;
  }

  #nextMatchModal .match-oneline {
    padding: 16px 14px;
  }
}

/* ── 480px: Mobile ────────────────────────────────────── */
@media (max-width: 480px) {

  /* Container */
  .container {
    padding: 0 14px;
  }

  /* Section spacing */
  .section {
    padding: 44px 0;
  }

  .section-header {
    margin-bottom: 28px;
  }

  /* Hero */
  .hero {
    min-height: 90svh;
  }

  .hero-title {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .hero-sub {
    font-size: .92rem;
  }

  /* Header */
  .logo-name {
    font-size: .9rem;
  }

  /* Kader: 2 Spalten auf Mobile */
  .player-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  /* Mannschaftsfoto */
  .team-photo-real {
    border-radius: var(--radius);
    margin-bottom: 28px;
  }

  /* Trainerstab: 2 Spalten */
  .team-block:first-of-type .player-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Sponsoren: 1 Spalte */
  .sponsor-packages {
    grid-template-columns: 1fr;
  }

  .sponsor-cta {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  /* Shop: 2 Spalten (klein) */
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .shop-card-title {
    font-size: .8rem;
  }

  .shop-card-body {
    padding: 10px;
  }

  /* Fanartikel: 1 Spalte, horizontal */
  .fan-items {
    grid-template-columns: 1fr;
  }

  .fan-item {
    flex-direction: row;
    padding: 0;
    align-items: center;
    overflow: visible;
  }

  .fan-item-img {
    width: 64px;
    height: 64px;
    aspect-ratio: 1/1;
    flex-shrink: 0;
    border-bottom: none;
    border-right: 1.5px solid var(--gray-100);
    border-radius: var(--radius) 0 0 var(--radius);
  }

  .fan-item-info {
    flex: 1;
    min-width: 0;
    padding: 12px 0 12px 12px;
  }

  .fan-item-name {
    white-space: normal;
    word-break: break-word;
    font-size: .82rem;
  }

  .fan-qty {
    margin: 0 12px 0 8px;
    align-self: center;
    flex-shrink: 0;
    max-width: none;
  }

  /* Fan form */
  .fan-form-row--2 {
    grid-template-columns: 1fr;
  }

  /* Section header */
  .section-header h2 {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
  }

  /* Verein facts */
  .verein-facts {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .fact-val {
    font-size: 2rem;
  }

  /* Kontakt form */
  .cf-row {
    flex-direction: column;
    gap: 12px;
  }

  .contact-form-wrap {
    padding: 20px 16px;
    border-radius: var(--radius);
  }

  /* OFV link */
  .ofv-table-link {
    font-size: .78rem;
    padding: 10px 14px;
  }

  /* Tabelle & Spielplan */
  .standings-table {
    font-size: .74rem;
  }

  .standings-table th,
  .standings-table td {
    padding: 8px 6px;
  }

  /* Tore-Spalte ausblenden — zu eng für Mobile, Diff/Pkt reichen aus */
  .standings-table th:nth-child(7),
  .standings-table td:nth-child(7) {
    display: none;
  }

  /* Match card */
  .mol-team-name {
    font-size: .75rem;
  }

  /* Footer */
  .footer {
    padding: 32px 0 24px;
  }

  .footer-logo-img {
    width: 36px;
    height: 36px;
  }

  /* Buttons full-width */
  .hero-actions .btn {
    font-size: .88rem;
    padding: 12px 20px;
  }
}

/* ── Touch-Optimierungen global ───────────────────────── */
@media (max-width: 768px) {

  /* Mindest-Tappgrösse 44px für alle interaktiven Elemente */
  .nav-link,
  .mm-link,
  .lang-toggle,
  .burger,
  .news-card,
  .acc-trigger,
  .btn,
  .fan-qty-btn {
    min-height: 44px;
  }

  .news-modal-close {
    width: 44px;
    height: 44px;
  }

  /* Tap-Delay entfernen */
  * {
    touch-action: manipulation;
  }

  /* Kein Hover-Transform auf Touch */
  .btn:hover {
    transform: none;
    box-shadow: none;
  }

  .player-card:hover {
    transform: none;
  }

  .shop-card:hover {
    transform: none;
    box-shadow: none;
  }
}

/* ══════════════════════════════════════════════════════
   MOBILE FIX — Horizontal Overflow & Hero Breite
══════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Verhindert horizontales Scrollen durch alle Elemente */
  .hero,
  .section,
  .header,
  .footer,
  .spiele-grid,
  .news-col,
  .match-col,
  .player-cards,
  .sponsor-packages,
  .shop-grid,
  .fan-layout,
  .contact-layout {
    max-width: 100%;
    overflow-x: hidden;
  }

  /* Hero: volle Breite sicherstellen */
  .hero {
    width: 100%;
  }

  .hero-bg,
  .hero-video,
  .hero-img {
    width: 100%;
    max-width: 100%;
  }

  /* Hero Content: kein Overflow */
  .hero-content {
    width: 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Hero Diagonal schmaler damit kein Überlauf */
  .hero-diagonal {
    right: 0;
    left: 0;
    width: 100%;
  }

  /* News Cards: volle Breite */
  .news-cards,
  .news-card {
    width: 100%;
    max-width: 100%;
  }

  /* Match Card */
  .match-card,
  .match-oneline {
    max-width: 100%;
    overflow: hidden;
  }

  .mol-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 90px;
  }

  /* OFV Link */
  .ofv-table-link {
    max-width: 100%;
    overflow: hidden;
    display: none;
  }
}

/* ══════════════════════════════════════════════════════
   MATCH CARD MOBILE — Gegner-Logo weg, Name nicht abschneiden
══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .mol-name {
    white-space: nowrap;
    overflow: visible;
    text-overflow: unset;
    max-width: none;
    font-size: clamp(.68rem, 3.2vw, .8rem);
    line-height: 1.25;
  }

  .mol-name--us {
    font-weight: 700;
  }

  .mol-name-break {
    display: block;
    white-space: nowrap;
  }

  .mol-team {
    min-width: 0;
    gap: 6px;
  }

  .mol-logo {
    width: 28px;
    height: 28px;
    border-radius: 5px;
  }

  .mol-score {
    font-size: 1.2rem;
    flex-shrink: 0;
  }

  .match-oneline {
    gap: 8px;
  }
}

/* ══════════════════════════════════════════════════════
   BOTTOM NAVIGATION (Mobile PWA)
══════════════════════════════════════════════════════ */
.bottom-nav {
  display: none;
}

@media (max-width: 768px) {
  .bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    border-top: 1.5px solid var(--gray-100);
    padding: 6px 0 max(8px, env(safe-area-inset-bottom));
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .08);
  }

  body.modal-open .bottom-nav {
    display: none;
  }

  .bn-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: var(--gray-400);
    text-decoration: none;
    padding: 4px 2px;
    min-height: 44px;
    transition: color .15s;
  }

  .bn-item svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.8;
  }

  .bn-item span {
    font-family: var(--ff-head);
    font-size: .58rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
  }

  .bn-item:hover,
  .bn-item.active {
    color: var(--red);
  }

  /* Seiten-Inhalt nach oben schieben damit Bottom Nav nichts überdeckt */
  body {
    padding-bottom: calc(60px + env(safe-area-inset-bottom));
  }
}

/* ══════════════════════════════════════════════════════
   LIVE SQUAD BANNER (Mobile + Desktop — only while a match
   is toggled live in the admin tool)
══════════════════════════════════════════════════════ */
.live-squad-banner {
  display: none;
  align-items: center;
  gap: 10px;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  width: 100%;
  border: none;
  background: var(--red);
  color: var(--white);
  padding: 12px 24px;
  cursor: pointer;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, .12);
}

.live-squad-banner.show {
  display: flex;
}

.live-squad-banner .lsb-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--white);
  flex-shrink: 0;
  animation: lsbPulse 1.6s ease-in-out infinite;
}

.live-squad-banner .lsb-text {
  font-family: var(--ff-head);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  flex: 1;
  text-align: left;
}

.live-squad-banner .lsb-arrow {
  font-family: var(--ff-head);
  font-weight: 700;
}

body.has-live-banner {
  padding-bottom: var(--live-banner-h, 0px);
}

@media (max-width: 768px) {
  .live-squad-banner.show {
    bottom: calc(60px + env(safe-area-inset-bottom));
    padding: 11px 18px;
  }

  .live-squad-banner .lsb-text {
    font-size: .78rem;
  }

  body.has-live-banner {
    padding-bottom: calc(60px + var(--live-banner-h, 0px) + env(safe-area-inset-bottom));
  }
}

@keyframes lsbPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .35;
  }
}

/* ══════════════════════════════════════════════════════
   LIVE SQUAD OVERLAY (pitch + player tokens)
══════════════════════════════════════════════════════ */
.live-squad-modal {
  max-width: 640px;
}

.live-squad-section-title {
  margin-top: 22px;
}

.live-squad-scorers {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.live-squad-scorers .lsc-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 14px;
  background: var(--gray-50);
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: .85rem;
}

.live-squad-scorers .lsc-minute {
  font-family: var(--ff-head);
  font-weight: 700;
  color: var(--gray-500);
  min-width: 32px;
}

.live-squad-scorers .lsc-ball {
  font-size: .8rem;
  flex-shrink: 0;
}

.live-squad-scorers .lsc-crest {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

.live-squad-scorers .lsc-name {
  flex: 1;
  font-weight: 600;
  color: var(--black);
}

.live-squad-scorers .lsc-row.lsc-opp .lsc-name {
  color: var(--gray-600);
}

.live-squad-scorers .lsc-result {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: .78rem;
  color: var(--gray-500);
  flex-shrink: 0;
}

.live-squad-pitch {
  position: relative;
  width: 100%;
  aspect-ratio: 1198 / 880;
  border-radius: var(--radius);
  overflow: hidden;
  background-image: url('graphics/pitch_desktop.jpeg');
  background-size: cover;
  background-position: center;
  border: 1.5px solid var(--gray-100);
}

@media (max-width: 480px) {
  .live-squad-pitch {
    aspect-ratio: 768 / 1221;
    background-image: url('graphics/pitch_mobile.jpeg');
  }
}

.lsp-token {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 18%;
}

/* Fixed-ratio box (matches the squad photo crop) so a photo and the
   placeholder jersey both sit on the same "ground line" and line up
   with the rest of the row, whichever one a given token uses. */
.lsp-visual {
  width: 100%;
  aspect-ratio: 1066 / 911;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.lsp-token img,
.lsp-token .lsp-jersey {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, .5));
}

.lsp-token .lsp-jersey {
  width: 62%;
}

.lsp-name {
  margin-top: 4px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: .56rem;
  letter-spacing: .02em;
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
  text-transform: uppercase;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
}

.live-squad-empty {
  display: none;
  text-align: center;
  padding: 30px 10px;
  color: var(--gray-600);
  font-family: var(--ff-body);
  font-size: .9rem;
}

.live-squad-empty.show {
  display: block;
}

.live-squad-pitch.hidden {
  display: none;
}

#liveSquadCard.hidden {
  display: none;
}

/* ══════════════════════════════════════════════════════
   FOOTER SOCIAL LINKS
══════════════════════════════════════════════════════ */
.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  color: var(--white);
  transition: background .15s, transform .15s;
}

.footer-social-link:hover {
  background: var(--red);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .footer-social {
    gap: 10px;
  }

  .footer-social-link {
    width: 40px;
    height: 40px;
  }
}

/* ══════════════════════════════════════════════════════
   NEWS MODAL — Links styling
══════════════════════════════════════════════════════ */
.news-modal-content a {
  color: var(--red);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.news-modal-content ul {
  list-style: disc;
  padding-left: 20px;
  margin: 12px 0;
  display: block;
}

.news-modal-content ul li {
  margin-bottom: 6px;
}

/* ══════════════════════════════════════════════════════
   HEADER — kleiner auf Mobile
══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --header-h: 72px;
  }

  .header-inner {
    height: 72px;
    padding: 0 10px;
    gap: 8px;
  }

  .header {
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .1);
    border-bottom: 1px solid var(--gray-100);
    overflow: visible;
  }

  .logo {
    position: relative;
    height: 100%;
    min-width: 0;
  }

  .logo-img {
    position: absolute;
    left: 0;
    top: 50%;
    height: 75px;
    width: auto;
    transform: translateY(-30%);
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .25));
    transition: transform .3s, height .3s, opacity .3s;
  }

  .logo:hover .logo-img {
    transform: translateY(-30%) scale(1.05);
  }

  .header.scrolled .logo-img {
    height: 63.75px;
    opacity: .92;
  }

  .logo-text-block {
    padding-left: 74px;
    min-width: 0;
  }

  .logo-name,
  .header.scrolled .logo-name {
    font-size: .78rem;
    color: var(--black);
    display: block;
  }

  .logo-name-break {
    display: block;
  }

  .nav-link {
    color: var(--gray-700);
  }

  .nav-link:hover {
    color: var(--black);
    background: var(--gray-50);
  }

  .nav-cta {
    color: var(--white) !important;
    background: var(--red) !important;
  }

  .lang-toggle {
    font-size: .68rem;
    padding: 4px 8px;
    background: var(--gray-50);
    border-color: var(--gray-200);
  }

  .lang-opt {
    color: var(--gray-500);
  }

  .lang-sep {
    color: var(--gray-200);
  }

  .burger {
    width: 36px;
    height: 36px;
  }

  .burger span {
    background: var(--black);
  }
}

/* ══════════════════════════════════════════════════════
   FOOTER CHECKERBOARD
══════════════════════════════════════════════════════ */
.footer-checkerboard {
  display: block;
  line-height: 0;
  height: 12px;
  overflow: hidden;
}

.footer-checkerboard svg {
  display: block;
}

/* ══════════════════════════════════════════════════════
   BOTTOM NAV — blauer Hintergrund, rot/weiss abwechselnd
══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .bottom-nav {
    background: #003580 !important;
    border-top: none !important;
    box-shadow: 0 -2px 16px rgba(0, 0, 0, .25) !important;
  }

  /* Items 1,3,5 (News, Verein, Shop) → rot */
  .bn-item:nth-child(1),
  .bn-item:nth-child(3),
  .bn-item:nth-child(5) {
    color: #CC0000;
  }

  /* Items 2,4,6 (Team, Sponsor, Kontakt) → weiss */
  .bn-item:nth-child(2),
  .bn-item:nth-child(4),
  .bn-item:nth-child(6) {
    color: #FFFFFF;
  }

  /* Active state: helle Variante der jeweiligen Farbe */
  .bn-item:nth-child(1).active,
  .bn-item:nth-child(3).active,
  .bn-item:nth-child(5).active {
    color: #ff4444;
  }

  .bn-item:nth-child(2).active,
  .bn-item:nth-child(4).active,
  .bn-item:nth-child(6).active {
    color: #FFFFFF;
    opacity: 0.75;
  }

  .bn-item:hover {
    opacity: 0.85;
  }
}

/* ══════════════════════════════════════════════════════
   SPONSOR LOGOS — as-slot--logo
══════════════════════════════════════════════════════ */
.as-slot--logo {
  background: #fff;
  border: 2px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 8px 16px;
}

.as-logo-img {
  max-height: 44px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.as-slot--gold.as-slot--logo .as-logo-img {
  max-height: 52px;
  max-width: 160px;
}

/* ══════════════════════════════════════════════════════
   DATENSCHUTZ MODAL
══════════════════════════════════════════════════════ */
.ds-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ds-modal[hidden] {
  display: none;
}

.ds-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(3px);
}

.ds-content {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 40px;
  max-width: 640px;
  width: calc(100% - 32px);
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .18);
}

.ds-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--gray-400);
  line-height: 1;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background .15s;
}

.ds-close:hover {
  background: var(--gray-50);
  color: var(--black);
}

.ds-content h2 {
  font-family: var(--ff-head);
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0 0 24px;
  color: var(--black);
}

.ds-body h3 {
  font-family: var(--ff-head);
  font-size: .95rem;
  font-weight: 700;
  color: var(--red);
  margin: 20px 0 6px;
}

.ds-body p {
  font-size: .9rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin: 0;
}

/* Datenschutz footer link */
.datenschutz-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, .4);
  transition: text-decoration-color .15s;
}

.datenschutz-link:hover {
  text-decoration-color: rgba(255, 255, 255, .9);
}

/* ══════════════════════════════════════════════════════
   KONTAKTFORMULAR — cf-row, cf-group select
══════════════════════════════════════════════════════ */
.cf-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.cf-row .cf-group {
  flex: 1;
  min-width: 0;
}

.cf-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.cf-group label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.contact-form select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-100);
  border-radius: 10px;
  font-family: var(--ff-body);
  font-size: .95rem;
  color: var(--black);
  background: var(--white);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  cursor: pointer;
  transition: border-color .2s;
}

.contact-form select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(204, 0, 0, .08);
}

/* ══════════════════════════════════════════════════════
   COOKIE BANNER
══════════════════════════════════════════════════════ */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--black);
  color: var(--white);
  padding: 14px 24px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, .2);
}

.cookie-banner.visible {
  display: flex;
}

body.has-live-banner .cookie-banner {
  bottom: var(--live-banner-h, 0px);
}

.ck-text {
  font-size: .88rem;
  margin: 0;
  flex: 1;
}

.ck-btn {
  white-space: nowrap;
  font-size: .82rem;
  padding: 10px 20px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    bottom: calc(60px + env(safe-area-inset-bottom));
    padding: 14px 16px;
  }

  body.has-live-banner .cookie-banner {
    bottom: calc(60px + var(--live-banner-h, 0px) + env(safe-area-inset-bottom));
  }

  .ck-btn {
    width: 100%;
    text-align: center;
  }
}

/* ══════════════════════════════════════════════════════
   FAN ITEM MOBILE — +/- Fix
══════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .fan-item {
    flex-direction: row;
    align-items: center;
    padding: 12px 14px;
    gap: 10px;
    overflow: visible;
  }

  .fan-item-img {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
    border-right: 1.5px solid var(--gray-100);
    border-bottom: none;
  }

  .fan-item-info {
    flex: 1;
    padding: 0 0 0 10px;
    min-width: 0;
  }

  .fan-qty {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    margin-left: auto;
  }

  .fan-qty-btn {
    width: 30px;
    height: 30px;
    min-width: 30px;
    font-size: 1.1rem;
    flex-shrink: 0;
  }

  .fan-qty-input {
    width: 36px;
    min-width: 36px;
    text-align: center;
    flex-shrink: 0;
  }
}

/* ══════════════════════════════════════════════════════
   SPONSOR KARUSSELL
══════════════════════════════════════════════════════ */
.sponsor-carousel-wrap {
  margin-bottom: 28px;
}

.spc-tier-label {
  font-family: var(--ff-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin: 0 0 12px;
  padding-left: 4px;
}

.spc-tier--gold {
  color: #b8860b;
}

.spc-tier--silver {
  color: #707070;
}

.sponsor-carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.sponsor-carousel::before,
.sponsor-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 48px;
  z-index: 2;
  pointer-events: none;
}

.sponsor-carousel::before {
  left: 0;
  background: linear-gradient(to right, var(--gray-50), transparent);
}

.sponsor-carousel::after {
  right: 0;
  background: linear-gradient(to left, var(--gray-50), transparent);
}

.spc-track {
  display: flex;
  gap: 0;
  width: max-content;
  will-change: transform;
}

.sponsor-carousel:hover .spc-track {
  animation-play-state: paused;
}

.spc-item {
  flex-shrink: 0;
  width: 160px;
  height: 80px;
  margin-right: 16px;
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  text-decoration: none;
  transition: border-color .2s, box-shadow .2s;
}

.spc-item--logo:hover {
  border-color: var(--gray-300);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
}

.spc-logo {
  max-width: 120px;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.spc-item--dark {
  background: #000;
}

.spc-item--empty {
  border-style: dashed;
  border-color: var(--gray-200);
}

.spc-item--empty span {
  font-size: .78rem;
  color: var(--gray-300);
  text-align: center;
}

/* Gold items are slightly larger */
.spc-tier--gold+.sponsor-carousel .spc-item {
  width: 180px;
  height: 90px;
}

/* ══════════════════════════════════════════════════════
   FC UZWIL PARTNER BADGE
══════════════════════════════════════════════════════ */
.fcuzwil-partner {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1.5px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 16px;
}

.fcuzwil-label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: .08em;
  white-space: nowrap;
}

.fcuzwil-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--black);
  padding: 8px 16px;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
}

.fcuzwil-link:hover {
  border-color: var(--gray-300);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
}

.fcuzwil-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.fcuzwil-name {
  font-family: var(--ff-head);
  font-size: .95rem;
  font-weight: 700;
}

/* ══════════════════════════════════════════════════════
   LIGA WIDGET
══════════════════════════════════════════════════════ */
.liga-widget-wrap {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  border: 1.5px solid var(--gray-100);
}

.liga-iframe {
  display: block;
  width: 100%;
  min-height: 520px;
  border: none;
}

/* ══════════════════════════════════════════════════════
   RUNDE 3 FIXES
══════════════════════════════════════════════════════ */

/* News-Karten rechte Spalte — Abstand zur blauen Markierung */
.nc-right {
  padding-left: 12px;
}

/* Kontaktformular — alle Felder blau */
.section--blue .contact-form input,
.section--blue .contact-form textarea,
.section--blue .contact-form select {
  background: rgba(255, 255, 255, .12) !important;
  border-color: rgba(255, 255, 255, .2) !important;
  color: var(--white) !important;
}

.section--blue .contact-form input::placeholder,
.section--blue .contact-form textarea::placeholder {
  color: rgba(255, 255, 255, .45) !important;
}

.section--blue .contact-form select option {
  background: #003580;
  color: var(--white);
}

.section--blue .contact-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.6)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
}

.section--blue .contact-form input:focus,
.section--blue .contact-form textarea:focus,
.section--blue .contact-form select:focus {
  border-color: rgba(255, 255, 255, .5) !important;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .1) !important;
  outline: none;
}

/* Sponsor-Logos Grössen: Gold > Silver > Bronze */
/* Gold: bestehendes 180x90 bleibt */
.spc-item--silver {
  width: 150px;
  height: 72px;
}

.spc-item--bronze {
  width: 126px;
  height: 60px;
}

.spc-item--silver .spc-logo {
  max-width: 110px;
  max-height: 44px;
}

.spc-item--bronze .spc-logo {
  max-width: 90px;
  max-height: 36px;
}

/* Bronze Tier Label */
.spc-tier--bronze {
  color: #8b5e3c;
}

/* ══════════════════════════════════════════════════════
   RUNDE 3b FIXES
══════════════════════════════════════════════════════ */

/* News-split: beide Spalten gleich hoch */
.spiele-grid {
  align-items: stretch !important;
}

.news-col {
  display: flex;
  flex-direction: column;
}

/* Kontaktformular Dropdown — Browser-Default vollständig überschreiben */
.section--blue .contact-form select,
.section--blue .contact-form select:focus,
.section--blue .contact-form select:active {
  background-color: rgba(255, 255, 255, .12) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.6)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  background-size: 16px !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  border: 1.5px solid rgba(255, 255, 255, .2) !important;
  color: var(--white) !important;
  border-radius: 10px !important;
}