/* Komponenten-Styles für Inhaltsmodule, Boards, Karten, Video und Arcade-Elemente der Landingpage. */

/* Einleitungskarten zur Kampagne */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.px-card {
  background: rgba(0,12,30,0.8);
  border: 2px solid rgba(255,255,255,0.1);
  border-top: 3px solid var(--orange);
  padding: 28px 24px;
  position: relative;
  transition: border-color 0.2s, transform 0.15s;
}
.px-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
}
.px-card-num {
  font-family: var(--px);
  font-size: 22px;
  color: var(--orange);
  opacity: 0.6;
  margin-bottom: 16px;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.4);
}
.px-card-title {
  font-family: var(--px);
  font-size: 10px;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.8;
  letter-spacing: 0.5px;
}
.px-card-text {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  font-family: var(--sans);
}

.stats-section { background: rgba(0,0,0,0.3); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.stat-cell {
  padding: 32px 24px;
  background: rgba(0,12,30,0.8);
  border: 2px solid rgba(255,255,255,0.1);
  border-top: 3px solid var(--orange);
  text-align: center;
}
.stat-cell:last-child { border-right: 2px solid rgba(255,255,255,0.1); }
.stat-number {
  font-family: var(--px);
  font-size: clamp(24px, 3vw, 40px);
  color: #fff;
  text-shadow: 3px 3px 0 var(--orange);
  margin-bottom: 12px;
  display: block;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
  font-family: var(--sans);
}
.stat-context-text {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  max-width: 720px;
  line-height: 1.75;
  margin: 0 0 28px;
  font-family: var(--sans);
}
/* FAHNDUNGSTAFEL (Most-Wanted-Board) */
.wanted-board { margin-bottom: 24px; }
.wanted-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.wanted-scan {
  font-family: var(--px);
  font-size: 8px;
  letter-spacing: 1px;
  color: var(--orange);
  white-space: nowrap;
  padding-top: 6px;
}
.wanted-scan-dot { display: inline-block; animation: wanted-pulse 1.1s steps(1) infinite; }
@keyframes wanted-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }
.wanted-title {
  font-family: var(--px);
  font-size: clamp(11px, 1.5vw, 14px);
  color: #fff;
  line-height: 1.7;
  letter-spacing: 0.5px;
  margin: 0 0 10px;
}
.wanted-intro {
  font-family: var(--sans);
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin: 0 0 22px;
  max-width: 52ch;
}
.wanted-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.wanted-card {
  position: relative;
  background: rgba(0,12,30,0.85);
  border: 2px solid rgba(255,255,255,0.1);
  border-top: 3px solid var(--orange);
  padding: 0 0 16px;
  transition: border-color 0.2s, transform 0.15s;
}
.wanted-card:hover { border-color: var(--orange); transform: translateY(-4px); }
.wanted-stamp {
  position: absolute;
  top: 10px; right: 8px;
  z-index: 3;
  font-family: var(--px);
  font-size: 7px;
  letter-spacing: 1px;
  color: #e23b3b;
  border: 2px double #e23b3b;
  padding: 4px 6px;
  transform: rotate(7deg);
  opacity: 0.9;
}
.wanted-mug {
  position: relative;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background-color: #001220;
  background-image: repeating-linear-gradient(0deg, transparent 0 23px, rgba(255,255,255,0.06) 23px 24px);
  overflow: hidden;
}
.wanted-mug-h {
  position: absolute; left: 6px;
  font-family: var(--px); font-size: 7px;
  color: rgba(255,255,255,0.25);
}
.wanted-mug-h--top { top: 7px; }
.wanted-mug-h--bot { bottom: 7px; }
.wanted-photo {
  width: clamp(54px, 7vw, 76px);
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.4));
}
.wanted-file { padding: 14px 14px 0; }
.wanted-codename {
  font-family: var(--px);
  font-size: 9px;
  line-height: 1.55;
  color: #fff;
  margin-bottom: 8px;
}
.wanted-alias {
  font-family: var(--sans);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.wanted-field {
  font-family: var(--sans);
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}
.wanted-field-val { display: block; color: rgba(255,255,255,0.78); }
.wanted-threat {
  margin-top: 10px;
  font-family: var(--sans);
  font-size: 11px;
  color: rgba(255,255,255,0.45);
}
.wanted-threat-dots { white-space: nowrap; }
.wanted-threat-dots b { color: var(--orange); letter-spacing: 2px; }
.wanted-threat-dots i { color: rgba(255,255,255,0.2); letter-spacing: 2px; font-style: normal; }
@media (prefers-reduced-motion: reduce) {
  .wanted-scan-dot { animation: none; }
  .wanted-card { transition: none; }
}

.mission-briefing-board {
  margin: 0 0 28px;
}
.mission-briefing-kicker {
  display: block;
  font-family: var(--px);
  font-size: 6px;
  color: var(--orange);
  letter-spacing: 1.4px;
  margin-bottom: 12px;
}
.mission-briefing-title {
  max-width: 760px;
  margin-bottom: 18px;
}
.mission-briefing-text {
  margin: 0;
  max-width: 840px;
  font-size: 16px;
  color: rgba(255,255,255,0.68);
  line-height: 1.8;
  font-family: var(--sans);
}
.network-map-board {
  padding: 14px;
  margin-bottom: clamp(36px, 6vw, 52px);
  border: 3px solid var(--orange);
  background: rgba(0,12,30,0.85);
  position: relative;
  overflow: hidden;
}
.network-map-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-end;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.network-map-title {
  font-family: var(--px);
  font-size: clamp(9px, 1.15vw, 12px);
  color: #fff;
  line-height: 1.9;
  letter-spacing: 0.8px;
}
.network-map-note {
  font-family: var(--px);
  font-size: 6px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 1px;
  line-height: 1.8;
}
.network-map-copy {
  font-size: 14px;
  color: rgba(255,255,255,0.62);
  max-width: 760px;
  line-height: 1.7;
  margin: 0 0 20px;
  font-family: var(--sans);
}
.network-map-shell {
  position: relative;
  min-height: 380px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #02060d;
}
/* Scroll-Fenster: auf Desktop statisch, auf Mobile pan-/zoombar */
.network-map-viewport {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
/* Karten-Ebene: traegt Bild + Hotspots, Breite via --map-zoom skalierbar */
.network-map-canvas {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  isolation: isolate;
  background:
    radial-gradient(circle at 22% 24%, rgba(238,114,2,0.12), transparent 24%),
    radial-gradient(circle at 74% 64%, rgba(255,255,255,0.04), transparent 28%),
    linear-gradient(180deg, rgba(7,23,40,0.96), rgba(2,9,20,0.98));
}
.network-map-canvas::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.12;
  pointer-events: none;
  z-index: 1;
}
.network-map-canvas::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), transparent 24%, transparent 76%, rgba(0,0,0,0.34)),
    repeating-linear-gradient(
      to bottom,
      transparent 0 6px,
      rgba(0,0,0,0.12) 6px 8px
    );
  opacity: 0.24;
  pointer-events: none;
  z-index: 2;
}
/* Hintergrundbild-Karte */
.network-map-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  z-index: 0;
  /* transparentes WebP – liegt direkt auf dem dunklen Board */
  opacity: 0.98;
}
.network-hotspot {
  position: absolute;
  width: 3%;
  height: auto;
  aspect-ratio: 1;
  min-width: 26px;
  transform: translate(-50%, -50%);
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  z-index: 4;
  touch-action: manipulation;
}
.network-hotspot::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,78,78,0.2) 0 14%, rgba(255,78,78,0.42) 14% 86%, rgba(255,78,78,0.2) 86% 100%),
    linear-gradient(180deg, rgba(255,78,78,0.55) 0 16%, rgba(255,78,78,0.16) 16% 84%, rgba(255,78,78,0.55) 84% 100%);
  box-shadow:
    0 0 0 3px rgba(255,78,78,0.46),
    0 0 20px rgba(255,78,78,0.18);
  animation: networkHotspotBlink 0.95s steps(2) infinite;
}
.network-hotspot::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translate(-50%, -50%);
  background: #ff5a5a;
  box-shadow:
    0 0 0 4px rgba(46,7,7,0.92),
    0 0 0 6px rgba(255,78,78,0.34);
  animation: networkHotspotPulse 1.25s steps(2) infinite;
}

