/* =================================================================
   TIROL TV · KI-Sondersendung · Komplettes Fake-Broadcast-Styling
   Ein Fernsehabend mit Kanal-Zapping, Werbepausen, Wetterbericht,
   Sportnachrichten und Selbstironie.
   ================================================================= */

:root {
  /* Broadcast base */
  --tv-bg: #05050A;
  --tv-panel: #0F0F16;
  --tv-panel-2: #1A1A24;
  --tv-text: #F5F5EB;
  --tv-text-dim: #A8A8B2;

  /* TIROL-TV brand */
  --tv-red: #E11D48;
  --tv-red-deep: #991B1B;
  --tv-gold: #F5B82E;
  --tv-white: #FFFFFF;

  /* Channel accents */
  --tv-blue: #2563EB;
  --tv-green: #16A34A;
  --tv-purple: #9333EA;
  --tv-orange: #F97316;
  --tv-magenta: #DB2777;

  /* Programm-tiefdunkel */
  --tv-studio: #0B1220;

  --font-display: 'Anton', 'Barlow Condensed', sans-serif;
  --font-cond: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --font-head: 'Playfair Display', serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  height: 100%;
  background: var(--tv-bg);
  color: var(--tv-text);
  font-family: var(--font-body);
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}

body {
  background:
    radial-gradient(ellipse at center, #14141F 0%, #05050A 80%);
}

button { font: inherit; }

/* =================================================================
   CRT-Vibe Overlays (sehr dezent — nicht kitschig)
   ================================================================= */

.crt-scanlines {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 300;
  background: repeating-linear-gradient(
    180deg,
    rgba(0,0,0,0) 0px,
    rgba(0,0,0,0) 2px,
    rgba(0,0,0,0.06) 3px,
    rgba(0,0,0,0) 4px
  );
  mix-blend-mode: multiply;
  opacity: 0.65;
}

.crt-vignette {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 299;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,0.55) 100%);
}

.crt-flicker {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 301;
  background: rgba(255,255,255,0.02);
  animation: flick 0.2s steps(6) infinite;
  mix-blend-mode: overlay;
}
@keyframes flick { 50% { opacity: 0.5; } }

/* =================================================================
   STATION ID (top-right corner — TIROL TV logo)
   ================================================================= */

.station-id {
  position: fixed;
  top: 58px; right: 32px;
  z-index: 180;
  display: flex; flex-direction: column; align-items: flex-end; gap: 6px;
  pointer-events: none;
}
.sid-main { display: flex; align-items: center; gap: 12px; }
.sid-presented {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  padding: 4px 10px;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 3px;
}
.sid-spk-logo {
  height: 18px; width: auto;
  filter: brightness(1.1);
}
.sid-logo {
  font-family: var(--font-display);
  font-size: 42px;
  letter-spacing: 0.02em;
  display: flex; align-items: baseline; gap: 0;
  line-height: 1;
  color: var(--tv-white);
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.sid-logo span { display: inline-block; padding: 2px 1px; }
.sid-t { color: var(--tv-red); background: var(--tv-white); padding: 2px 6px; font-weight: 700; }
.sid-i { color: var(--tv-white); background: var(--tv-red); padding: 2px 6px; }
.sid-r { color: var(--tv-red); background: var(--tv-white); padding: 2px 6px; }
.sid-o { color: var(--tv-white); background: var(--tv-red); padding: 2px 6px; }
.sid-l { color: var(--tv-red); background: var(--tv-white); padding: 2px 6px; }
.sid-tv {
  margin-left: 6px;
  color: var(--tv-gold);
  font-size: 28px;
  font-style: italic;
  text-shadow: 0 0 14px rgba(245,184,46,0.6);
}
.sid-live {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--tv-red);
  background: rgba(225,29,72,0.1);
  border: 1px solid var(--tv-red);
  padding: 4px 10px;
  border-radius: 2px;
  display: flex; align-items: center; gap: 6px;
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--tv-red);
  box-shadow: 0 0 12px var(--tv-red);
  animation: livePulse 1.4s ease-in-out infinite;
}
@keyframes livePulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.25); }
}

/* =================================================================
   TOP TICKER (Breaking News)
   ================================================================= */

.top-ticker {
  position: fixed;
  top: 0; left: 280px; right: 0;
  height: 38px;
  background: var(--tv-red);
  color: var(--tv-white);
  display: flex; align-items: center;
  z-index: 160;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.tt-label {
  padding: 0 16px;
  height: 100%;
  display: flex; align-items: center;
  background: #000;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  flex-shrink: 0;
  border-right: 2px solid var(--tv-white);
  position: relative;
  z-index: 2;
  box-shadow: 4px 0 8px rgba(0,0,0,0.6);
}
.tt-track {
  display: flex; gap: 40px;
  white-space: nowrap;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.01em;
  animation: tickerScroll 35s linear infinite;
  padding-left: 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =================================================================
   CHANNEL BROWSER (left sidebar — EPG)
   ================================================================= */

.channel-browser {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 280px;
  background:
    linear-gradient(180deg, #0F0F16 0%, #080810 100%);
  border-right: 2px solid var(--tv-red);
  z-index: 170;
  display: flex; flex-direction: column;
  box-shadow: 4px 0 20px rgba(0,0,0,0.6);
}
.cb-header {
  padding: 22px 24px 18px;
  background: var(--tv-red);
  color: var(--tv-white);
  display: flex; align-items: baseline; justify-content: space-between;
}
.cb-title {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.08em;
}
.cb-date {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  opacity: 0.95;
}

.cb-list {
  flex: 1; overflow-y: auto;
  padding: 8px 10px;
}
.cb-list::-webkit-scrollbar { width: 4px; }
.cb-list::-webkit-scrollbar-thumb { background: var(--tv-red); }

/* Gruppen-Labels zwischen den Kanal-Sektionen */
.cb-group-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tv-gold);
  padding: 12px 14px 4px;
  opacity: 0.85;
  position: relative;
}
.cb-group-label::after {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg, rgba(245,184,46,0.35) 0%, transparent 100%);
  margin-top: 4px;
}
.cb-group-label:first-child { padding-top: 6px; }
.cb-group-label--markus { color: #F5E40E; }
.cb-group-label--bastian { color: #FF6BC1; }
.cb-group-label--thomas { color: #22C55E; }
.cb-group-label--meal { color: #FF9F40; }

.ch-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 12px;
  align-items: center;
  width: 100%;
  padding: 10px 12px;
  background: transparent;
  border: 1px solid transparent;
  border-left: 3px solid transparent;
  color: var(--tv-text-dim);
  cursor: pointer;
  transition: all 0.15s;
  text-align: left;
  margin: 2px 0;
  font-family: inherit;
}
.ch-item--static { cursor: default; opacity: 0.55; }
.ch-item--static:hover { background: transparent; color: var(--tv-text-dim); border-left-color: transparent; }
.ch-item:hover {
  background: rgba(225,29,72,0.08);
  color: var(--tv-text);
  border-left-color: var(--tv-red);
}
.ch-item.current {
  background: var(--tv-red);
  color: var(--tv-white);
  border-color: var(--tv-red);
}
.ch-item.ch-ad {
  background: rgba(245,184,46,0.05);
  border-left-color: var(--tv-gold);
}
.ch-item.ch-meal {
  background: rgba(22,163,74,0.06);
  border-left-color: var(--tv-green);
}

.ch-num {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  color: var(--tv-gold);
  text-align: center;
  letter-spacing: -0.02em;
}
.ch-item.current .ch-num { color: var(--tv-white); }

.ch-body { min-width: 0; }
.ch-time {
  font-family: var(--font-mono);
  font-size: 10px;
  color: currentColor;
  opacity: 0.65;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}
.ch-name {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--tv-text);
}
.ch-item:not(.current) .ch-name { color: var(--tv-text); }
.ch-item.current .ch-name { color: var(--tv-white); }
.ch-genre {
  font-family: var(--font-mono);
  font-size: 10px;
  color: currentColor;
  opacity: 0.7;
  margin-top: 2px;
  letter-spacing: 0.02em;
}

.cb-foot {
  padding: 14px 20px;
  border-top: 1px solid rgba(225,29,72,0.25);
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--tv-text-dim);
  letter-spacing: 0.1em;
}
.cb-coop {
  display: flex; align-items: center; gap: 8px;
  flex-wrap: wrap;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px dashed rgba(245,184,46,0.2);
}
.cb-coop-label {
  font-size: 9px;
  color: var(--tv-gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  width: 100%;
}
.cb-coop-spk {
  height: 20px; width: auto;
  filter: brightness(1.1);
}
.cb-coop-x {
  font-family: var(--font-display);
  color: var(--tv-red);
  font-size: 16px;
  font-weight: 400;
}
.cb-coop-euvic {
  font-family: var(--font-display);
  color: var(--tv-white);
  font-size: 14px;
  letter-spacing: 0.08em;
}
.cb-freq { margin-bottom: 4px; }
.cb-motto {
  color: var(--tv-gold);
  font-style: italic;
  text-transform: uppercase;
  font-size: 9px;
}

/* =================================================================
   STAGE (the "TV screen")
   ================================================================= */

.stage {
  position: fixed;
  top: 38px; left: 280px; right: 0; bottom: 0;
  background: #000;
  overflow: hidden;
}

.prog {
  position: absolute; inset: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0s 0.4s;
}
.prog.active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s, visibility 0s 0s;
}

/* =================================================================
   LOWER THIRD (Bauchbinde)
   ================================================================= */

.lower-third {
  position: absolute;
  left: 40px; bottom: 64px;
  z-index: 50;
  display: flex; gap: 0;
  animation: ltSlideIn 0.6s cubic-bezier(0.2,0.9,0.2,1) 0.3s both;
}
@keyframes ltSlideIn {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
.lt-bar {
  width: 8px;
  background: var(--tv-red);
  box-shadow: 0 0 20px rgba(225,29,72,0.5);
}
.lt-content {
  padding: 12px 24px;
  background: linear-gradient(90deg, rgba(15,15,22,0.95) 0%, rgba(15,15,22,0.4) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-right: 1px solid rgba(225,29,72,0.2);
}
.lt-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tv-red);
  margin-bottom: 3px;
  font-weight: 700;
}
.lt-name {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 18px;
  color: var(--tv-white);
  letter-spacing: 0.01em;
}
.lower-third--red .lt-bar { background: var(--tv-red); }
.lower-third--yellow .lt-bar { background: var(--tv-gold); }
.lower-third--yellow .lt-tag { color: var(--tv-gold); }
.lower-third--blue .lt-bar { background: var(--tv-blue); }
.lower-third--blue .lt-tag { color: var(--tv-blue); }
.lower-third--green .lt-bar { background: var(--tv-green); }
.lower-third--green .lt-tag { color: var(--tv-green); }
.lower-third--purple .lt-bar { background: var(--tv-purple); }
.lower-third--purple .lt-tag { color: var(--tv-purple); }

/* =================================================================
   PROG 1 — DOKUMENTATION (Intro)
   ================================================================= */

.prog--doku .prog-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.45) saturate(1.1);
}
.prog--doku .prog-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.7) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(225,29,72,0.15) 60%, rgba(0,0,0,0.9) 100%);
}
.prog--doku .prog-vig {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 45%, rgba(0,0,0,0.9) 100%);
}

