html {
  overflow-y: scroll;
  scrollbar-gutter: stable;
}

:root {
  --fsv-navy-1: #00152a;
  --fsv-navy-2: #0e1621;
  --fsv-accent-red: #d62828;
  --fsv-accent-yellow: #ffd60a;
  --fsv-text: #ffffff;
  --fsv-text-dim: #cfd6df;
  --fsv-blue: #00152a;
  --fsv-red: #d62828;
  --fsv-white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: linear-gradient(to bottom, #0e1621 0%, #00152a 250px, #0e1621 100%);
  color: white;
}

/* =========================
   HEADER / BANNER
   ========================= */

.banner-header {
  aspect-ratio: 1920 / 380;
  width: 100%;
  max-height: 230px;
  overflow: hidden;
}

.banner-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================
   NAVIGATION
   ========================= */

#main-nav {
  position: sticky;
  top: 0;
  z-index: 999;
  transition: all 0.3s ease, transform 0.3s ease;
  background-color: rgba(0, 21, 42, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  padding: 10px 20px;
  flex-wrap: wrap;
}

#main-nav.scrolled {
  background-color: #00152a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

#main-nav ul li ul {
  background: rgba(0, 21, 42, 0.95);
  padding: 10px 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
}

#main-nav ul li ul li a {
  display: block;
  padding: 8px 16px;
}

.nav-left,
.nav-right {
  display: flex;
  gap: 20px;
}