/* Globaler Fokus-Ring */
:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}
/* Sichtbarer Fokus-Ring für die interaktiven Hotspots auf der Netzwerkkarte */
.network-hotspot:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
  box-shadow: 0 0 0 5px rgba(238,114,2,0.35);
}

.network-hotspot-tooltip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 14px);
  transform: translateX(-50%);
  min-width: 180px;
  max-width: 220px;
  padding: 10px 12px;
  background: rgba(5,16,29,0.96);
  border: 3px solid var(--orange);
  box-shadow: 4px 4px 0 rgba(238,114,2,0.22);
  font-family: var(--px);
  font-size: 6px;
  color: #fff;
  letter-spacing: 0.8px;
  line-height: 1.9;
  white-space: normal;
  text-align: left;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.network-hotspot.is-open {
  z-index: 6;
}
.network-hotspot.is-open .network-hotspot-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}

/* Zoom-Steuerung + Hinweis: nur auf Mobile sichtbar (siehe Media-Query) */
.network-map-zoom {
  display: none;
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 8;
  flex-direction: column;
  gap: 6px;
}
.network-map-zoom-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--px);
  font-size: 16px;
  line-height: 1;
  color: #fff;
  background: rgba(5,16,29,0.92);
  border: 2px solid var(--orange);
  cursor: pointer;
}
.network-map-zoom-btn:active { background: var(--orange); color: #04101d; }
.network-map-hint {
  display: none;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 7;
  margin: 0;
  padding: 5px 10px;
  background: rgba(5,16,29,0.9);
  border: 2px solid var(--orange);
  font-family: var(--px);
  font-size: 7px;
  letter-spacing: 1px;
  white-space: nowrap;
  text-align: center;
  color: #fff;
  pointer-events: none;
  animation: networkHintPulse 2s ease-in-out 3;
}
@keyframes networkHintPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Zitatblock */
.quote-section { padding: 56px 80px; }
.quote-inner-content { max-width: 680px; margin: 0 auto; }
.quote-block {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 72px;
  text-align: center;
}
.quote-trash {
  position: absolute;
  width: 56px;
  height: 56px;
  object-fit: contain;
  opacity: 0.16;
  pointer-events: none;
  filter: drop-shadow(0 0 14px rgba(238,114,2,0.16));
}
.quote-trash.left {
  left: 0;
  top: 18px;
  transform: rotate(-12deg);
}
.quote-trash.right {
  right: 0;
  bottom: -10px;
  transform: rotate(10deg);
}
.quote-px-mark {
  font-family: var(--px);
  font-size: 48px;
  color: var(--orange);
  line-height: 0.8;
  margin-bottom: 20px;
  opacity: 0.5;
  text-shadow: 3px 3px 0 rgba(0,0,0,0.4);
}
.quote-text {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
  font-family: var(--sans);
}
.quote-attr {
  font-family: var(--px);
  font-size: 8px;
  color: var(--orange);
  letter-spacing: 1px;
  opacity: 0.7;
}

/* GAME RULES */
.rules-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}
/* Grid-Kinder duerfen unter ihre Inhaltsbreite schrumpfen, damit das Video
   (intrinsisch 640px) die Spalte auf schmalen Viewports nicht aufblaeht. */
.rules-layout > * { min-width: 0; }