.doku-titlecard {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1100px;
  text-align: center;
  z-index: 5;
  animation: dokuFade 1.2s cubic-bezier(0.2,0.9,0.2,1) both;
}
@keyframes dokuFade {
  from { opacity: 0; transform: translate(-50%, calc(-50% + 30px)); letter-spacing: 0.5em; }
  to { opacity: 1; transform: translate(-50%, -50%); letter-spacing: inherit; }
}

.doku-coop {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap;
  padding: 10px 20px;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(245,184,46,0.25);
  border-radius: 30px;
  font-family: var(--font-head);
  font-style: italic;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.doku-coop-spk { height: 26px; width: auto; filter: brightness(1.05); }
.doku-coop-x {
  font-family: var(--font-display);
  color: var(--tv-gold);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  opacity: 0.75;
}
.doku-coop-euvic {
  height: 22px; width: auto;
  filter: drop-shadow(0 0 10px rgba(29,161,245,0.3));
}

.doku-kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--tv-red);
  margin-bottom: 32px;
  text-shadow: 0 0 12px rgba(225,29,72,0.5);
}

.doku-title {
  display: flex; flex-direction: column; gap: 4px;
  font-family: var(--font-head);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--tv-text);
  margin-bottom: 36px;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.doku-headline {
  display: flex; flex-wrap: wrap;
  justify-content: center; align-items: baseline;
  gap: 0.15em 0.3em;
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 160px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-shadow: 0 6px 40px rgba(0,0,0,0.7);
  margin-bottom: 32px;
}
.doku-k {
  color: var(--tv-white);
  font-size: 1.3em;
}
.doku-sep {
  color: var(--tv-gold);
  font-weight: 400;
  font-size: 0.7em;
  transform: translateY(-0.15em);
}
.doku-question {
  display: flex; align-items: baseline;
  gap: 0.15em;
}
.doku-fluch {
  color: var(--tv-red);
  text-shadow: 0 0 30px rgba(225,29,72,0.5);
}
.doku-oder {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 400;
  font-size: 0.4em;
  color: var(--tv-text-dim);
}
.doku-segen {
  color: var(--tv-gold);
  text-shadow: 0 0 30px rgba(245,184,46,0.5);
}

.doku-credits {
  font-family: var(--font-cond);
  font-size: clamp(14px, 1.2vw, 17px);
  color: var(--tv-text-dim);
  letter-spacing: 0.02em;
  line-height: 1.6;
  max-width: 880px;
  margin: 0 auto;
}
.doku-credits b { color: var(--tv-text); font-weight: 700; }
.doku-credits-and {
  display: block;
  margin-top: 4px;
  font-family: var(--font-head);
  font-style: italic;
  color: var(--tv-gold);
  font-size: 0.95em;
}

/* =================================================================
   PROG 2+5 — WERBEPAUSE (Fake Ads)
   ================================================================= */

.prog--werbung {
  background:
    radial-gradient(ellipse at 70% 30%, rgba(245,184,46,0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 30% 70%, rgba(225,29,72,0.25) 0%, transparent 60%),
    linear-gradient(135deg, #F5B82E 0%, #E11D48 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.prog--werbung2 {
  background:
    linear-gradient(135deg, #DB2777 0%, #9333EA 100%);
}

.werbung-flash {
  position: absolute;
  top: 32px; left: 32px;
  padding: 8px 20px;
  background: #000;
  color: var(--tv-gold);
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.2em;
  transform: rotate(-5deg);
  box-shadow: 0 8px 0 rgba(0,0,0,0.2);
  animation: werbungBounce 1.2s ease-in-out infinite;
  z-index: 10;
}
.werbung-flash--pink { color: #fff; background: #DB2777; border: 2px solid #fff; }
@keyframes werbungBounce {
  0%,100% { transform: rotate(-5deg) scale(1); }
  50% { transform: rotate(-3deg) scale(1.06); }
}

.werbung-content {
  width: 90%; max-width: 900px;
  text-align: center;
  z-index: 2;
  animation: werbungZoom 1s cubic-bezier(0.2,0.9,0.2,1) both;
}
@keyframes werbungZoom {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}

.ad-card {
  background: var(--tv-white);
  color: #1a1a24;
  padding: 48px 48px 40px;
  border-radius: 12px;
  box-shadow:
    0 24px 60px rgba(0,0,0,0.4),
    inset 0 0 0 4px var(--tv-red);
  position: relative;
  overflow: hidden;
}
.ad-card::before {
  content: 'NUR HEUTE';
  position: absolute;
  top: 16px; right: -40px;
  background: var(--tv-red);
  color: var(--tv-white);
  padding: 6px 50px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  transform: rotate(45deg);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.ad-kicker {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tv-red);
  margin-bottom: 20px;
  font-weight: 700;
}
.ad-title {
  font-family: var(--font-display);
  font-size: clamp(72px, 10vw, 140px);
  line-height: 0.95;
  color: var(--tv-red);
  text-shadow: 4px 4px 0 var(--tv-gold);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.ad-title--retro {
  color: #fff;
  text-shadow: 4px 4px 0 var(--tv-gold), 8px 8px 0 var(--tv-red);
  font-size: clamp(64px, 8vw, 120px);
}
.prog--werbung2 .ad-title { color: #DB2777; text-shadow: 4px 4px 0 #9333EA; }
.ad-title sup {
  font-size: 0.3em;
  vertical-align: super;
  color: var(--tv-gold);
}

.ad-claim {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 32px);
  color: #1a1a24;
  margin-bottom: 28px;
}
.ad-claim span {
  color: var(--tv-red);
  font-weight: 700;
}
.ad-claim--retro span { color: #9333EA; }

.ad-feats {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
  margin: 28px auto;
  max-width: 560px;
  text-align: left;
}
.ad-feats--retro { grid-template-columns: 1fr; gap: 8px; }
.ad-feat {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 16px;
  color: #1a1a24;
  letter-spacing: 0.02em;
}

.ad-disclaimer {
  font-family: var(--font-body);
  font-size: 11px;
  color: #6B6B78;
  margin-top: 18px;
  font-style: italic;
  line-height: 1.4;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.ad-cta {
  margin-top: 24px;
  display: inline-block;
  padding: 14px 32px;
  background: var(--tv-red);
  color: var(--tv-white);
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  border: 3px solid var(--tv-gold);
  box-shadow: 0 6px 0 rgba(0,0,0,0.2);
}

.ad-tagline {
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* =================================================================
   PROG 3 — WIRTSCHAFT
   ================================================================= */

.prog--wirtschaft { position: relative; background: var(--tv-studio); }
.prog--wirtschaft .wirt-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.35) saturate(0.7) hue-rotate(200deg);
}
.prog--wirtschaft .wirt-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(225,29,72,0.15) 0%, transparent 60%),
    linear-gradient(180deg, rgba(11,18,32,0.5) 0%, rgba(5,5,10,0.9) 100%);
}

.news-sidebar {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 96px;
  background: linear-gradient(180deg, var(--tv-red) 0%, var(--tv-red-deep) 100%);
  display: flex; flex-direction: column;
  align-items: center;
  padding: 60px 0 30px;
  z-index: 3;
  color: #fff;
  box-shadow: 2px 0 20px rgba(0,0,0,0.5);
}
.news-clock {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.04em;
  margin-bottom: auto;
}
.news-topic {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-display);
  font-size: 44px;
  letter-spacing: 0.12em;
  color: var(--tv-gold);
  text-shadow: 0 0 20px rgba(245,184,46,0.3);
}
.news-red-strip {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  padding: 4px 8px;
  background: var(--tv-white);
  color: var(--tv-red);
  font-weight: 700;
}

.wirt-content {
  position: relative;
  z-index: 2;
  padding: 60px 64px 60px 148px;
  max-width: 1400px;
  animation: slideInRight 0.8s cubic-bezier(0.2,0.9,0.2,1) both;
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

.wirt-header { margin-bottom: 36px; }
.wirt-kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--tv-gold);
  letter-spacing: 0.25em;
  margin-bottom: 12px;
}
.wirt-title {
  font-family: var(--font-head);
  font-style: italic;
  font-size: clamp(44px, 5.5vw, 72px);
  line-height: 0.95;
  color: var(--tv-white);
  margin-bottom: 10px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.6);
}
.wirt-sub {
  font-family: var(--font-cond);
  font-size: 20px;
  color: var(--tv-text-dim);
  font-weight: 500;
}

.wirt-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 36px;
}
.wirt-stat {
  padding: 22px 18px;
  background: linear-gradient(135deg, rgba(225,29,72,0.12), rgba(11,18,32,0.6));
  border: 1px solid rgba(225,29,72,0.35);
  border-left: 4px solid var(--tv-gold);
  position: relative;
}
.wirt-stat--hero {
  background: linear-gradient(135deg, var(--tv-red) 0%, var(--tv-red-deep) 100%);
  border-color: var(--tv-gold);
}
.wirt-stat-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1;
  color: var(--tv-white);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  margin-bottom: 4px;
}
.wirt-stat--hero .wirt-stat-num { color: var(--tv-gold); text-shadow: 0 0 20px rgba(245,184,46,0.4); }
.wirt-stat-lbl {
  font-family: var(--font-cond);
  font-size: 14px;
  font-weight: 600;
  color: var(--tv-text-dim);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.wirt-stat--hero .wirt-stat-lbl { color: rgba(255,255,255,0.9); }

.wirt-quote {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 20px;
  line-height: 1.5;
  color: var(--tv-white);
  padding: 20px 28px;
  border-left: 3px solid var(--tv-gold);
  background: rgba(245,184,46,0.06);
  margin-bottom: 28px;
}
.wirt-quote cite {
  display: block;
  margin-top: 10px;
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 11px;
  color: var(--tv-gold);
  letter-spacing: 0.15em;
}

.wirt-logos {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.wlogo {
  padding: 6px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(225,29,72,0.3);
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.06em;
  color: var(--tv-white);
  transition: all 0.2s;
}
.wlogo:hover {
  background: var(--tv-red);
  border-color: var(--tv-red);
}

/* =================================================================
   PROG 4 — TALKSHOW „Servus, KI"
   ================================================================= */

.prog--talkshow { background: var(--tv-studio); }
.prog--talkshow .ts-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.3) saturate(0.6);
}
.prog--talkshow .ts-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.8) 100%),
    linear-gradient(180deg, rgba(245,184,46,0.1) 0%, rgba(11,18,32,0.95) 100%);
}