.nav-logo img {
  height: 90px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.nav-logo:hover img {
  transform: scale(1.05);
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

nav ul li {
  position: relative;
}

nav a {
  color: white;
  text-decoration: none;
  padding: 10px 15px;
  display: block;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: #ff3333;
}

nav ul ul {
  display: none;
  position: absolute;
  background-color: #00152a;
  top: 100%;
  left: 0;
  min-width: 160px;
  z-index: 1000;
}

nav ul li:hover > ul {
  display: block;
}

nav ul ul ul {
  left: 100%;
  top: 0;
}

/* =========================
   LAYOUT
   ========================= */

main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

h1,
h2 {
  margin-bottom: 20px;
}

section {
  max-width: 900px;
  margin: 60px auto;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

footer {
  background-color: #00152a;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  color: #ccc;
  margin-top: 40px;
}

/* =========================
   INTRO / TIMELINE / VALUES / CTA
   ========================= */

.intro {
  font-size: 1.2em;
  line-height: 1.6;
}

.intro blockquote {
  font-style: italic;
  color: #ccc;
  margin: 1em 0 2em;
}

.timeline {
  margin: 40px auto;
  position: relative;
  max-width: 600px;
  text-align: left;
  padding-left: 30px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10px;
  width: 4px;
  height: 100%;
  background: #ff3333;
}

.event {
  position: relative;
  margin-bottom: 30px;
  padding-left: 20px;
}

.event time {
  font-weight: bold;
  color: #3399ff;
}

.values {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.value-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 8px;
  flex: 1 1 200px;
  text-align: left;
}

.cta {
  background: rgba(255, 255, 255, 0.08);
  padding: 70px;
  border-radius: 10px;
  margin: 40px auto;
  max-width: 600px;
  text-align: center;
}

.cta a {
  background: #ff3333;
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

/* =========================
   TEAM / SPIELER / TRAINER
   ========================= */

.team-banner {
  max-width: 70%;
  max-height: 280px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
}

.trainer-bereich,
.kader,
.spielplan {
  text-align: center;
  margin: 40px 0;
}

.profilbild {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #fff;
  transition: transform 0.2s ease;
}

.profilbild:hover {
  transform: scale(1.05);
}

.spieler-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.spieler {
  max-width: 180px;
  text-align: center;
}

.spieler p {
  margin-top: 10px;
  font-size: 0.95em;
}

a img {
  border: none;
  outline: none;
  text-decoration: none;
  box-shadow: none;
}

.spieler-gruppe {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}

.spieler-gruppe h2 {
  width: 100%;
  text-align: center;
}

.co-trainer-container {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.trainer-box {
  text-align: center;
}

.teamfoto {
  text-align: center;
  margin: 2rem 0 1rem 0;
}

.teamfoto-img {
  max-width: 100%;
  max-height: 700px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
}

.teamfoto-caption {
  margin-top: 10px;
  font-size: 1em;
  color: #ccc;
}

/* =========================
   TRAININGSZEITEN / BUTTONS
   ========================= */

.trainingszeiten {
  background-color: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  margin: 60px auto 40px auto;
  max-width: 600px;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.trainingszeiten h2 {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #fff;
}

.trainingszeiten .icon {
  font-size: 1.2em;
  margin-right: 6px;
}

.trainingszeiten p {
  margin: 8px 0;
  font-size: 1.1em;
}

.trainingszeiten .blue-fighters {
  color: #3399ff;
}

.kontakt-button {
  display: inline-block;
  margin-top: 20px;
  background-color: #ff4b4b;
  color: white;
  font-weight: bold;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.kontakt-button:hover {
  background-color: #e60000;
}

.spielplan {
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px 20px;
  text-align: center;
}

.spielplan-button {
  margin-top: 30px;
  text-align: center;
}

.spielplan-button a {
  display: inline-block;
  background-color: #ff3b3f;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.spielplan-button a:hover {
  background-color: #e22a2d;
}

/* =========================
   TEASER BOX
   ========================= */

.teaser-box {
  background: linear-gradient(135deg, #003366, #004080);
  color: white;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  max-width: 90%;
  margin: 2rem auto;
  text-align: center;
  font-family: sans-serif;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.teaser-box:hover {
  transform: translateY(-5px);
}

.teaser-box h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.teaser-box a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  background-color: #ffcc00;
  padding: 10px 20px;
  border-radius: 8px;
  display: inline-block;
  margin-top: 1rem;
}

.teaser-box a:hover {
  background-color: #ffd633;
  color: #003366;
}

/* =========================
   POPUP
   ========================= */

.popup-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.75);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
}

.popup-overlay.show {
  opacity: 1;
  visibility: visible;
}

.popup-overlay.hide {
  opacity: 0;
}

.popup-content {
  position: relative;
  background: #00152a;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 14px;
  max-width: min(92vw, 720px);
  max-height: 90vh;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  transform: scale(0.92);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.popup-overlay.show .popup-content {
  transform: scale(1);
  opacity: 1;
}

.popup-overlay.hide .popup-content {
  transform: scale(0.92);
  opacity: 0;
}

.popup-content img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: #00152a;
  color: #fff;
  font-size: 22px;
  line-height: 34px;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.popup-close:hover,
.popup-close:focus-visible {
  background: #d62828;
  transform: scale(1.08);
  box-shadow: 0 0 12px rgba(214, 40, 40, 0.6);
  outline: none;
}

.popup-cta {
  display: block;
  margin-top: 12px;
  text-align: center;
  font-weight: 800;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 8px;
  background: #00152a;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  animation: popupPulse 2.5s infinite ease-in-out;
}

.popup-cta:hover,
.popup-cta:focus-visible {
  background: #d62828;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
  outline: none;
}

/* =========================
   COUNTDOWN WIDGET
   ========================= */

.nm-wrap {
  max-width: 1100px;
  margin: 16px auto;
  padding: 0 16px;
}

.nm-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  background: linear-gradient(135deg, var(--fsv-navy-1), var(--fsv-navy-2));
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  color: var(--fsv-text);
  border-radius: 16px;
  padding: 18px 22px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.nm-card:hover,
.nm-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  border-color: rgba(255, 255, 255, 0.25);
  outline: none;
}

.nm-left {
  min-width: 0;
}

.nm-badge {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--fsv-accent-red);
  color: #fff;
  border: none;
}

.nm-title {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  margin: 8px 0 4px;
  color: var(--fsv-text);
}

.nm-meta {
  font-size: 14px;
  color: var(--fsv-text-dim);
}

.nm-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nm-count {
  display: grid;
  place-items: center;
  min-width: 66px;
  padding: 6px 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  transform: translateZ(0);
}

.nm-count span {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--fsv-accent-yellow);
}

.nm-count small {
  font-size: 10px;
  opacity: 0.9;
  color: var(--fsv-text);
}

.nm-sep {
  font-weight: 700;
  opacity: 0.55;
  padding: 0 2px;
  color: var(--fsv-text);
}

.nm-hide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

/* =========================
   STICKY CTA
   ========================= */

.cta-probe {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--fsv-blue);
  color: var(--fsv-white);
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.02em;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  opacity: 0;
  transform: translateY(6px) scale(0.98);
}

.cta-probe .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--fsv-red);
  box-shadow: 0 0 10px var(--fsv-red);
}

.cta-probe:hover,
.cta-probe:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 18px rgba(0, 21, 42, 0.6);
  outline: none;
}