/* Monitor-Gehäuse im Arcade-Bereich */
.rules-monitor {
  display: flex;
  flex-direction: column;
  align-self: start;
}
.monitor-shell {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #080f1c;
  border: 3px solid var(--orange);
  box-shadow: 8px 8px 0 rgba(238,114,2,0.3), 0 0 40px rgba(238,114,2,0.1);
  border-radius: 4px 4px 0 0;
  overflow: hidden;
  position: relative;
}
/* Scanline über Monitor */
.monitor-shell::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 3px,
    rgba(0,0,0,0.15) 3px,
    rgba(0,0,0,0.15) 4px
  );
  pointer-events: none;
  z-index: 2;
}
.monitor-topbar {
  background: linear-gradient(90deg, #0d1f35, #0a1828);
  padding: 8px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--orange);
  flex-shrink: 0;
}
.monitor-title {
  font-family: var(--px);
  font-size: 7px;
  color: var(--orange);
  letter-spacing: 2px;
  text-shadow: 0 0 8px rgba(238,114,2,0.7);
}
.monitor-led-strip {
  display: flex; gap: 5px; align-items: center;
}
.monitor-led {
  width: 6px; height: 6px; border-radius: 50%;
}
.monitor-led.r { background:#ff4444; animation: ledBlink 1.8s ease-in-out infinite; }
.monitor-led.g { background:#44ff88; animation: ledBlink 1.8s ease-in-out infinite 0.6s; }
.monitor-led.o { background:var(--orange); animation: ledBlink 1.8s ease-in-out infinite 1.2s; }

.monitor-screen {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.monitor-screen-link {
  display: block;
  width: 100%;
  height: 100%;
}
.monitor-screen img,
.monitor-screen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.monitor-base {
  background: linear-gradient(180deg, #0d1f35, #080f1c);
  border: 3px solid var(--orange);
  border-top: none;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0 0 4px 4px;
}
.monitor-base-text {
  font-family: var(--px);
  font-size: 6px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 1px;
}
.monitor-base-btns { display: flex; gap: 8px; }
.monitor-base-btn {
  width: 12px; height: 12px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.15);
}
.monitor-base-btn.ob { background: var(--orange); box-shadow: 0 0 4px rgba(238,114,2,0.6); }
.monitor-base-btn.bl { background: #1a6bbf; box-shadow: 0 0 4px rgba(26,107,191,0.6); }

.rules-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: space-between;
}
.rule-step {
  display: flex; gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.rule-step:last-child { border-bottom: none; }
.rule-num {
  font-family: var(--px);
  font-size: 20px;
  color: var(--orange);
  min-width: 32px;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.4);
  flex-shrink: 0;
  padding-top: 2px;
}
.rule-title {
  font-family: var(--px);
  font-size: 9px;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  line-height: 1.8;
}
.rule-text {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  font-family: var(--sans);
}

/* rnv SCOUT */
.scout-section {
  background: rgba(0,0,0,0.3);
  padding: 0;
  overflow: hidden;
}
.scout-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1100px;
  margin: 0 auto;
  min-height: 360px;
  align-items: stretch;
}
.scout-left {
  padding: 64px 56px 64px 80px;
  display: flex; flex-direction: column; justify-content: center;
}
.scout-eyebrow {
  font-family: var(--px);
  font-size: 8px;
  color: var(--orange);
  letter-spacing: 2px;
  margin-bottom: 18px;
  text-shadow: 0 0 8px rgba(238,114,2,0.5);
}
.scout-title {
  font-family: var(--px);
  font-size: clamp(11px, 1.4vw, 16px);
  color: #fff;
  line-height: 1.8;
  margin-bottom: 20px;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.4);
}
.scout-title em { color: var(--orange); font-style: normal; }
.scout-text {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 28px;
  font-family: var(--sans);
  max-width: 380px;
}
.scout-right {
  padding: 40px 80px 40px 40px;
  border-left: 3px solid rgba(238,114,2,0.25);
  display: flex; align-items: flex-start; flex-direction: column; justify-content: center;
  gap: 20px;
}
.scout-steps-heading {
  font-family: var(--px);
  font-size: 8px;
  color: var(--orange);
  letter-spacing: 2px;
  text-shadow: 0 0 8px rgba(238,114,2,0.5);
  margin: 0;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(238,114,2,0.2);
  width: 100%;
}
.scout-steps { display: flex; flex-direction: column; gap: 24px; width: 100%; }
.scout-step { display: flex; gap: 16px; align-items: flex-start; }
.scout-step-icon {
  width: 42px; height: 42px;
  border: 2px solid var(--orange);
  background: rgba(238,114,2,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
}
.scout-step-icon svg { width: 18px; height: 18px; }
.scout-step-title {
  font-family: var(--px);
  font-size: 8px;
  color: #fff;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
  line-height: 1.8;
}
.scout-step-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
  font-family: var(--sans);
}
.scout-app-hint {
  font-family: var(--px);
  font-size: 7px;
  color: rgba(255,255,255,0.55);
  margin-top: 8px;
  letter-spacing: 0.5px;
}
.scout-cta-wrap {
  display: flex;
  align-items: center;
  gap: 28px;
}
.scout-phone-wrap {
  flex-shrink: 0;
  opacity: 0.92;
  filter: drop-shadow(0 4px 18px rgba(238,114,2,0.25));
}
.scout-phone-img {
  width: 180px;
  height: auto;
  display: block;
}

/* Preise */
.prizes-section { background: rgba(0,0,0,0.2); }

/* PLATZ 1 — Bild groß, Info offen wie HUD */
.prize-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(238,114,2,0.15);
}
.prize-main-img-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.prize-main-img-wrap img {
  max-height: 400px;
  max-width: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 24px 40px rgba(0,0,0,0.55));
  animation: floatPrize2 3s ease-in-out infinite;
}
.prize-main-img-shadow {
  width: 120px; height: 14px;
  background: radial-gradient(ellipse at 50% 50%, rgba(238,114,2,0.4) 0%, transparent 70%);
  margin: 6px auto 0;
  animation: shadowPulse 3s ease-in-out infinite;
}
/* Hinweis unter dem Preisbild: aktuelle Abbildung ist ein Mockup */
.prize-main-img-note {
  margin-top: 8px;
  font-family: var(--sans);
  font-size: 11px;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  text-align: center;
  letter-spacing: 0.2px;
}

/* Info-Block: offen, kein geschlossener Container */
.prize-main-content {
  padding: 0;
  padding-top: 0;
  min-width: 0;
}
.prize-main-badge {
  display: block;
  font-family: var(--px);
  font-size: 8px;
  letter-spacing: 2px;
  color: var(--orange);
  text-shadow: 0 0 8px rgba(238,114,2,0.5);
  margin: 0 0 16px;
  padding: 0 0 6px;
  border-bottom: 1px solid rgba(238,114,2,0.2);
  width: 100%;
}
.prize-main-eyebrow {
  font-family: var(--px);
  font-size: 7px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.prize-main-title {
  font-family: var(--px);
  font-size: clamp(12px, 1.5vw, 16px);
  color: #fff;
  line-height: 1.6;
  letter-spacing: 1px;
  margin-bottom: 28px;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.5), 0 0 20px rgba(238,114,2,0.2);
}
.prize-main-perks {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}
/* Jeder Perk wie eine HUD-Zeile — Border-Bottom Trenner */
.prize-perk {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
  min-width: 0;
}
.prize-perk:last-child { border-bottom: none; }
.prize-perk-icon {
  font-family: var(--px);
  font-size: 11px;
  line-height: 1;
  color: var(--orange);
  text-shadow: 2px 2px 0 rgba(0,0,0,0.45);
  flex-shrink: 0;
  width: 18px;
  text-align: center;
}