.ts-studio {
  position: relative; z-index: 2;
  padding: 60px 64px;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}
.ts-kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--tv-gold);
  margin-bottom: 18px;
  text-shadow: 0 0 10px rgba(245,184,46,0.4);
}
.ts-title {
  font-family: var(--font-head);
  font-style: italic;
  font-size: clamp(56px, 7vw, 96px);
  color: var(--tv-white);
  margin-bottom: 10px;
  line-height: 0.95;
}
.ts-title em { color: var(--tv-red); font-style: normal; font-weight: 700; font-family: var(--font-display); font-size: 1.1em; }
.ts-sub {
  font-family: var(--font-cond);
  font-size: 20px;
  color: var(--tv-text-dim);
  margin-bottom: 48px;
}

.ts-guests {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.ts-guest {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(11,18,32,0.6));
  border: 1px solid rgba(245,184,46,0.25);
  padding: 24px 20px;
  position: relative;
  transition: all 0.3s;
}
.ts-guest:hover { transform: translateY(-4px); border-color: var(--tv-gold); box-shadow: 0 14px 40px rgba(245,184,46,0.15); }
.ts-guest--host {
  background: linear-gradient(180deg, rgba(245,184,46,0.15), rgba(11,18,32,0.6));
  border-color: var(--tv-gold);
}
.ts-badge {
  position: absolute; top: -12px; left: 20px;
  background: var(--tv-gold);
  color: #1a1a24;
  padding: 4px 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
}
.ts-photo {
  width: 110px; height: 110px;
  margin: 0 auto 16px;
  border: 3px solid var(--tv-gold);
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
.ts-guest--host .ts-photo { box-shadow: 0 0 24px rgba(245,184,46,0.4); }
.ts-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 18%;
  filter: saturate(0.9) contrast(1.05);
}
.ts-name {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--tv-white);
  letter-spacing: 0.02em;
}
.ts-job {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 16px;
  color: var(--tv-gold);
  margin-top: 4px;
}

.ts-applause {
  max-width: 600px;
  margin: 0 auto;
  padding: 18px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(245,184,46,0.2);
}
.ts-applause-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--tv-gold);
  margin-bottom: 10px;
}
.ts-applause-bar {
  height: 14px;
  background: rgba(255,255,255,0.1);
  overflow: hidden;
  margin-bottom: 8px;
}
.ts-applause-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--tv-green) 0%, var(--tv-gold) 60%, var(--tv-red) 100%);
  animation: applauseWiggle 2s ease-in-out infinite;
}
@keyframes applauseWiggle {
  0%,100% { width: 78%; }
  50% { width: 88%; }
}
.ts-applause-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--tv-text-dim);
  letter-spacing: 0.08em;
}

/* =================================================================
   PROG 6 — WETTERBERICHT
   ================================================================= */

.prog--wetter { background: linear-gradient(180deg, #1E3A8A 0%, #0F172A 100%); }
.prog--wetter .wetter-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.25) saturate(0.5);
}
.prog--wetter .wetter-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(37,99,235,0.2) 0%, rgba(15,23,42,0.95) 100%);
}

.wetter-panel {
  position: relative; z-index: 2;
  padding: 50px 64px;
  max-width: 1500px;
  margin: 0 auto;
  animation: fadeUp 0.8s cubic-bezier(0.2,0.9,0.2,1) both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.wetter-head { text-align: left; margin-bottom: 32px; }
.wetter-kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--tv-gold);
  margin-bottom: 10px;
}
.wetter-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 72px);
  color: var(--tv-white);
  letter-spacing: 0.01em;
  line-height: 1;
  margin-bottom: 8px;
}
.wetter-moderator {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 18px;
  color: rgba(255,255,255,0.65);
}

.wetter-map {
  margin: 0 auto 32px;
  max-width: 700px;
  background: rgba(15,23,42,0.6);
  border: 1px solid rgba(37,99,235,0.4);
  border-radius: 8px;
  padding: 20px;
}
.wetter-svg { width: 100%; height: auto; }
.wetter-austria {
  fill: rgba(37,99,235,0.2);
  stroke: #60A5FA;
  stroke-width: 2;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 12px rgba(96,165,250,0.4));
}
.wetter-pin {
  animation: pinPulse 2s ease-in-out infinite;
}
@keyframes pinPulse {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(0,-4px); }
}

.wetter-legend {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 28px;
  max-width: 700px;
  margin: 0 auto 32px;
  padding: 16px 20px;
  background: rgba(15,23,42,0.7);
  border-left: 3px solid var(--tv-gold);
}
.wetter-legend-item {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-cond);
  font-size: 15px;
  color: var(--tv-text);
}
.wetter-legend-item b { color: var(--tv-gold); }
.wl-dot {
  width: 12px; height: 12px; border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px currentColor;
}

.wetter-forecast {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.wf-day {
  padding: 20px 16px;
  background: rgba(15,23,42,0.7);
  border: 1px solid rgba(37,99,235,0.3);
  text-align: center;
}
.wf-day--hero {
  background: linear-gradient(180deg, rgba(225,29,72,0.15), rgba(15,23,42,0.7));
  border-color: var(--tv-red);
  box-shadow: 0 0 24px rgba(225,29,72,0.2);
}
.wf-day-name {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--tv-gold);
  margin-bottom: 10px;
  font-weight: 700;
}
.wf-icon { font-size: 36px; margin-bottom: 8px; }
.wf-temps { display: flex; flex-direction: column; gap: 2px; }
.wf-high {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--tv-white);
  letter-spacing: -0.02em;
  line-height: 1;
}
.wf-day--hero .wf-high { color: var(--tv-red); }
.wf-low {
  font-family: var(--font-cond);
  font-size: 12px;
  color: var(--tv-text-dim);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.wetter-warning {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 20px;
  background: var(--tv-red);
  color: var(--tv-white);
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  animation: warnPulse 1.6s ease-in-out infinite;
}
@keyframes warnPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(225,29,72,0); }
  50% { box-shadow: 0 0 0 8px rgba(225,29,72,0.15); }
}
.ww-ico { font-size: 20px; }

/* =================================================================
   PROG 7 — SPORT
   ================================================================= */

.prog--sport { background: linear-gradient(180deg, #15803D 0%, #052E16 100%); }
.prog--sport .sport-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.25) saturate(0.7);
}
.prog--sport .sport-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(22,163,74,0.15) 0%, rgba(5,46,22,0.9) 100%);
}

.sport-panel {
  position: relative; z-index: 2;
  padding: 50px 64px;
  max-width: 1300px;
  margin: 0 auto;
  animation: slideInLeft 0.8s cubic-bezier(0.2,0.9,0.2,1) both;
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

.sport-head { margin-bottom: 32px; }
.sport-kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--tv-gold);
  margin-bottom: 10px;
}
.sport-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 6.5vw, 88px);
  color: var(--tv-white);
  line-height: 1;
  letter-spacing: 0.01em;
  margin-bottom: 6px;
}
.sport-sub {
  font-family: var(--font-cond);
  font-size: 17px;
  color: rgba(255,255,255,0.7);
}

.sport-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(5,46,22,0.8);
  border: 1px solid rgba(34,197,94,0.3);
  margin-bottom: 28px;
  font-family: var(--font-cond);
}
.sport-table th {
  padding: 14px 12px;
  background: var(--tv-green);
  color: var(--tv-white);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  font-weight: 700;
  text-align: left;
}
.sport-table th:first-child, .sport-table th:last-child { text-align: center; }
.sport-table td {
  padding: 14px 12px;
  font-size: 15px;
  color: var(--tv-text);
  border-bottom: 1px solid rgba(34,197,94,0.15);
  font-weight: 500;
}
.sport-pos { text-align: center; font-family: var(--font-display); font-size: 24px; color: var(--tv-gold); width: 50px; }
.sport-pts { text-align: center; font-family: var(--font-display); font-size: 22px; color: var(--tv-white); }
.sport-team { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 16px; }
.sport-badge {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.sport-badge--h { background: var(--tv-blue); }
.sport-badge--k { background: var(--tv-red); }
.sport-row-top { background: rgba(245,184,46,0.08); }
.sport-row-hero { background: rgba(225,29,72,0.12); }
.sport-row-hero .sport-pts { color: var(--tv-red); font-size: 26px; }

.sport-commentary {
  display: flex; gap: 20px;
  padding: 20px 24px;
  background: linear-gradient(90deg, rgba(225,29,72,0.15), rgba(5,46,22,0.6));
  border-left: 4px solid var(--tv-red);
}
.sport-comment-head {
  flex-shrink: 0;
  display: flex; flex-direction: column; align-items: center;
  gap: 8px;
  width: 100px;
}
.sport-comment-avatar {
  width: 60px; height: 60px; border-radius: 50%;
  border: 2px solid var(--tv-gold);
  overflow: hidden;
}
.sport-comment-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.sport-comment-name {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--tv-gold);
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1.3;
}
.sport-comment-text {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
  color: var(--tv-text);
}

/* =================================================================
   PROG 8 — LIVE-STUDIO (Thomas Demo)
   ================================================================= */

.prog--live { background: #0B0B14; }
.prog--live .live-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.3) saturate(0.7) hue-rotate(-10deg);
}
.prog--live .live-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(225,29,72,0.25) 0%, transparent 55%),
    linear-gradient(180deg, rgba(11,11,20,0.5) 0%, rgba(11,11,20,0.95) 100%);
}

.live-stage {
  position: relative; z-index: 2;
  padding: 50px 64px;
  max-width: 1400px;
  margin: 0 auto;
}

.live-onair {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  background: var(--tv-red);
  color: var(--tv-white);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.25em;
  margin-bottom: 20px;
  box-shadow: 0 0 24px rgba(225,29,72,0.5);
  animation: onairBlink 1.5s ease-in-out infinite;
}
@keyframes onairBlink {
  0%,100% { opacity: 1; }
  50% { opacity: 0.75; }
}
.onair-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--tv-white);
  box-shadow: 0 0 10px var(--tv-white);
}