.cta-probe--show {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.cta-probe--shy {
  transform: translateY(0) scale(0.92);
  opacity: 0.85;
}

/* =========================
   COOKIE BANNER / MODAL — PREMIUM
   ========================= */

.cookie-banner,
.cookie-modal {
  font-family: Arial, sans-serif;
  z-index: 99999;
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  left: auto;
  width: min(430px, calc(100vw - 24px));
  pointer-events: none;
  animation: cookiePremiumSlideIn 0.75s cubic-bezier(.22, 1, .36, 1);
}

.cookie-banner__box {
  pointer-events: auto;
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 24px 22px 18px;
  border-radius: 24px;
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, rgba(0, 21, 42, 0.92), rgba(0, 43, 84, 0.88) 55%, rgba(11, 35, 61, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.38),
    0 12px 24px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04),
    0 0 30px rgba(51, 153, 255, 0.10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.cookie-banner__box::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(51, 153, 255, 0.30) 0%, rgba(51, 153, 255, 0.10) 35%, rgba(51, 153, 255, 0) 70%);
  pointer-events: none;
}

.cookie-banner__box::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 18px;
  width: 64px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d71920, #ff5a5f);
  box-shadow: 0 0 16px rgba(215, 25, 32, 0.45);
}

.cookie-banner__box h3 {
  margin: 0 0 10px 0;
  padding-right: 26px;
  font-size: 1.2rem;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: 0.01em;
  text-align: left;
}

.cookie-banner__box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.58;
  font-size: 0.95rem;
  text-align: left;
}

.cookie-banner__actions,
.cookie-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.cookie-banner__actions .cookie-btn {
  flex: 1 1 calc(50% - 5px);
}

.cookie-banner__actions .cookie-btn--ghost {
  flex-basis: 100%;
}

.cookie-banner__links {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.88rem;
}

.cookie-banner__links a {
  color: #9fd8ff;
  text-decoration: none;
  font-weight: 600;
  opacity: 0.95;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.cookie-banner__links a:hover {
  color: #ffffff;
  opacity: 1;
  text-decoration: underline;
}

.cookie-btn {
  appearance: none;
  border: 0;
  border-radius: 14px;
  padding: 13px 16px;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    opacity 0.18s ease;
}

.cookie-btn:hover {
  transform: translateY(-2px);
}

.cookie-btn:active {
  transform: translateY(0);
}

.cookie-btn--primary {
  color: #ffffff;
  background: linear-gradient(135deg, #d71920, #b51218);
  box-shadow:
    0 12px 24px rgba(215, 25, 32, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.cookie-btn--primary:hover {
  box-shadow:
    0 16px 30px rgba(215, 25, 32, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cookie-btn--secondary {
  color: #00152a;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 245, 249, 0.96));
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.cookie-btn--ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}

.cookie-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.22);
}

.cookie-modal {
  position: fixed;
  inset: 0;
}

.cookie-modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 20%, rgba(51, 153, 255, 0.10), transparent 25%),
    rgba(0, 10, 24, 0.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: cookiePremiumFadeIn 0.25s ease;
}

.cookie-modal__dialog {
  position: relative;
  z-index: 2;
  width: calc(100% - 32px);
  max-width: 760px;
  margin: 7vh auto 0 auto;
  overflow: hidden;
  border-radius: 24px;
  padding: 30px;
  color: #0f1720;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 252, 0.98));
  border: 1px solid rgba(15, 23, 32, 0.08);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.30),
    0 12px 24px rgba(0, 0, 0, 0.10);
  animation: cookiePremiumModalIn 0.32s ease;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-top: 14px;
  padding: 17px 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(246, 248, 251, 0.95));
  border: 1px solid #e4e9f0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.cookie-option strong {
  display: block;
  font-size: 1rem;
  color: #00152a;
}

.cookie-option p {
  margin: 6px 0 0 0;
  color: #516070;
  font-size: 0.94rem;
  line-height: 1.5;
}

.cookie-option input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: #d71920;
  flex-shrink: 0;
}