/* PLATZ 2 – 10 — gleichgewichtig, Socken präsent */
.prize-secondary {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 32px;
}
.prize-secondary-img-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.prize-secondary-img-wrap img {
  max-height: 220px;
  max-width: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 16px 28px rgba(0,0,0,0.6));
  animation: floatPrize 3.4s ease-in-out infinite 0.3s;
}
.prize-img-shadow {
  width: 90px; height: 10px;
  background: radial-gradient(ellipse at 50% 50%, rgba(238,114,2,0.4) 0%, transparent 70%);
  margin: 6px auto 0;
  animation: shadowPulse 3.4s ease-in-out infinite 0.3s;
}
.prize-secondary-content {
  border-top: 3px solid rgba(140,160,178,0.7);
  padding-top: 20px;
}
.prize-secondary-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--px);
  font-size: 7px;
  letter-spacing: 1.5px;
  color: rgba(140,160,178,1);
  margin-bottom: 14px;
}
.prize-place {
  font-family: var(--px);
  font-size: 7px;
  color: var(--orange);
  letter-spacing: 1px;
  margin-bottom: 6px;
  opacity: 0.8;
}
.prize-name {
  font-family: var(--px);
  font-size: 8px;
  color: #fff;
  line-height: 1.9;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.prize-secondary-content .prize-name {
  font-size: clamp(9px, 1.1vw, 12px);
  line-height: 1.8;
}
.prize-secondary-note {
  font-family: var(--sans);
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 960px) {
  .prize-main {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: center;
  }
  .prize-main-content {
    border-top: none;
    border-left: 3px solid var(--orange);
    padding-top: 0;
    padding-left: 20px;
  }
  .prize-secondary { grid-template-columns: 160px 1fr; gap: 24px; }
  /* Netzplan auf Mobile: scroll- und zoombarer Viewport (wie eine Karten-App) */
  .network-map-shell {
    aspect-ratio: unset;
    --map-h: clamp(300px, 62vh, 460px);
    height: var(--map-h);
  }
  .network-map-viewport {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y;
    cursor: grab;
    scrollbar-width: none;
  }
  .network-map-viewport::-webkit-scrollbar { display: none; }
  /* Karte fuellt die Hoehe, laeuft in der Breite ueber -> horizontal pannen */
  .network-map-canvas {
    height: calc(var(--map-h) * var(--map-zoom, 1));
    width: calc(var(--map-h) * var(--map-zoom, 1) * 16 / 9);
    margin: 0;
  }
  .network-hotspot { min-width: 34px; }
  .network-map-zoom { display: flex; }
  .network-map-hint { display: block; }
}
.countdown-panel {
  padding: 12px 0 30px;
  margin-bottom: 36px;
}
.countdown-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.countdown-title {
  display: block;
  font-family: var(--px);
  font-size: clamp(12px, 1.8vw, 18px);
  color: var(--orange2);
  letter-spacing: 2px;
  line-height: 1.4;
  text-shadow: 3px 3px 0 rgba(0,0,0,0.28);
}
.countdown-date {
  font-family: var(--px);
  font-size: clamp(7px, 1vw, 9px);
  color: rgba(255,255,255,0.72);
  letter-spacing: 1.2px;
}
.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.countdown-unit {
  min-width: 0;
  padding: 12px 0;
  text-align: center;
}
.countdown-value {
  display: block;
  font-family: var(--px);
  font-size: clamp(22px, 3.8vw, 38px);
  color: #fff;
  text-shadow: 4px 4px 0 rgba(238,114,2,0.72), 0 0 18px rgba(238,114,2,0.14);
  margin-bottom: 12px;
  white-space: nowrap;
}
.countdown-text {
  font-family: var(--px);
  font-size: clamp(6px, 0.9vw, 8px);
  color: rgba(255,255,255,0.7);
  letter-spacing: 1.4px;
}
.countdown-panel.is-ended .countdown-value {
  color: #9fe870;
  text-shadow: 3px 3px 0 rgba(88,168,74,0.45);
}
/* Nach Ablauf: Zahlen + Labels ausblenden, "Aktion Beendet"-Text einblenden */
.countdown-panel.is-ended .countdown-grid {
  display: none;
}
.countdown-panel.is-ended .countdown-ended-msg {
  display: block;
}
.countdown-ended-msg {
  display: none;
  font-family: var(--px);
  font-size: clamp(14px, 2.2vw, 22px);
  color: #9fe870;
  text-shadow: 3px 3px 0 rgba(88,168,74,0.45);
  letter-spacing: 2px;
  text-align: center;
  padding: 12px 0 4px;
}
.prize-legal-note {
  max-width: 760px;
  margin: 8px 0 0;
  padding-left: 12px;
}
.prize-legal-note p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  font-family: var(--sans);
  text-align: left;
}
.prize-legal-link {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s ease;
}
.prize-legal-link:hover {
  color: var(--orange);
}
.highscore-section { padding-top: 0; padding-bottom: 0; }

.highscore-stage {
  position: relative;
  display: grid;
  gap: 22px;
  justify-items: center;
}
.highscore-stage::before,
.highscore-stage::after {
  content: none;
  display: none;
}