.live-kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--tv-gold);
  margin-bottom: 10px;
}
.live-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 6.5vw, 86px);
  color: var(--tv-white);
  letter-spacing: 0.01em;
  line-height: 1;
  margin-bottom: 10px;
}
.live-sub {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 20px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
}

.live-cams {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}
.live-cam {
  position: relative;
  padding: 22px 20px 24px;
  background: linear-gradient(135deg, rgba(15,15,22,0.9), rgba(11,11,20,0.7));
  border: 2px solid rgba(225,29,72,0.4);
  aspect-ratio: 16 / 10;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
}
.live-cam::before {
  content: '';
  position: absolute;
  top: 12px; right: 12px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--tv-red);
  box-shadow: 0 0 12px var(--tv-red);
  animation: camRec 1.2s ease-in-out infinite;
}
@keyframes camRec { 50% { opacity: 0.4; } }
.live-cam--hero {
  background: linear-gradient(135deg, rgba(225,29,72,0.2), rgba(245,184,46,0.08));
  border-color: var(--tv-gold);
}
.live-cam--hero::before { background: var(--tv-gold); box-shadow: 0 0 14px var(--tv-gold); }

.cam-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--tv-gold);
  font-weight: 700;
  margin-bottom: 12px;
}
.cam-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 32px);
  color: var(--tv-white);
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 4px;
}
.cam-sub {
  font-family: var(--font-cond);
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.cam-stamp {
  display: inline-block;
  margin-top: auto;
  padding: 3px 10px;
  background: rgba(225,29,72,0.25);
  color: var(--tv-red);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  border: 1px solid var(--tv-red);
  align-self: flex-start;
}
.cam-stamp--hero {
  background: var(--tv-gold);
  color: #0B0B14;
  border-color: var(--tv-gold);
}

.live-host {
  display: flex; align-items: center; gap: 20px;
  padding: 20px 24px;
  background: rgba(245,184,46,0.08);
  border-left: 4px solid var(--tv-gold);
}
.live-host-photo {
  width: 70px; height: 70px; border-radius: 50%;
  object-fit: cover; object-position: center 18%;
  border: 2px solid var(--tv-gold);
}
.live-host-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--tv-gold);
  letter-spacing: 0.2em;
  margin-bottom: 3px;
}
.live-host-name {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--tv-white);
  letter-spacing: 0.01em;
  margin-bottom: 4px;
}
.live-host-quote {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 16px;
  color: rgba(255,255,255,0.8);
}

/* =================================================================
   PROG 9 — QUIZ / PUBLIKUMSFRAGE  (komplett neu, fix layout)
   ================================================================= */

.prog--quiz {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(147,51,234,0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(225,29,72,0.16) 0%, transparent 55%),
    linear-gradient(180deg, #1F0F3A 0%, #0B0523 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}
.quiz-bg {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(245,184,46,0.03) 0 2px, transparent 2px 40px);
  pointer-events: none;
  z-index: 0;
}
.quiz-spots {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.qspot {
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,184,46,0.2) 0%, transparent 70%);
  filter: blur(40px);
  animation: qspotFloat 9s ease-in-out infinite;
}
.qspot-1 { top: -10%; left: -5%; }
.qspot-2 { top: 40%; right: -10%; background: radial-gradient(circle, rgba(147,51,234,0.2) 0%, transparent 70%); animation-delay: 3s; }
.qspot-3 { bottom: -15%; left: 35%; background: radial-gradient(circle, rgba(225,29,72,0.16) 0%, transparent 70%); animation-delay: 6s; }
@keyframes qspotFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.1); }
}

.quiz-wrap {
  position: relative; z-index: 2;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.quiz-head { margin-bottom: 4px; }

.quiz-kicker {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(245,184,46,0.1);
  border: 1px solid var(--tv-gold);
  color: var(--tv-gold);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  font-weight: 700;
  margin-bottom: 18px;
  text-shadow: 0 0 10px rgba(245,184,46,0.4);
}
.quiz-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 112px);
  color: var(--tv-white);
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.quiz-em {
  background: linear-gradient(180deg, var(--tv-gold) 0%, var(--tv-red) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-style: italic;
  padding-right: 0.05em;
}
.quiz-sub {
  font-family: var(--font-head);
  font-style: italic;
  font-size: clamp(16px, 1.5vw, 21px);
  color: rgba(255,255,255,0.8);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Winkende Hände — cleaner grid */
.quiz-audience {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 14px;
  flex-wrap: wrap;
  padding: 0 20px;
}
.aud {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  animation: raiseHand 2.8s ease-in-out infinite;
  display: inline-block;
}
.aud:nth-child(1) { animation-delay: 0.0s; }
.aud:nth-child(2) { animation-delay: 0.3s; }
.aud:nth-child(3) { animation-delay: 0.6s; }
.aud:nth-child(4) { animation-delay: 0.9s; }
.aud:nth-child(5) { animation-delay: 1.2s; }
.aud:nth-child(6) { animation-delay: 1.5s; }
.aud:nth-child(7) { animation-delay: 1.8s; }
.aud:nth-child(8) { animation-delay: 2.1s; }
@keyframes raiseHand {
  0%,100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-12px) rotate(4deg); }
}

/* Jury */
.quiz-jury {
  padding: 20px 24px;
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(245,184,46,0.2);
  border-radius: 10px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.jury-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--tv-gold);
  margin-bottom: 16px;
  text-transform: uppercase;
  font-weight: 700;
}
.jury-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.jury-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(245,184,46,0.25);
  transition: all 0.25s;
}
.jury-member:hover {
  background: rgba(245,184,46,0.1);
  border-color: var(--tv-gold);
  transform: translateY(-4px);
}
.jury-photo {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 2px solid var(--tv-gold);
  overflow: hidden;
  box-shadow: 0 0 14px rgba(245,184,46,0.35);
  flex-shrink: 0;
}
.jury-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;
}
.jury-name {
  font-family: var(--font-cond);
  font-size: 14px;
  font-weight: 700;
  color: var(--tv-white);
  letter-spacing: 0.02em;
}
.jury-member--spk .jury-photo { border-color: var(--tv-red); box-shadow: 0 0 14px rgba(225,29,72,0.35); }

/* Regeln */
.quiz-rules {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  padding: 0;
}
.quiz-rules li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  font-family: var(--font-cond);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(245,184,46,0.25);
  border-radius: 999px;
  letter-spacing: 0.01em;
}
.qr-emoji {
  font-size: 18px;
  line-height: 1;
}

/* =================================================================
   EUVIC-AD Layouts (Werbeblock 1 + 2)
   ================================================================= */

.werbung-content--wide { width: 94%; max-width: 1200px; }

/* --- EUVIC AD (Werbung 1) --- */
.ad-euvic {
  background: var(--tv-white);
  color: #1a1a24;
  padding: 40px 48px 36px;
  border-radius: 14px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.45), inset 0 0 0 4px var(--tv-red);
  position: relative;
  overflow: hidden;
}
.ad-euvic::before {
  content: 'LIVE HEUTE';
  position: absolute;
  top: 18px; right: -44px;
  background: var(--tv-red);
  color: var(--tv-white);
  padding: 6px 54px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  transform: rotate(45deg);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 3;
}
.ad-euvic-head { text-align: center; margin-bottom: 28px; }
.ad-euvic-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 88px);
  line-height: 1;
  margin: 8px 0 12px;
  display: flex; align-items: center; justify-content: center;
  gap: 18px; flex-wrap: wrap;
}
.ad-euvic-logo {
  height: clamp(50px, 6vw, 80px);
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(29,161,245,0.2));
}
.ad-euvic-title span {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 700;
  color: var(--tv-red);
  font-size: 0.7em;
}

.ad-euvic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.ad-comp {
  position: relative;
  padding: 18px 16px 16px;
  background: linear-gradient(180deg, #f5f5fa 0%, #e8e8ee 100%);
  border: 2px solid transparent;
  border-radius: 6px;
  text-align: left;
}
.ad-comp-badge {
  position: absolute;
  top: -10px; left: 12px;
  background: var(--tv-red);
  color: var(--tv-white);
  font-family: var(--font-display);
  font-size: 14px;
  padding: 3px 10px;
  letter-spacing: 0.06em;
}
.ad-comp-name {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.1;
  color: #1a1a24;
  margin: 8px 0 6px;
  letter-spacing: -0.01em;
}
.ad-comp-desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: #4a4a58;
  line-height: 1.4;
}
.ad-comp--hero {
  background: linear-gradient(180deg, var(--tv-red) 0%, var(--tv-red-deep) 100%);
  border-color: var(--tv-gold);
  box-shadow: 0 8px 24px rgba(225,29,72,0.4);
}
.ad-comp--hero .ad-comp-name,
.ad-comp--hero .ad-comp-desc { color: var(--tv-white); }
.ad-comp--hero .ad-comp-desc { color: rgba(255,255,255,0.92); }
.ad-comp--hero .ad-comp-badge { background: var(--tv-gold); color: #1a1a24; }
.ad-comp-tag {
  margin-top: 10px;
  display: inline-block;
  padding: 3px 10px;
  background: var(--tv-gold);
  color: #1a1a24;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  animation: adTagBlink 1.5s ease-in-out infinite;
}
@keyframes adTagBlink {
  0%,100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.ad-euvic-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 16px;
  padding: 16px 0;
  border-top: 2px dashed #d0d0d8;
  border-bottom: 2px dashed #d0d0d8;
}
.ad-stat {
  text-align: center;
  padding: 4px 8px;
}
.ad-stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--tv-red);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.ad-stat span {
  font-family: var(--font-mono);
  font-size: 10px;
  color: #6a6a78;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

/* --- REFERENZEN AD (Werbung 2) --- */
.prog--werbung2 {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0a1f 100%);
}
.ad-refs {
  background: linear-gradient(180deg, #fff 0%, #f5f0e8 100%);
  color: #1a1a24;
  padding: 38px 44px 30px;
  border-radius: 14px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.5), inset 0 0 0 4px var(--tv-red);
  position: relative;
  overflow: hidden;
}
.ad-refs::before {
  content: '⭐ NEU ⭐';
  position: absolute;
  top: 18px; right: -50px;
  background: var(--tv-gold);
  color: #1a1a24;
  padding: 6px 60px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  transform: rotate(45deg);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 3;
}
.ad-refs-head { text-align: center; margin-bottom: 24px; }
.ad-refs-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 76px);
  line-height: 1;
  color: var(--tv-red);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.ad-refs-title span {
  color: var(--tv-gold);
  text-shadow: 2px 2px 0 var(--tv-red);
}
.ad-refs-sub {
  font-family: var(--font-head);
  font-style: italic;
  font-size: clamp(15px, 1.6vw, 20px);
  color: #4a4a58;
}