.cookie-manage {
  position: fixed;
  right: 20px;
  bottom: 20px;
  left: auto;
  z-index: 99998;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  background: linear-gradient(145deg, rgba(0, 21, 42, 0.94), rgba(0, 43, 84, 0.9));
  border-radius: 999px;
  padding: 12px 16px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.28),
    0 0 18px rgba(51, 153, 255, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  animation: cookiePremiumManageIn 0.35s ease;
}

.cookie-manage:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.32),
    0 0 24px rgba(51, 153, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

[hidden] {
  display: none !important;
}

/* =========================
   ANIMATIONEN
   ========================= */

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes popupPulse {
  0%   { transform: scale(1); box-shadow: 0 0 0 rgba(214, 40, 40, 0.4); }
  50%  { transform: scale(1.05); box-shadow: 0 0 20px rgba(214, 40, 40, 0.7); }
  100% { transform: scale(1); box-shadow: 0 0 0 rgba(214, 40, 40, 0.4); }
}

@keyframes pulse-cta-mobile {
  0%   { transform: scale(1); box-shadow: 0 0 0 rgba(214, 40, 40, 0.5); }
  50%  { transform: scale(1.05); box-shadow: 0 0 20px rgba(214, 40, 40, 0.8); }
  100% { transform: scale(1); box-shadow: 0 0 0 rgba(214, 40, 40, 0.5); }
}

@keyframes pulse-cta-desktop {
  0%, 100% { box-shadow: 0 0 0 rgba(255, 255, 255, 0.3); }
  50% { box-shadow: 0 0 20px rgba(0, 21, 42, 0.8), 0 0 30px rgba(255, 255, 255, 0.8); }
}

@keyframes wiggle-cta {
  0%, 100% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(-2deg) scale(1.05); }
  75% { transform: rotate(2deg) scale(1.05); }
}

@keyframes cookiePremiumSlideIn {
  0% {
    opacity: 0;
    transform: translateX(48px) translateY(18px) scale(0.94);
  }
  70% {
    opacity: 1;
    transform: translateX(-4px) translateY(0) scale(1.01);
  }
  100% {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
  }
}

@keyframes cookiePremiumFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes cookiePremiumModalIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes cookiePremiumManageIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 768px) {
  #main-nav {
    flex-direction: column;
    gap: 20px;
    padding: 15px 10px;
  }

  .nav-left,
  .nav-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .nav-logo {
    order: -1;
    max-width: 100px;
    transform: translateX(-10px);
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  nav ul li {
    width: 100%;
    text-align: center;
  }

  nav ul ul {
    position: static;
    width: 100%;
  }

  .spieler {
    max-width: 45%;
  }

  .co-trainer-container {
    flex-direction: column;
    gap: 2rem;
  }

  .profilbild {
    width: 120px;
    height: 120px;
  }

  .trainer-bereich,
  .kader,
  .spielplan {
    margin: 20px 0;
  }

  .cta-probe {
    animation: pulse-cta-mobile 2.5s infinite ease-in-out;
  }
}

@media (min-width: 769px) {
  .cta-probe {
    animation: pulse-cta-desktop 3s infinite ease-in-out;
  }

  .cta-probe:hover {
    animation: wiggle-cta 0.6s ease;
  }
}

@media (max-width: 640px) {
  .cookie-banner {
    right: 12px;
    left: 12px;
    bottom: 12px;
    width: auto;
  }

  .cookie-banner__box,
  .cookie-modal__dialog {
    padding: 18px;
    border-radius: 18px;
  }

  .cookie-banner__actions,
  .cookie-modal__actions {
    flex-direction: column;
  }

  .cookie-banner__actions .cookie-btn,
  .cookie-btn {
    width: 100%;
    flex-basis: auto;
  }

  .cookie-option {
    flex-direction: row;
    gap: 12px;
  }

  .cookie-manage {
    right: 12px;
    bottom: 12px;
    padding: 11px 14px;
  }

  .cookie-banner__box h3 {
    font-size: 1.08rem;
  }

  .cookie-banner__box p {
    font-size: 0.92rem;
  }

  .nm-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 16px;
  }

  .nm-left {
    margin-bottom: 10px;
  }

  .nm-right {
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
  }

  .nm-count {
    min-width: 52px;
    padding: 4px 6px;
    border-radius: 8px;
  }

  .nm-count span {
    font-size: 20px;
  }

  .nm-count small {
    font-size: 9px;
  }
}