.highscore-header {
  padding: 0;
  position: relative; z-index: 4;
  display: flex; flex-direction: column; gap: 10px;
  align-items: center;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.highscore-title {
  font-family: var(--px);
  font-size: clamp(13px, 2vw, 22px);
  color: #fff; line-height: 1.52; letter-spacing: 1px;
  text-shadow: 3px 3px 0 #000; margin-bottom: 4px;
}
.highscore-title em { color: var(--orange); font-style: normal; }
.js .highscore-board.hs2-ready::before {
  opacity: 0;
  transform: scaleY(0.12);
  transform-origin: top center;
}
.js .highscore-board.hs2-ready:not(.is-built) .hs2-title,
.js .highscore-board.hs2-ready:not(.is-built) .hs2-head span,
.js .highscore-board.hs2-ready:not(.is-built) .hs2-row span {
  opacity: 0;
  transform: translateY(8px);
  filter: blur(1.5px);
  clip-path: inset(0 100% 0 0);
}
.highscore-board.is-built::before {
  animation: hs2-shell-boot 520ms steps(6, end) forwards;
}
.highscore-board.is-built::after {
  animation: hs2-scan-pass 900ms steps(10, end) 120ms forwards;
}
.highscore-board.is-built .hs2-title {
  animation: hs2-title-boot 320ms steps(5, end) 60ms forwards,
             hs2-title-glow 900ms steps(2, end) 60ms 1;
  animation-fill-mode: both, both;
}
.highscore-board.is-built .hs2-head span,
.highscore-board.is-built .hs2-row span {
  animation: hs2-cell-boot 360ms steps(5, end) forwards;
  animation-delay: calc(var(--hs-row-delay, 0ms) + var(--hs-col-delay, 0ms));
  animation-fill-mode: both;
}
.hs2-head { --hs-row-delay: 180ms; }
.hs2-row.r1  { --hs-row-delay: 340ms; }
.hs2-row.r2  { --hs-row-delay: 480ms; }
.hs2-row.r3  { --hs-row-delay: 620ms; }
.hs2-row.r4  { --hs-row-delay: 760ms; }
.hs2-row.r5  { --hs-row-delay: 900ms; }
.hs2-row.r6  { --hs-row-delay: 1040ms; }
.hs2-row.r7  { --hs-row-delay: 1180ms; }
.hs2-row.r8  { --hs-row-delay: 1320ms; }
.hs2-row.r9  { --hs-row-delay: 1460ms; }
.hs2-row.r10 { --hs-row-delay: 1600ms; }
.hs2-head span:nth-child(1),
.hs2-row span:nth-child(1) { --hs-col-delay: 0ms; }
.hs2-head span:nth-child(2),
.hs2-row span:nth-child(2) { --hs-col-delay: 40ms; }
.hs2-head span:nth-child(3),
.hs2-row span:nth-child(3) { --hs-col-delay: 80ms; }
.hs2-head span:nth-child(4),
.hs2-row span:nth-child(4) { --hs-col-delay: 120ms; }
.hs2-head span:nth-child(5),
.hs2-row span:nth-child(5) { --hs-col-delay: 160ms; }

.highscore-lead {
  font-size: 15px; color: rgba(255,255,255,0.6);
  line-height: 1.72; font-family: var(--sans);
  max-width: 62ch; margin: 0 auto 6px;
}

/* Highscore-Bühne */
.highscore-board {
  padding: 20px 30px 26px;
  position: relative; z-index: 4;
  isolation: isolate;
}
.highscore-board::before,
.highscore-board::after {
  content: '';
  position: absolute;
  pointer-events: none;
}
.highscore-board::before {
  inset: 8px 12px 12px;
  border: 2px solid rgba(238,114,2,0.18);
  background:
    linear-gradient(180deg, rgba(238,114,2,0.12), rgba(238,114,2,0.03) 18%, transparent 48%),
    repeating-linear-gradient(
      to right,
      rgba(238,114,2,0.08) 0 6px,
      transparent 6px 12px
    );
  box-shadow:
    inset 0 0 0 2px rgba(0,0,0,0.45),
    inset 0 0 18px rgba(238,114,2,0.08);
  opacity: 1;
}
.highscore-board::after {
  left: 16px; right: 16px; top: 18px; height: 3px;
  background: linear-gradient(90deg, transparent 0, rgba(238,114,2,0.8) 20%, #fff1b8 50%, rgba(238,114,2,0.8) 80%, transparent 100%);
  box-shadow: 0 0 14px rgba(238,114,2,0.55);
  opacity: 0;
}

/* Board-Titel */
.hs2-title {
  font-family: var(--px);
  font-size: clamp(10px, 1.4vw, 14px);
  color: var(--orange); text-align: center;
  letter-spacing: 3px;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.9), 0 0 18px rgba(238,114,2,0.4);
  padding-bottom: 14px;
  margin-bottom: 4px;
  border-bottom: 2px solid rgba(238,114,2,0.28);
}

/* Live-Indikator: absolut oben rechts im Board */
.hs2-live-bar {
  position: absolute;
  top: 14px; right: 18px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--px);
  font-size: 8px;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.35);
  transition: color 0.4s ease;
  z-index: 5;
  white-space: nowrap;
}
.hs2-live-bar.is-live {
  color: rgba(255,255,255,0.7);
}
.hs2-live-bar.is-offline {
  color: rgba(255,255,255,0.2);
  filter: grayscale(1);
}

/* Der pulsierende Punkt */
.hs2-live-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(120,120,120,0.35);
  flex-shrink: 0;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.hs2-live-bar.is-live .hs2-live-dot {
  background: #4ccd6b;
  box-shadow: 0 0 6px rgba(76,205,107,0.7);
  animation: live-pulse 1.8s ease-in-out infinite;
}
.hs2-live-bar.is-offline .hs2-live-dot {
  background: rgba(90,90,90,0.3);
  box-shadow: none;
  animation: none;
}
@keyframes live-pulse {
  0%, 100% { opacity: 1;    box-shadow: 0 0 5px rgba(76,205,107,0.7); }
  50%       { opacity: 0.35; box-shadow: 0 0 12px rgba(76,205,107,0.2); }
}
.hs2-live-label {
  letter-spacing: 2px;
}
.hs2-live-bar.is-live .hs2-live-label {
  color: #4ccd6b;
  text-shadow: 0 0 8px rgba(76,205,107,0.5);
}

/* Trennstrich */
.hs2-participant-count::before {
  content: '/';
  margin-right: 4px;
  opacity: 0.35;
}
.hs2-participant-count {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
}
.hs2-participant-num {
  color: var(--orange);
  text-shadow: 0 0 8px rgba(238,114,2,0.5);
  letter-spacing: 1px;
}

/* Refresh-Button neben LIVE-Indikator */
.hs2-refresh-btn {
  background: none;
  border: none;
  padding: 0 0 0 6px;
  cursor: pointer;
  color: rgba(255,255,255,0.35);
  display: inline-flex;
  align-items: center;
  transition: color 0.2s ease, transform 0.2s ease;
  line-height: 1;
}
.hs2-live-bar.is-live .hs2-refresh-btn {
  color: rgba(76,205,107,0.6);
}
.hs2-refresh-btn:hover {
  color: #4ccd6b;
  transform: rotate(30deg);
}
.hs2-refresh-btn:disabled {
  cursor: default;
  opacity: 0.3;
}
.hs2-refresh-icon {
  width: 12px;
  height: 12px;
  display: block;
}
.hs2-refresh-btn.is-spinning .hs2-refresh-icon {
  animation: hs2-spin 0.7s linear infinite;
}
@keyframes hs2-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.hs2-live-bar.is-offline .hs2-participant-num {
  color: rgba(255,255,255,0.18);
  text-shadow: none;
}
.hs2-participant-text {
  font-size: 7px;
  letter-spacing: 1.5px;
  opacity: 0.55;
}

/* Mobile: Live-Bar */
@media (max-width: 480px) {
  .hs2-live-bar {
    top: 10px; right: 12px;
    font-size: 7px;
  }
}

/* Highscore-Tabelle (CSS Grid, Zeilen via display: contents) */
.hs2-table {
  display: grid;
  grid-template-columns: 38px 96px 130px 1fr 82px;
  align-items: center;
}
.highscore-board.is-dynamic .hs2-table {
  grid-template-columns: 38px minmax(0, 1fr) 90px 72px;
}

/* Tabellenkopf */
.hs2-head { display: contents; }
.hs2-head span {
  font-family: var(--px); font-size: 7px;
  color: rgba(238,180,55,0.7);
  letter-spacing: 1.5px; padding: 10px 8px 10px 0;
  border-bottom: 2px solid rgba(238,114,2,0.32);
}