.ad-branches {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.ad-br {
  padding: 16px 18px;
  background: linear-gradient(180deg, #fff 0%, #f5f5fa 100%);
  border: 2px solid #e0e0e8;
  border-radius: 8px;
  position: relative;
}
.ad-br--featured {
  background: linear-gradient(180deg, var(--tv-gold) 0%, #F59E0B 100%);
  border-color: var(--tv-red);
  grid-column: span 2;
  box-shadow: 0 8px 20px rgba(245,184,46,0.35);
}
.ad-br-emoji {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 6px;
}
.ad-br-name {
  font-family: var(--font-display);
  font-size: 22px;
  color: #1a1a24;
  letter-spacing: 0.02em;
  margin-bottom: 2px;
}
.ad-br--featured .ad-br-name { color: var(--tv-red); font-size: 28px; text-shadow: 1px 1px 0 rgba(255,255,255,0.5); }
.ad-br-claim {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 13px;
  color: #4a4a58;
  margin-bottom: 10px;
}
.ad-br--featured .ad-br-claim { color: #1a1a24; font-size: 15px; font-weight: 500; }
.ad-br-logos {
  display: flex; flex-wrap: wrap; gap: 5px;
}
.ad-br-logos span {
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  background: #1a1a24;
  color: #fff;
  border-radius: 3px;
  letter-spacing: 0.02em;
}
.ad-br--featured .ad-br-logos span {
  background: var(--tv-red);
  color: #fff;
  font-size: 13px;
  padding: 5px 12px;
}

.ad-refs-awards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
  padding-top: 14px;
  border-top: 2px dashed #d0d0d8;
}
.ad-award {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-cond);
  font-size: 13px;
  color: #1a1a24;
}
.ad-award span { font-size: 18px; }
.ad-award b { color: var(--tv-red); font-weight: 700; }

/* =================================================================
   PROG 10 — SENDESCHLUSS
   ================================================================= */

.prog--ende {
  background: linear-gradient(180deg, #0B0B14 0%, #000 100%);
  display: flex; align-items: center; justify-content: center;
}

.ende-static {
  position: absolute; inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='300' height='300'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/></filter><rect width='300' height='300' filter='url(%23n)'/></svg>");
  animation: staticNoise 0.5s steps(4) infinite;
}
@keyframes staticNoise {
  0%,100% { transform: translate(0,0); }
  25% { transform: translate(-2px, 1px); }
  50% { transform: translate(1px, -2px); }
  75% { transform: translate(-1px, 2px); }
}

.ende-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 60px 40px;
  max-width: 900px;
}

.ende-kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--tv-red);
  margin-bottom: 24px;
}
.ende-title {
  font-family: var(--font-display);
  font-size: clamp(72px, 10vw, 160px);
  color: var(--tv-white);
  letter-spacing: -0.01em;
  line-height: 0.95;
  margin-bottom: 20px;
  text-shadow: 0 0 40px rgba(255,255,255,0.1);
}
.ende-title span {
  color: var(--tv-gold);
  font-family: var(--font-head);
  font-style: italic;
  font-size: 0.7em;
  display: inline-block;
}
.ende-sub {
  font-family: var(--font-head);
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 24px);
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  margin-bottom: 36px;
}

.ende-logos {
  display: flex; align-items: center; justify-content: center;
  gap: 24px;
  margin-bottom: 36px;
  padding: 20px 32px;
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(225,29,72,0.3);
  border-bottom: 1px solid rgba(225,29,72,0.3);
}
.ende-logo { height: 40px; width: auto; }
.ende-logo--euvic { filter: drop-shadow(0 0 12px rgba(29,161,245,0.3)); }
.ende-x {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--tv-red);
}

.ende-credits {
  max-width: 560px;
  margin: 0 auto 28px;
  text-align: left;
  font-family: var(--font-cond);
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}
.ende-credit-row { display: flex; gap: 14px; padding: 4px 0; }
.ende-credit-row span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--tv-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  width: 140px;
  flex-shrink: 0;
}

.ende-signoff {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 30px;
  padding: 20px;
  background: var(--tv-red);
  color: var(--tv-white);
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.04em;
}
.ende-hymne {
  font-style: italic;
  font-family: var(--font-head);
  font-size: 24px;
  opacity: 0.95;
}
.ende-bier {
  font-family: var(--font-cond);
  font-size: 15px;
  font-weight: 500;
  color: var(--tv-gold);
}

/* =================================================================
   ZAPPING TRANSITION
   ================================================================= */

.zap {
  position: fixed; inset: 0;
  z-index: 500;
  pointer-events: none;
  opacity: 0;
  background: #000;
}
.zap.zap--active { animation: zapSequence 0.42s steps(8) forwards; }
@keyframes zapSequence {
  0%,10% { opacity: 1; }
  100% { opacity: 0; }
}
.zap-line {
  position: absolute; left: 0; right: 0; top: 50%;
  height: 4px;
  background: var(--tv-white);
  box-shadow: 0 0 40px var(--tv-white);
  transform: translateY(-50%) scaleY(0);
}
.zap.zap--active .zap-line { animation: zapLine 0.2s ease-out forwards; }
@keyframes zapLine {
  0% { transform: translateY(-50%) scaleY(0); }
  30% { transform: translateY(-50%) scaleY(400); }
  70% { transform: translateY(-50%) scaleY(400); }
  100% { transform: translateY(-50%) scaleY(0); opacity: 0; }
}
.zap-static {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='300' height='300'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='4'/></filter><rect width='300' height='300' filter='url(%23n)'/></svg>");
  opacity: 0;
}
.zap.zap--active .zap-static { animation: zapStatic 0.3s steps(6) forwards; }
@keyframes zapStatic {
  0%,50% { opacity: 0; }
  60%,90% { opacity: 0.4; }
  100% { opacity: 0; }
}

/* =================================================================
   REMOTE CONTROL
   ================================================================= */

.remote {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 400;
  width: 180px;
  background: linear-gradient(180deg, #292929 0%, #1A1A1A 100%);
  border: 2px solid #3A3A3A;
  border-radius: 16px;
  padding: 14px 14px 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.05);
  display: flex; flex-direction: column; gap: 12px;
}
.remote-brand {
  text-align: center;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--tv-gold);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.remote-screen {
  background: linear-gradient(180deg, #0B1F0B 0%, #052E16 100%);
  color: #22C55E;
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 8px 10px;
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 3px;
  display: flex; align-items: center; justify-content: space-between;
  text-shadow: 0 0 4px currentColor;
  letter-spacing: 0.05em;
  font-weight: 700;
}
.rs-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 4px currentColor;
  animation: livePulse 1s ease-in-out infinite;
}

.remote-dpad {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 4px;
  aspect-ratio: 1;
  max-width: 140px;
  margin: 0 auto;
}
.rb {
  background: linear-gradient(180deg, #3A3A3A 0%, #262626 100%);
  border: 1px solid #4A4A4A;
  color: var(--tv-text);
  cursor: pointer;
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  transition: all 0.1s;
  box-shadow: 0 2px 0 rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.08);
}
.rb:hover {
  background: linear-gradient(180deg, #4A4A4A 0%, #303030 100%);
  color: var(--tv-gold);
}
.rb:active {
  transform: translateY(1px);
  box-shadow: 0 0 0 rgba(0,0,0,0.5);
}
.rb-up { grid-column: 2; grid-row: 1; }
.rb-left { grid-column: 1; grid-row: 2; }
.rb-ok {
  grid-column: 2; grid-row: 2;
  background: linear-gradient(180deg, var(--tv-red) 0%, var(--tv-red-deep) 100%);
  color: var(--tv-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.rb-right { grid-column: 3; grid-row: 2; }
.rb-down { grid-column: 2; grid-row: 3; }

.remote-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.rb-red {
  background: linear-gradient(180deg, #DC143C 0%, #991B1B 100%);
  color: var(--tv-white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.rb-mute { font-size: 14px; }
.rb-power {
  background: linear-gradient(180deg, #2A2A2A 0%, #1A1A1A 100%);
  color: #22C55E;
  font-size: 14px;
}

.remote-minibrand {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 8px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.15em;
}

/* Sparkasse-Credit auf der Fernbedienung — Desktop versteckt */
.remote-coop { display: none; }

/* Remote-Row Wrapper — auf Desktop transparent (behave wie Flex-Column) */
.remote-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* =================================================================
   MENÜ / EPG Overlay
   ================================================================= */

.menu {
  position: fixed; inset: 0;
  background: rgba(5,5,10,0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 450;
  display: none;
  flex-direction: column;
  padding: 40px;
}
.menu.active { display: flex; }
.menu-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--tv-red);
}
.menu-title {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.1em;
  color: var(--tv-white);
}
.menu-close {
  width: 44px; height: 44px;
  background: var(--tv-red);
  color: var(--tv-white);
  border: none;
  font-size: 28px;
  cursor: pointer;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  overflow-y: auto;
}
.menu-thumb {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #1A1A24, #0A0A14);
  border: 1px solid rgba(245,184,46,0.3);
  padding: 14px 16px;
  display: flex; flex-direction: column; justify-content: space-between;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--tv-text);
  font-family: inherit;
  text-align: left;
}
.menu-thumb:hover {
  border-color: var(--tv-red);
  background: linear-gradient(135deg, rgba(225,29,72,0.15), #0A0A14);
}
.mt-ch {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--tv-gold);
  line-height: 1;
}
.mt-name {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 16px;
}
.mt-time {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--tv-red);
  letter-spacing: 0.1em;
}

/* =================================================================
   POWER-OFF animation
   ================================================================= */

.power-off {
  position: fixed; inset: 0;
  background: #000;
  z-index: 900;
  opacity: 0;
  pointer-events: none;
}
.power-off.active { animation: powerOff 0.8s ease-out forwards; pointer-events: all; }
@keyframes powerOff {
  0% { opacity: 0; }
  20% { opacity: 1; clip-path: inset(0 0 0 0); background: #fff; }
  40% { clip-path: inset(48% 0 48% 0); background: #fff; }
  80% { clip-path: inset(49.5% 49.5% 49.5% 49.5%); background: #fff; }
  100% { clip-path: inset(50% 50% 50% 50%); background: #000; opacity: 1; }
}

/* =================================================================
   PROG · Abendessen — Restaurant Zeitlos Hopfgarten
   ================================================================= */

.prog--zeitlos {
  background: linear-gradient(135deg, #3E2A1F 0%, #1A0F08 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.zl-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.25) saturate(1.1) sepia(0.2);
}
.zl-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(245,184,46,0.15) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(225,29,72,0.12) 0%, transparent 55%),
    linear-gradient(180deg, rgba(26,15,8,0.6) 0%, rgba(26,15,8,0.92) 100%);
}

.zl-stage {
  position: relative; z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 56px;
}

.zl-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(245,184,46,0.3);
}
.zl-kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--tv-gold);
  font-weight: 700;
  text-shadow: 0 0 10px rgba(245,184,46,0.4);
}
.zl-stamp {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.55);
}

.zl-title {
  text-align: center;
  margin-bottom: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.zl-overline {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
}
.zl-name {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(72px, 10vw, 140px);
  color: var(--tv-gold);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-shadow:
    0 0 40px rgba(245,184,46,0.4),
    0 4px 2px rgba(0,0,0,0.3);
  background: linear-gradient(180deg, #F5E40E 0%, #F5B82E 50%, #C78A15 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.zl-sub {
  font-family: var(--font-cond);
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}

.zl-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 22px;
  margin-bottom: 22px;
}
.zl-col {
  padding: 22px 24px;
  background: rgba(245,184,46,0.06);
  border: 1px solid rgba(245,184,46,0.25);
  border-radius: 6px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.zl-col-head {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--tv-gold);
  margin-bottom: 16px;
  font-weight: 700;
}

/* Duo-Karten (Tamara & Monika) */
.zl-duo {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.zl-duo-card {
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border-left: 3px solid var(--tv-gold);
}
.zl-duo-role {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--tv-gold);
  margin-bottom: 4px;
  font-weight: 700;
}
.zl-duo-name {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  color: var(--tv-white);
  line-height: 1.1;
  margin-bottom: 6px;
}
.zl-duo-desc {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.8);
}
.zl-duo-desc em { color: var(--tv-gold); font-style: italic; }
.zl-duo-amp {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 44px;
  color: var(--tv-gold);
  text-align: center;
  opacity: 0.75;
}

.zl-quote {
  padding: 14px 18px;
  background: rgba(0,0,0,0.25);
  border-left: 3px solid var(--tv-red);
  font-family: var(--font-head);
  font-style: italic;
  font-size: 17px;
  color: var(--tv-white);
  line-height: 1.4;
}
.zl-quote cite {
  display: block;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--tv-gold);
}

/* Signature Card */
.zl-signature {
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(245,184,46,0.2), rgba(225,29,72,0.1));
  border: 1px solid var(--tv-gold);
  margin-bottom: 14px;
  border-radius: 4px;
}
.zl-sig-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--tv-gold);
  margin-bottom: 6px;
  font-weight: 700;
}
.zl-sig-name {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 700;
  font-size: 30px;
  color: var(--tv-white);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.zl-sig-fact {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.88);
  line-height: 1.5;
}
.zl-sig-fact b { color: var(--tv-gold); font-weight: 700; }
.zl-sig-fact span {
  display: block;
  margin-top: 4px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
}

.zl-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.zl-fact {
  padding: 12px 8px;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(245,184,46,0.25);
  text-align: center;
}
.zl-fact-num {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1;
  color: var(--tv-gold);
  margin-bottom: 3px;
  letter-spacing: -0.02em;
}
.zl-fact-lbl {
  font-family: var(--font-mono);
  font-size: 9px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em;
  line-height: 1.25;
}

.zl-style {
  padding-top: 14px;
  border-top: 1px dashed rgba(245,184,46,0.25);
}
.zl-style-h {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--tv-gold);
  margin-bottom: 10px;
  font-weight: 700;
}
.zl-style-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.zl-style-tags span {
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  background: rgba(245,184,46,0.15);
  color: var(--tv-white);
  border: 1px solid rgba(245,184,46,0.35);
  border-radius: 2px;
  letter-spacing: 0.02em;
}
.zl-style-tags span:last-child {
  background: var(--tv-gold);
  color: #1a1a24;
  border-color: var(--tv-gold);
  font-style: italic;
  font-family: var(--font-head);
  font-weight: 700;
}

.zl-footer {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 14px 20px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(245,184,46,0.2);
}
.zl-foot-item {
  display: flex; flex-direction: column; gap: 2px;
  font-family: var(--font-cond);
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  flex: 1;
}
.zl-foot-label {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--tv-gold);
  letter-spacing: 0.2em;
  font-weight: 700;
}
.zl-foot-divider {
  width: 1px;
  height: 30px;
  background: rgba(245,184,46,0.25);
  flex-shrink: 0;
}
.zl-foot-item--gold {
  color: var(--tv-gold);
  font-weight: 600;
}

/* =================================================================
   Missing ende-bg styling
   ================================================================= */
.ende-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(225,29,72,0.1) 0%, transparent 60%),
    linear-gradient(180deg, #0B0B14 0%, #000 100%);
}

/* =================================================================
   RESPONSIVE
   ================================================================= */

@media (max-width: 1280px) {
  .doku-headline { font-size: clamp(56px, 9vw, 130px); }
  .wirt-stats { gap: 10px; }
  .live-cams { gap: 10px; }
  .ts-guests { gap: 16px; }
}

@media (max-width: 1100px) {
  .channel-browser { width: 220px; }
  .stage { left: 220px; }
  .top-ticker { left: 220px; }
  .station-id { top: 58px; right: 20px; }
  .sid-logo { font-size: 34px; }
  .sid-tv { font-size: 22px; }
  .cb-title { font-size: 20px; }
  .ch-num { font-size: 24px; }

  /* Tighten paddings across all progs */
  .prog-content, .wirt-content, .ts-studio, .wetter-panel, .sport-panel,
  .live-stage, .quiz-stage, .ende-content { padding: 40px 40px; }
  .doku-titlecard { padding: 0 32px; }

  /* Stats tighten */
  .wirt-stat-num { font-size: clamp(34px, 4vw, 56px); }
  .wf-high { font-size: 26px; }

  /* Table font */
  .sport-table td, .sport-table th { padding: 10px 8px; font-size: 13px; }
}