/* Tabellenzeilen */
.hs2-row { display: contents; }
.hs2-row span {
  font-family: var(--px); font-size: 9px;
  color: rgba(255,255,255,0.88);
  padding: 11px 8px 11px 0;
  line-height: 1;
}
/* Platz 1: vollständig orange hervorgehoben */
.hs2-row.r1 span {
  color: var(--orange); font-size: 10px;
  text-shadow: 0 0 12px rgba(238,114,2,0.35);
}

/* Plätze 4 und 5: bewusst zurückgenommen */
.hs2-row.r4 span,
.hs2-row.r5 span,
.hs2-row.r6 span,
.hs2-row.r7 span,
.hs2-row.r8 span,
.hs2-row.r9 span,
.hs2-row.r10 span { color: rgba(255,255,255,0.5); font-size: 8px; }

/* Spaltenspezifische Regeln */
.hs2-c-rank { text-align: center; padding-left: 0 !important; }
.hs2-c-score {
  text-align: right; padding-right: 20px !important;
  letter-spacing: 1px; font-variant-numeric: tabular-nums;
}
.highscore-board.is-dynamic .hs2-c-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 14px !important;
}
.highscore-board.is-dynamic .hs2-c-score {
  padding-right: 0 !important;
}
.hs2-c-dept {
  font-size: 7px !important;
  color: rgba(255,255,255,0.38) !important;
  letter-spacing: 0.3px;
}
.hs2-row.r1 .hs2-c-dept {
  color: rgba(238,114,2,0.55) !important;
  font-size: 7px !important;
}
.hs2-c-diff { text-align: right; padding-right: 0 !important; }

/* Blinkpunkt für Platz 1 */
.hs2-row.r1 .hs2-c-rank {
  position: relative;
}
.hs2-row.r1 .hs2-c-rank::after {
  content: '▶';
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 7px; color: var(--orange);
  animation: hs2-blink 0.85s steps(1) infinite;
}

/* Board-Footer */
.hs2-footer {
  font-family: var(--px); font-size: 7px;
  color: rgba(255,255,255,0.28); letter-spacing: 2px;
  text-align: center;
  padding: 14px 0 2px; margin-top: 6px;
  border-top: 1px dashed rgba(238,114,2,0.18);
}

/* Teilen-Leiste */
.highscore-sharebar {
  display: flex; align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  padding: 4px 0 0;
  margin: 0 auto;
  background: none;
  border: 0;
  box-shadow: none;
  position: relative; z-index: 4;
}
.highscore-stage::before,
.highscore-board::before {
  content: none;
  display: none;
}
.highscore-sharebar {
  border-top: 0;
}
.highscore-sharebar-label {
  font-family: var(--px); font-size: clamp(9px, 1vw, 11px);
  color: var(--orange); letter-spacing: 1.5px;
  white-space: nowrap;
  text-align: center;
}
.highscore-share-feedback {
  font-family: var(--px); font-size: 7px;
  color: var(--orange); letter-spacing: 1px;
  opacity: 0; transform: translateY(4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  width: 100%;
  text-align: center;
}
.highscore-share-feedback.show { opacity: 1; transform: translateY(0); }
/* CTA unter der Box */
.highscore-cta {
  margin-top: 52px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.highscore-cta-question {
  font-family: var(--px);
  font-size: clamp(14px, 2vw, 26px);
  color: #fff;
  line-height: 1.65;
  letter-spacing: 1px;
  text-shadow: 3px 3px 0 rgba(0,0,0,0.4);
}
.highscore-cta-question em {
  color: var(--orange);
  font-style: normal;
}
.highscore-cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  font-family: var(--sans);
  max-width: 520px;
}
.highscore-cta-btn {
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  padding: 16px 28px;
}

.share-section { padding-top: 0; }
.share-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 28px;
  align-items: center;
  padding: 28px 32px;
  background:
    radial-gradient(circle at top right, rgba(238,114,2,0.18), transparent 36%),
    rgba(0,25,50,0.82);
}
.share-kicker {
  font-family: var(--px);
  font-size: 8px;
  color: var(--orange);
  letter-spacing: 2px;
  margin-bottom: 18px;
  text-shadow: 0 0 8px rgba(238,114,2,0.4);
}
.share-section .section-lead {
  margin-bottom: 0;
  max-width: 560px;
}
.share-actions {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.share-chip-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.share-chip-row span {
  font-family: var(--px);
  font-size: 6px;
  color: rgba(255,255,255,0.62);
  letter-spacing: 1px;
  border: 2px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  padding: 8px 10px;
}
.share-button-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.share-feedback {
  min-height: 18px;
  font-family: var(--px);
  font-size: 7px;
  color: var(--orange);
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.share-feedback.show {
  opacity: 1;
  transform: translateY(0);
}

/* FAQ */
.faq-section { background: rgba(0,0,0,0.15); }
.faq-list {
  max-width: 800px;
  border: 3px solid var(--orange);
  box-shadow: 6px 6px 0 rgba(238,114,2,0.2);
  overflow: hidden;
}
.faq-item { border-bottom: 2px solid rgba(238,114,2,0.25); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%; text-align: left;
  padding: 18px 22px 18px 16px;
  background: rgba(0,12,30,0.7);
  border: none; cursor: pointer;
  display: flex; align-items: center;
  justify-content: flex-start; gap: 12px;
  font-family: var(--px);
  font-size: 9px; color: #fff;
  transition: background 0.15s;
  letter-spacing: 0.4px;
  line-height: 1.8;
}
.faq-question:hover { background: rgba(238,114,2,0.12); }
.faq-question.open { background: rgba(238,114,2,0.15); color: var(--orange); }
.faq-chevron {
  width: 18px; height: 18px; flex-shrink: 0;
  margin-left: auto;
  transition: transform 0.25s;
  color: var(--orange);
}
.faq-question.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  padding: 0 22px;
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
  font-size: 14px; color: rgba(255,255,255,0.65);
  line-height: 1.75;
  font-family: var(--sans);
  background: rgba(0,6,18,0.5);
}
.faq-answer.open { max-height: 720px; padding: 16px 22px 20px; }

/* CTA BANNER */
.cta-section {
  padding: 72px 80px;
  text-align: center;
  background: rgba(238,114,2,0.08);
  border-top: 3px solid rgba(238,114,2,0.3);
}
.cta-section .px-title { margin-bottom: 14px; }
.cta-section .section-lead { margin: 0 auto 36px; text-align: center; }

/* FOOTER */
.rnv-footer {
  background-color: #E5E9ED;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px;
}
.rnv-footer-overlay {
  text-align: center;
  background-color: #E5E9ED;
  padding: 10px 20px;
}
.rnv-footer-overlay p {
  margin: 10px 0;
  color: #00254C;
  font-family: var(--sans);
  font-size: 14px;
}
.rnv-footer-overlay a {
  margin: 0 10px;
  color: #00254C;
  text-decoration: underline;
  font-weight: bold;
  font-family: var(--sans);
  font-size: 14px;
  transition: color 0.15s;
}
.rnv-footer-overlay button {
  margin: 0 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #00254C;
  text-decoration: underline;
  font-weight: bold;
  font-family: var(--sans);
  font-size: 14px;
  cursor: pointer;
  transition: color 0.15s;
}
.rnv-footer-overlay a:hover { color: var(--orange); }
.rnv-footer-overlay button:hover { color: var(--orange); }
.rnv-footer-balken {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 10px;
}
.rnv-footer-disclaimer {
  font-size: 10px;
  color: rgba(255,255,255,0.45);
  text-align: center;
  max-width: 640px;
  margin: 12px auto 0;
  line-height: 1.6;
  padding: 0 16px;
}

.mission-bar-wrap {
  width: 100%;
  max-width: 560px;
  margin: 36px auto 0;
}
.mission-bar-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}
.mission-bar-title {
  font-family: var(--px);
  font-size: clamp(7px, 1.5vw, 9px);
  color: var(--orange);
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(238,114,2,0.4);
}
.mission-bar-pct {
  font-family: var(--px);
  font-size: clamp(14px, 2.8vw, 20px);
  color: #fff;
  text-shadow: 3px 3px 0 var(--orange2);
}
.mission-bar-track {
  width: 100%;
  height: 22px;
  border: 3px solid var(--orange);
  background: rgba(0,0,0,0.5);
  overflow: hidden;
  box-shadow: 5px 5px 0 rgba(0,0,0,0.45);
  position: relative;
}
.mission-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--orange2);
  transition: width 1.8s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}
.mission-bar-sub {
  font-family: var(--px);
  font-size: clamp(7px, 1.4vw, 8px);
  color: rgba(255,255,255,0.55);
  text-align: center;
  margin-top: 16px;
  letter-spacing: 1px;
  line-height: 1.8;
}

/* rnv Reinigungsleistung – Fakten-Sektion vor dem Scout-Bereich */

.rnv-tut-section {
  background: rgba(0, 0, 0, 0.28);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 64px 80px;
}
.rnv-tut-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 52px;
}

/* Eyebrows */
.rnv-tut-eyebrow {
  display: block;
  font-family: var(--px);
  font-size: 7px;
  color: var(--orange);
  letter-spacing: 2px;
  margin-bottom: 14px;
  text-shadow: 0 0 10px rgba(238, 114, 2, 0.4);
}

/* Kennzahlen-Raster: vier Fakten zur rnv-Reinigungsarbeit */
.rnv-tut-title {
  font-family: var(--px);
  font-size: clamp(12px, 1.5vw, 18px);
  color: #fff;
  line-height: 1.7;
  letter-spacing: 1px;
  margin-bottom: 32px;
}
.rnv-tut-title em { color: var(--orange); font-style: normal; }

.rnv-tut-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}
.rnv-tut-fact {
  background: rgba(0, 12, 30, 0.75);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-top: 3px solid var(--orange);
  padding: 22px 18px 20px;
  text-align: center;
  transition: border-color 0.2s, transform 0.15s;
}
.rnv-tut-fact:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
}
.rnv-tut-fact-num {
  font-family: var(--px);
  font-size: clamp(18px, 2.4vw, 30px);
  color: #fff;
  text-shadow: 2px 2px 0 var(--orange);
  line-height: 1;
  margin-bottom: 5px;
}
.rnv-tut-fact-unit {
  font-family: var(--px);
  font-size: 7px;
  color: var(--orange);
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.rnv-tut-fact-label {
  font-family: var(--sans);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}
.rnv-tut-source {
  font-family: var(--sans);
  font-size: 11px;
  color: rgba(255,255,255,0.55);
}
.rnv-tut-link {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s;
}
.rnv-tut-link:hover { color: #ffb066; }

/* AGENTEN-KAMPAGNE: Dossier-Optik, Funkverkehr-FAQ */

/* Dossier: Aktenreiter + Stempel */
.dossier-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  user-select: none;
}
.dossier-tab {
  display: inline-block;
  font-family: var(--px);
  font-size: 9px;
  letter-spacing: 1px;
  color: var(--blue);
  background: var(--orange);
  padding: 8px 14px 7px;
  border: 2px solid var(--orange);
  box-shadow: 4px 4px 0 rgba(0,0,0,0.45);
  position: relative;
}
.dossier-tab::after {
  /* abgeschnittene Reiter-Ecke wie bei einer Hängeregister-Mappe */
  content: "";
  position: absolute;
  right: -12px; top: -2px;
  border-top: 2px solid var(--orange);
  border-left: 10px solid var(--orange);
  border-bottom: 31px solid transparent;
}
.dossier-stamp {
  display: inline-block;
  font-family: var(--px);
  font-size: 10px;
  letter-spacing: 2px;
  color: #e23b3b;
  border: 3px double #e23b3b;
  padding: 8px 12px;
  transform: rotate(-7deg);
  opacity: 0.85;
  text-shadow: 0 0 1px rgba(226,59,59,0.4);
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='4' height='4'><rect width='4' height='4' fill='white' opacity='0.92'/><rect x='1' y='2' width='1' height='1' fill='white' opacity='0.4'/></svg>");
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='4' height='4'><rect width='4' height='4' fill='white' opacity='0.92'/><rect x='1' y='2' width='1' height='1' fill='white' opacity='0.4'/></svg>");
}
.dossier-stamp--alt { color: var(--orange); border-color: var(--orange); transform: rotate(5deg); }
@media (max-width: 640px) {
  .dossier-head { flex-direction: column; gap: 14px; }
  .dossier-stamp { align-self: flex-end; }
}

/* FAQ als Funkverkehr */
.faq-question::before {
  content: "";
  font-size: 12px;
}
.faq-answer::before {
  content: "» rnv HQ ANTWORTET:";
  display: block;
  font-family: var(--px);
  font-size: 8px;
  letter-spacing: 1px;
  color: var(--orange);
  margin: 14px 0 8px;
}

/* ── Ausstatter-Box: Stadtkinder (Gewinnspiel-Sektion) ──
   Optik kommt vom Hausstil .px-box (oranger Balken OBEN, kein Schatten) —
   hier nur Abstände/Typografie. Volle Inhaltsbreite wie die Preis-Blöcke. */
.partner-box {
  margin: 38px 0 10px;
  padding: 22px 24px 24px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 32px;
}
.partner-content { flex: 1; min-width: 0; }
.partner-logo {
  flex: 0 0 auto;
  width: 124px;
  height: auto;
  opacity: 0.92;
}
@media (max-width: 640px) {
  .partner-box { flex-direction: column-reverse; gap: 18px; }
  .partner-logo { width: 96px; }
}
.partner-kicker {
  font-family: var(--px);
  font-size: 8px;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 12px;
}
.partner-title {
  font-family: var(--px);
  font-size: 13px;
  color: #fff;
  line-height: 1.8;
  margin-bottom: 12px;
}
.partner-title-sub { color: rgba(255,255,255,0.55); font-size: 9px; }
.partner-text {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
  margin: 0 0 14px;
  max-width: 720px;
}
.partner-text strong { color: #fff; }
.partner-link {
  font-family: var(--px);
  font-size: 9px;
  letter-spacing: 1px;
  color: var(--orange);
  text-decoration: none;
  border-bottom: 2px solid rgba(238,114,2,0.45);
  padding-bottom: 3px;
  transition: border-color 0.15s;
}
.partner-link:hover, .partner-link:focus-visible { border-color: var(--orange); }
@media (max-width: 640px) {
  .partner-box { padding: 18px 16px 20px; margin-top: 30px; }
  .partner-title-sub { display: block; margin-top: 6px; }
}

/* ─── FÖRDERHINWEIS / UPPER ──────────────────────────────────────
   Dezente "Gefördert durch"-Leiste vor dem Footer. Weißes Logo auf
   dem dunkelblauen Seitenhintergrund (var(--blue)). */
.foerderer-section {
  padding: 30px 20px 44px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.foerderer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.foerderer-kicker {
  font-family: var(--px);
  font-size: 8px;
  letter-spacing: 2px;
  color: var(--orange);
}
.foerderer-logo {
  width: 168px;
  height: auto;
  opacity: 0.92;
  transition: opacity 0.15s;
}
.foerderer-logo:hover { opacity: 1; }
@media (max-width: 640px) {
  .foerderer-section { padding: 22px 16px 34px; }
  .foerderer-logo { width: 132px; }
}

/* rnv-CD: Graues Eck-Dreieck unten rechts (ersetzt den frueheren Pixeluebergang).
   Footer-Grau, schmale Spitze unten links. Steigung = rnv-CD-Winkel des
   Footer-Balkens (Run:Rise = 6.25:14, also ~66 Grad zur Waagerechten). */
.rnv-corner-flag {
  position: absolute;
  right: 0;
  bottom: 0;
  height: clamp(120px, 14vw, 185px);
  aspect-ratio: 6.25 / 14;      /* steile rnv-CD-Schraege, abgeleitet vom Logo-Faehnchen */
  background: #E5E9ED;          /* identisch zum Footer-Grau */
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
  pointer-events: none;
  z-index: 2;
}
@media (max-width: 640px) {
  .rnv-corner-flag { height: 34vw; }
}

/* BENCHMARK-KONSOLE (zu schlagender rnv-Wert) */
.benchmark-console {
  position: relative;
  width: min(100%, 500px);
  margin: 0 auto;
  filter: drop-shadow(0 26px 34px rgba(0,0,0,0.38));
}
.benchmark-console-art {
  display: block;
  width: 100%;
  height: auto;
}
.benchmark-console-screen {
  position: absolute;
  left: 4.3%;
  top: 3.05%;
  width: 91.35%;
  height: 65.86%;
  border-radius: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 14%, rgba(40,76,140,0.18), transparent 42%),
    linear-gradient(180deg, rgba(3,8,18,0.95), rgba(1,3,10,0.99));
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.03),
    inset 0 18px 42px rgba(14,18,35,0.28);
}
.benchmark-console-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.015) 0 2px,
    rgba(0,0,0,0.22) 2px 4px
  );
  opacity: 0.5;
  pointer-events: none;
}
.benchmark-console-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), transparent 20%, transparent 72%, rgba(0,0,0,0.26)),
    radial-gradient(circle at 50% 120%, rgba(238,114,2,0.1), transparent 34%);
  pointer-events: none;
}
.benchmark-console-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 5vw, 38px) clamp(18px, 5.4vw, 42px);
}
.benchmark-board {
  text-align: center;
  width: 100%;
  max-width: 420px;
  margin: 0;
  display: grid;
  gap: clamp(12px, 2vw, 18px);
}
.benchmark-kicker {
  font-family: var(--px);
  font-size: clamp(6px, 0.95vw, 8px);
  letter-spacing: 2px;
  color: var(--orange);
  margin: 0;
}
.benchmark-score {
  font-family: var(--px);
  font-size: clamp(38px, 10vw, 68px);
  line-height: 0.94;
  color: #fff;
  text-shadow:
    0 0 18px rgba(238,114,2,0.42),
    4px 4px 0 rgba(0,0,0,0.56);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(6px, 1.2vw, 12px);
  flex-wrap: wrap;
}
.benchmark-score.is-fresh {
  animation: benchmark-score-fresh 1150ms steps(2, end) 1;
}
.benchmark-unit {
  font-size: clamp(10px, 2.2vw, 18px);
  color: var(--orange);
  letter-spacing: 1px;
  transform: translateY(-0.12em);
}
.benchmark-desc {
  margin: 0 auto;
  max-width: 29ch;
  font-size: clamp(13px, 1.8vw, 16px);
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
}
@keyframes benchmark-score-fresh {
  0%, 14%, 28%, 42%, 56%, 70%, 100% {
    opacity: 1;
    filter: none;
    transform: scale(1);
    text-shadow:
      0 0 20px rgba(238,114,2,0.48),
      4px 4px 0 rgba(0,0,0,0.56);
  }
  7%, 21%, 35%, 49%, 63% {
    opacity: 0.22;
    filter: blur(0.5px);
    transform: scale(0.985);
    text-shadow: none;
  }
  82% {
    opacity: 1;
    filter: none;
    transform: scale(1.03);
  }
}
@media (max-width: 640px) {
  .benchmark-console {
    width: min(100%, 380px);
  }
  .benchmark-console-screen {
    border-radius: 14px;
  }
  .benchmark-console-inner {
    padding: 18px 20px 22px;
  }
  .benchmark-kicker {
    letter-spacing: 1.5px;
  }
  .benchmark-score { font-size: clamp(34px, 12.5vw, 52px); }
  .benchmark-desc {
    max-width: 24ch;
    font-size: 13px;
  }
}