/* ===== TABLET / PHABLET ===== */
@media (max-width: 900px) {
  /* Station ID smaller */
  .station-id { top: 40px; right: 12px; gap: 4px; }
  .sid-logo { font-size: 22px; }
  .sid-tv { font-size: 15px; }
  .sid-live { padding: 2px 7px; font-size: 9px; }
  .sid-presented { font-size: 8px; padding: 2px 6px; gap: 5px; letter-spacing: 0.12em; }
  .sid-spk-logo { height: 14px; }

  /* Top ticker wandert auf Mobile nach unten (über die Fernbedienung) */
  .top-ticker {
    height: 28px;
    left: 0; right: 0;
    top: auto;
    bottom: 72px;   /* above remote (≈ 56px + 16px margin) */
    border-top: 1px solid rgba(225,29,72,0.4);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.4);
  }
  .tt-label { padding: 0 10px; font-size: 10px; }
  .tt-track { font-size: 13px; gap: 24px; animation-duration: 28s; }

  /* Channel browser becomes a full-screen slide-up overlay (hidden by default) */
  .channel-browser {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: calc(100vh - 60px);
    top: auto; bottom: 0; left: 0;
    border-right: none;
    border-top: 2px solid var(--tv-red);
    flex-direction: column;
    box-shadow: 0 -12px 40px rgba(0,0,0,0.7);
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.2,0.9,0.2,1);
    z-index: 280;
  }
  body.menu-open .channel-browser { transform: translateY(0); }
  /* Dark backdrop when menu open */
  body.menu-open::after {
    content: '';
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 260;
    animation: fadeIn 0.3s both;
  }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

  .cb-header {
    padding: 14px 18px;
    display: flex; justify-content: space-between; align-items: center;
  }
  .cb-title { font-size: 18px; }
  .cb-date { font-size: 11px; }
  /* Close button (X) added via JS for mobile */
  .cb-close {
    width: 36px; height: 36px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--tv-white);
    font-size: 20px;
    cursor: pointer;
    display: none;
    align-items: center; justify-content: center;
    border-radius: 50%;
  }
  .cb-close:hover { background: var(--tv-red); border-color: var(--tv-red); }
  body.menu-open .cb-close { display: flex; }

  .cb-list {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 8px 12px 12px;
    gap: 4px;
    flex: 1;
    max-height: calc(100vh - 120px);
  }
  .ch-item {
    flex-shrink: 0;
    width: 100%;
    min-width: 0;
    max-width: none;
    padding: 12px 14px;
    grid-template-columns: 40px 1fr;
    gap: 12px;
    margin: 0;
  }
  .ch-num { font-size: 22px; }
  .ch-name { font-size: 15px; }
  .ch-genre { font-size: 11px; }
  .ch-time { font-size: 11px; }
  .cb-foot { display: block; padding: 10px 16px; border-top: 1px solid rgba(225,29,72,0.25); font-size: 10px; }

  /* Stage fills everything between top-ticker and remote */
  .stage { left: 0; right: 0; top: 32px; bottom: 64px; }

  /* Lower-thirds hidden on mobile — info sits in channel browser instead */
  .lower-third { display: none; }

  /* Remote fixed at very bottom — Single row: Sparkasse links, Nav rechts */
  .remote {
    width: calc(100% - 12px);
    max-width: none;
    bottom: 6px;
    right: 50%;
    left: auto;
    transform: translateX(50%);
    flex-direction: row !important;
    align-items: stretch;
    justify-content: space-between;
    padding: 0;
    border-radius: 14px;
    gap: 0;
    height: auto;
    min-height: 56px;
    z-index: 290;
    overflow: hidden;
  }
  .remote-brand { display: none; }
  .remote-minibrand { display: none; }

  /* Sparkasse „ermöglicht von" — LINKS (horizontal: Text NEBEN Logo) */
  .remote-coop {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 6px 10px;
    background: linear-gradient(90deg, rgba(225,29,72,0.14) 0%, rgba(0,0,0,0.25) 100%);
    border-right: 1px solid rgba(245,184,46,0.25);
    flex: 0 0 auto;
    min-width: 0;
  }
  .remote-coop-label {
    font-family: var(--font-mono);
    font-size: 8px;
    line-height: 1.2;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--tv-gold);
    font-weight: 700;
    text-align: right;
    max-width: 52px;
  }
  .remote-coop-logo {
    height: 34px;
    max-height: 38px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.05);
  }

  /* Untere Zeile: Nav-Buttons — RECHTS in der Remote */
  .remote-row {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    padding: 5px 8px;
    flex: 1 1 auto;
    min-width: 0;
  }

  .remote-screen {
    flex: 0 1 auto;
    min-width: 0;
    font-size: 10px;
    padding: 4px 8px;
    max-width: 100px;
    text-align: center;
    justify-content: center;
  }
  .remote-dpad {
    display: flex;
    max-width: none;
    aspect-ratio: auto;
    grid-template-columns: none;
    grid-template-rows: none;
    gap: 3px;
    margin: 0;
    flex-shrink: 0;
  }
  .rb-up, .rb-down { display: none; }
  .rb-left, .rb-right { width: 34px; height: 34px; flex-shrink: 0; }
  .rb-ok { display: none; }

  /* Menu-Button */
  .remote-actions {
    display: flex;
    gap: 4px;
    flex-shrink: 0;
    flex-direction: row;
  }
  .rb-red {
    width: 44px; height: 34px;
    font-size: 9px;
    padding: 0;
    flex-shrink: 0;
  }
  .rb-mute, .rb-power { display: none; }
  body.menu-open .rb-red {
    background: linear-gradient(180deg, var(--tv-gold) 0%, #F59E0B 100%);
    color: #1a1a24;
  }

  /* Stage muss jetzt Platz lassen für: Ticker (28) + Remote (~56) + Margin */
  .stage { bottom: 106px; top: 0; }

  /* Station-ID „präsentiert von" Zeile hide — ist jetzt in der Remote */
  .sid-presented { display: none; }
  /* Logo ganz nach oben */
  .station-id { top: 2px !important; right: 8px !important; }
  .sid-main { gap: 6px; }

  /* === PROG-level responsive === */

  /* Doku */
  .doku-titlecard { width: 94%; }
  .doku-coop { padding: 6px 12px; font-size: 11px; gap: 8px; margin-bottom: 16px; border-radius: 20px; }
  .doku-coop-spk { height: 18px; }
  .doku-coop-euvic { height: 15px; }
  .doku-coop-x { font-size: 14px; }
  .doku-kicker { font-size: 10px; margin-bottom: 20px; letter-spacing: 0.2em; }
  .doku-title { font-size: clamp(14px, 2vw, 18px); margin-bottom: 22px; }
  .doku-headline {
    font-size: clamp(42px, 10vw, 88px);
    margin-bottom: 22px;
    gap: 0.05em 0.15em;
    flex-direction: column;
    line-height: 1;
  }
  .doku-k { font-size: 1em; }
  .doku-sep { display: none; }
  .doku-question { font-size: 0.7em; flex-direction: column; gap: 0.05em; }
  .doku-fluch, .doku-segen { line-height: 0.9; }
  .doku-oder { font-size: 0.5em; color: var(--tv-gold); }
  .doku-credits { font-size: 13px; }
  .doku-credits-and { font-size: 13px; }

  /* Lower third */
  .lower-third { left: 16px; bottom: 150px; }
  .lt-content { padding: 8px 14px; }
  .lt-tag { font-size: 9px; }
  .lt-name { font-size: 14px; }

  /* Werbung */
  .werbung-flash { top: 20px; left: 20px; font-size: 18px; padding: 5px 12px; }
  .ad-card { padding: 28px 22px 26px; width: 92%; max-width: 100%; }
  .ad-card::before { font-size: 10px; padding: 4px 40px; top: 12px; right: -48px; }
  .ad-kicker { font-size: 11px; margin-bottom: 14px; }
  .ad-title { font-size: clamp(48px, 13vw, 86px); margin-bottom: 10px; }
  .ad-title--retro { font-size: clamp(42px, 11vw, 72px); }
  .ad-claim { font-size: clamp(16px, 3.5vw, 22px); margin-bottom: 18px; }
  .ad-feats { grid-template-columns: 1fr; gap: 6px; margin: 18px 0; }
  .ad-feat { font-size: 13px; }
  .ad-disclaimer { font-size: 10px; }
  .ad-cta { font-size: 15px; padding: 10px 22px; }
  .ad-tagline { font-size: 10px; margin-top: 14px; }

  /* Wirtschaft */
  .news-sidebar { width: 64px; padding: 44px 0 20px; }
  .news-clock { font-size: 22px; }
  .news-topic { font-size: 28px; letter-spacing: 0.08em; }
  .news-red-strip { font-size: 9px; padding: 3px 6px; }
  .wirt-content { padding: 32px 24px 32px 86px; }
  .wirt-kicker { font-size: 10px; margin-bottom: 8px; }
  .wirt-title { font-size: clamp(32px, 5.5vw, 52px); margin-bottom: 6px; }
  .wirt-sub { font-size: 14px; }
  .wirt-header { margin-bottom: 22px; }
  .wirt-stats { grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 20px; }
  .wirt-stat { padding: 14px 12px; }
  .wirt-stat-num { font-size: clamp(28px, 7vw, 44px); }
  .wirt-stat-lbl { font-size: 10px; }
  .wirt-quote { font-size: 15px; padding: 14px 18px; margin-bottom: 18px; }
  .wlogo { font-size: 12px; padding: 4px 10px; }

  /* Talkshow */
  .ts-studio { padding: 32px 20px; }
  .ts-kicker { font-size: 10px; margin-bottom: 12px; }
  .ts-title { font-size: clamp(38px, 9vw, 64px); }
  .ts-sub { font-size: 14px; margin-bottom: 28px; }
  .ts-guests { grid-template-columns: 1fr; gap: 10px; margin-bottom: 24px; }
  .ts-guest { padding: 14px 12px; display: grid; grid-template-columns: 70px 1fr; gap: 14px; text-align: left; align-items: center; }
  .ts-photo { width: 70px; height: 70px; margin: 0; }
  .ts-name { font-size: 20px; }
  .ts-job { font-size: 13px; margin-top: 2px; }
  .ts-badge { top: -10px; left: 10px; font-size: 9px; padding: 3px 8px; }
  .ts-applause { padding: 14px 18px; }
  .ts-applause-label { font-size: 10px; }
  .ts-applause-meta { font-size: 9px; }

  /* Wetter */
  .wetter-panel { padding: 28px 20px; }
  .wetter-kicker { font-size: 10px; margin-bottom: 8px; }
  .wetter-title { font-size: clamp(32px, 7vw, 52px); }
  .wetter-moderator { font-size: 14px; }
  .wetter-head { margin-bottom: 20px; }
  .wetter-map { padding: 12px; margin-bottom: 20px; }
  .wetter-legend { grid-template-columns: 1fr; gap: 6px 0; padding: 12px 14px; margin-bottom: 20px; }
  .wetter-legend-item { font-size: 12px; }
  .wetter-forecast { grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 18px; }
  .wf-day { padding: 14px 10px; }
  .wf-day-name { font-size: 9px; margin-bottom: 6px; }
  .wf-icon { font-size: 28px; margin-bottom: 4px; }
  .wf-high { font-size: 22px; }
  .wf-low { font-size: 10px; }
  .wetter-warning { font-size: 11px; padding: 8px 14px; gap: 8px; }
  .ww-ico { font-size: 16px; }

  /* Sport */
  .sport-panel { padding: 28px 16px; }
  .sport-kicker { font-size: 10px; margin-bottom: 6px; }
  .sport-title { font-size: clamp(36px, 8vw, 56px); }
  .sport-sub { font-size: 13px; }
  .sport-head { margin-bottom: 18px; }
  .sport-table {
    font-size: 12px;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  .sport-table th { padding: 8px 6px; font-size: 9px; }
  .sport-table td { padding: 8px 6px; font-size: 12px; }
  .sport-team { font-size: 13px; gap: 8px; white-space: normal; }
  .sport-pos { font-size: 18px; width: 36px; }
  .sport-pts { font-size: 16px; }
  .sport-badge { width: 24px; height: 24px; font-size: 12px; }
  .sport-commentary { flex-direction: column; gap: 14px; padding: 16px 18px; }
  .sport-comment-head { flex-direction: row; width: auto; gap: 10px; align-items: center; }
  .sport-comment-avatar { width: 42px; height: 42px; }
  .sport-comment-name { text-align: left; font-size: 9px; }
  .sport-comment-text { font-size: 14px; }

  /* Live-Studio */
  .live-stage { padding: 32px 20px; }
  .live-onair { padding: 6px 12px; font-size: 11px; }
  .live-kicker { font-size: 10px; }
  .live-title { font-size: clamp(38px, 9vw, 64px); margin-bottom: 6px; }
  .live-sub { font-size: 15px; margin-bottom: 22px; }
  .live-cams { grid-template-columns: 1fr; gap: 10px; margin-bottom: 20px; }
  .live-cam { aspect-ratio: auto; padding: 16px 18px 18px; }
  .cam-badge { font-size: 10px; margin-bottom: 8px; }
  .cam-title { font-size: clamp(20px, 5vw, 28px); }
  .cam-sub { font-size: 12px; }
  .cam-stamp { font-size: 9px; padding: 2px 8px; margin-top: 10px; }
  .live-host { padding: 14px 16px; gap: 14px; }
  .live-host-photo { width: 54px; height: 54px; }
  .live-host-name { font-size: 18px; }
  .live-host-quote { font-size: 13px; }
  .live-host-label { font-size: 9px; }

  /* Quiz — mobile */
  .prog--quiz { padding: 20px 14px; }
  .quiz-wrap { gap: 18px; }
  .quiz-kicker { font-size: 10px; letter-spacing: 0.2em; margin-bottom: 14px; padding: 5px 14px; }
  .quiz-title { font-size: clamp(38px, 10vw, 72px); margin-bottom: 10px; }
  .quiz-sub { font-size: 14px; padding: 0 8px; }
  .quiz-audience { gap: 10px; padding: 0 10px; }
  .aud { font-size: clamp(26px, 6vw, 38px); }
  .quiz-jury { padding: 14px 16px; }
  .jury-label { font-size: 9px; letter-spacing: 0.18em; margin-bottom: 12px; }
  .jury-panel { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .jury-member { padding: 10px 6px; gap: 6px; }
  .jury-photo { width: 42px; height: 42px; }
  .jury-name { font-size: 11px; }
  .quiz-rules { gap: 6px; }
  .quiz-rules li { font-size: 12px; padding: 6px 12px; gap: 6px; }
  .qr-emoji { font-size: 14px; }
  .qspot { width: 260px; height: 260px; }

  /* === Zeitlos / Essen mobile === */
  .zl-stage { padding: 24px 18px; }
  .zl-header { flex-direction: column; align-items: flex-start; gap: 6px; margin-bottom: 14px; padding-bottom: 10px; }
  .zl-kicker { font-size: 10px; letter-spacing: 0.22em; }
  .zl-stamp { font-size: 9px; letter-spacing: 0.1em; }
  .zl-title { margin-bottom: 18px; gap: 2px; }
  .zl-overline { font-size: 14px; }
  .zl-name { font-size: clamp(54px, 15vw, 90px); }
  .zl-sub { font-size: 11px; letter-spacing: 0.1em; }
  .zl-row { grid-template-columns: 1fr; gap: 12px; margin-bottom: 14px; }
  .zl-col { padding: 16px 16px; }
  .zl-col-head { font-size: 10px; letter-spacing: 0.18em; margin-bottom: 12px; }
  .zl-duo { grid-template-columns: 1fr; gap: 10px; }
  .zl-duo-amp { font-size: 32px; text-align: center; }
  .zl-duo-card { padding: 12px 14px; }
  .zl-duo-name { font-size: 19px; }
  .zl-duo-desc { font-size: 12px; }
  .zl-duo-role { font-size: 9px; }
  .zl-quote { font-size: 14px; padding: 12px 14px; }
  .zl-quote cite { font-size: 9px; }
  .zl-signature { padding: 14px 16px; margin-bottom: 12px; }
  .zl-sig-name { font-size: 24px; }
  .zl-sig-fact { font-size: 12px; }
  .zl-sig-fact span { font-size: 9px; }
  .zl-facts { grid-template-columns: repeat(4, 1fr); gap: 6px; margin-bottom: 12px; }
  .zl-fact { padding: 10px 4px; }
  .zl-fact-num { font-size: 20px; }
  .zl-fact-lbl { font-size: 8px; letter-spacing: 0.06em; }
  .zl-style-tags span { font-size: 11px; padding: 3px 8px; }
  .zl-footer { flex-direction: column; align-items: flex-start; gap: 10px; padding: 12px 14px; }
  .zl-foot-divider { display: none; }
  .zl-foot-item { font-size: 12px; }
  .zl-foot-label { font-size: 9px; }

  /* === EUVIC Ad 1 (werbung1) === */
  .ad-euvic { padding: 26px 22px 22px; }
  .ad-euvic::before { font-size: 10px; padding: 4px 42px; right: -46px; top: 14px; }
  .ad-kicker { font-size: 11px; margin-bottom: 12px; }
  .ad-euvic-title { font-size: clamp(40px, 10vw, 60px); gap: 10px; margin: 4px 0 8px; }
  .ad-euvic-logo { height: clamp(36px, 9vw, 54px); }
  .ad-euvic-title span { font-size: 0.65em; }
  .ad-claim { font-size: clamp(14px, 3.5vw, 18px); margin-bottom: 18px; }
  .ad-euvic-head { margin-bottom: 18px; }
  .ad-euvic-grid { grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 18px; }
  .ad-comp { padding: 14px 12px 12px; }
  .ad-comp-badge { font-size: 11px; padding: 2px 8px; top: -8px; }
  .ad-comp-name { font-size: 15px; }
  .ad-comp-desc { font-size: 11px; }
  .ad-comp-tag { font-size: 8px; padding: 2px 6px; margin-top: 6px; letter-spacing: 0.1em; }
  .ad-euvic-stats { grid-template-columns: repeat(4, 1fr); gap: 4px; padding: 12px 0; margin-bottom: 12px; }
  .ad-stat { padding: 2px 4px; }
  .ad-stat b { font-size: clamp(20px, 6vw, 28px); }
  .ad-stat span { font-size: 8px; letter-spacing: 0.08em; }

  /* === EUVIC Ad 2 (werbung2 refs) === */
  .ad-refs { padding: 24px 20px 22px; }
  .ad-refs::before { font-size: 9px; padding: 4px 50px; right: -50px; top: 14px; }
  .ad-refs-title { font-size: clamp(32px, 9vw, 56px); }
  .ad-refs-sub { font-size: clamp(13px, 3.5vw, 16px); }
  .ad-refs-head { margin-bottom: 18px; }
  .ad-branches { grid-template-columns: 1fr; gap: 8px; margin-bottom: 14px; }
  .ad-br { padding: 12px 14px; }
  .ad-br--featured { grid-column: auto; padding: 14px 16px; }
  .ad-br-emoji { font-size: 22px; margin-bottom: 4px; }
  .ad-br-name { font-size: 18px; }
  .ad-br--featured .ad-br-name { font-size: 22px; }
  .ad-br-claim { font-size: 11px; margin-bottom: 8px; }
  .ad-br--featured .ad-br-claim { font-size: 13px; }
  .ad-br-logos span { font-size: 10px; padding: 3px 8px; }
  .ad-br--featured .ad-br-logos span { font-size: 11px; padding: 4px 9px; }
  .ad-refs-awards { grid-template-columns: 1fr; gap: 6px; padding-top: 10px; margin-bottom: 10px; }
  .ad-award { font-size: 12px; }

  /* Sendeschluss */
  .ende-content { padding: 32px 20px; }
  .ende-kicker { font-size: 10px; margin-bottom: 14px; }
  .ende-title { font-size: clamp(54px, 14vw, 100px); margin-bottom: 12px; }
  .ende-sub { font-size: 14px; margin-bottom: 22px; }
  .ende-logos { gap: 16px; padding: 14px 20px; margin-bottom: 22px; }
  .ende-logo { height: 28px; }
  .ende-x { font-size: 20px; }
  .ende-credits { font-size: 12px; max-width: 100%; }
  .ende-credit-row { flex-direction: column; gap: 0; padding: 6px 0; border-bottom: 1px dashed rgba(255,255,255,0.05); }
  .ende-credit-row span { width: auto; font-size: 9px; margin-bottom: 2px; }
  .ende-signoff { padding: 14px; font-size: 14px; margin-top: 18px; }
  .ende-hymne { font-size: 18px; }
  .ende-bier { font-size: 12px; }
}

/* ===== KLEINES HANDY (< 560px) ===== */
@media (max-width: 560px) {
  .sid-logo { font-size: 22px; }
  .sid-logo span { padding: 1px 4px; }
  .sid-tv { font-size: 15px; margin-left: 4px; }
  .station-id { top: 44px; }

  .tt-track { font-size: 13px; gap: 22px; }
  .tt-label { font-size: 9px; padding: 0 8px; }

  .doku-headline { font-size: clamp(36px, 11vw, 68px); }
  .wirt-stats { grid-template-columns: 1fr 1fr; }
  .wetter-forecast { grid-template-columns: 1fr 1fr; }

  /* Even more compact remote on tiny phones */
  .remote {
    width: calc(100% - 10px);
    bottom: 5px;
    padding: 0;
    gap: 0;
  }
  .remote-coop { padding: 5px 8px; gap: 6px; flex-direction: row; max-width: none; }
  .remote-coop-label { font-size: 7px; letter-spacing: 0.12em; max-width: 42px; }
  .remote-coop-logo { height: 28px; }
  .remote-row { flex-direction: row !important; padding: 4px 6px; gap: 3px; }
  .remote-screen { max-width: 80px !important; font-size: 9px !important; padding: 3px 6px !important; }
  .rb-left, .rb-right { width: 30px !important; height: 30px !important; font-size: 11px; }
  .rb-red { width: 38px !important; height: 30px !important; font-size: 8px; }
  .remote-screen { font-size: 10px; padding: 5px 8px; max-width: 120px; }
  .rb-left, .rb-right, .rb-red { width: 36px; height: 36px; }
  .rb-red { font-size: 8px; }
  .top-ticker { bottom: 62px; height: 24px; }
  .tt-track { font-size: 12px; }
  .stage { bottom: 92px; }

  /* Menu grid */
  .menu-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .mt-ch { font-size: 28px; }
  .mt-name { font-size: 13px; }
  .menu { padding: 24px 16px; }
  .menu-title { font-size: 22px; }

  /* Channel list items on very small screens */
  .ch-item { padding: 10px 12px; grid-template-columns: 36px 1fr; gap: 10px; }
  .ch-num { font-size: 20px; }
  .ch-name { font-size: 14px; }
}

/* ===== LANDSCAPE PHONE ===== */
@media (max-height: 500px) and (orientation: landscape) {
  .top-ticker {
    height: 22px; left: 0; right: 0;
    top: auto; bottom: 56px;
    border-top: 1px solid rgba(225,29,72,0.4);
  }
  .tt-track { font-size: 11px; animation-duration: 24s; gap: 18px; }
  .tt-label { font-size: 9px; padding: 0 8px; }
  .station-id { top: 6px; }
  .sid-logo { font-size: 16px; }
  .sid-tv { display: none; }

  /* Stage leaves room for: ticker (22) + remote (~48) + margin at bottom */
  .stage { top: 0; bottom: 82px; left: 0; right: 0; }

  /* Remote compact (2-row) */
  .remote {
    bottom: 4px;
    width: calc(100% - 10px);
    padding: 0;
    height: auto;
    border-radius: 10px;
  }
  .remote-coop { padding: 4px 8px; gap: 5px; flex-direction: row; max-width: none; }
  .remote-coop-label { font-size: 6px; letter-spacing: 0.1em; max-width: 36px; }
  .remote-coop-logo { height: 24px; }
  .remote-row { flex-direction: row !important; padding: 3px 6px; gap: 3px; }
  .remote-screen { font-size: 10px; padding: 3px 8px; max-width: 130px; }
  .rb-left, .rb-right, .rb-red { width: 32px; height: 32px; }

  /* Channel browser overlay stays bottom on landscape too */
  .channel-browser { max-height: calc(100vh - 60px); }
  .cb-list { max-height: calc(100vh - 130px); }

  /* Compact prog content */
  .prog-content, .wirt-content, .ts-studio, .wetter-panel, .sport-panel,
  .live-stage, .quiz-stage, .ende-content, .zl-stage { padding: 18px 32px; }
  .doku-headline { font-size: clamp(38px, 10vh, 80px); }
  .wirt-title, .ts-title, .wetter-title, .sport-title, .live-title, .quiz-title, .ende-title {
    font-size: clamp(28px, 7vh, 52px);
  }
  .wirt-stats, .wetter-forecast { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .ts-guests { grid-template-columns: repeat(3, 1fr); }
  .live-cams { grid-template-columns: repeat(3, 1fr); }
  .zl-row { grid-template-columns: 1fr 1fr; }
  .ad-card { padding: 20px 26px; }
  .ad-title { font-size: clamp(40px, 10vh, 72px); }
}
