/* === DOLLE SACHE TV — 90s German Private Television Style === */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Oswald:wght@400;700&display=swap');

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

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
  font-family: 'Oswald', 'Arial Black', Impact, sans-serif;
}

/* ---- Fullscreen Background Video ---- */

.video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* ---- CRT / VHS Overlay for 90s feel ---- */

.overlay-scanlines {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 2px,
    rgba(0, 0, 0, 0.15) 2px,
    rgba(0, 0, 0, 0.15) 4px
  );
}

.overlay-vignette {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(
    ellipse at center,
    transparent 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

/* ---- Main Content ---- */

.content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  text-align: center;
}

/* ---- Logo ---- */

.logo {
  width: min(70vw, 550px);
  height: auto;
  margin-bottom: 2rem;
  filter: drop-shadow(0 0 25px rgba(255, 165, 0, 0.5));
  animation: logo-pulse 4s ease-in-out infinite;
}

@keyframes logo-pulse {
  0%, 100% { filter: drop-shadow(0 0 25px rgba(255, 165, 0, 0.5)); }
  50%      { filter: drop-shadow(0 0 45px rgba(255, 215, 0, 0.8)); }
}

/* ---- Slogan ---- */

.slogan {
  font-family: 'Anton', 'Arial Black', Impact, sans-serif;
  font-size: clamp(1.4rem, 4vw, 3.2rem);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  text-shadow:
    0 0 10px rgba(255, 165, 0, 0.8),
    0 0 30px rgba(255, 165, 0, 0.4),
    3px 3px 0 rgba(0, 0, 0, 0.6);
  padding: 0.6em 1.2em;
  border-top: 3px solid rgba(255, 215, 0, 0.6);
  border-bottom: 3px solid rgba(255, 215, 0, 0.6);
  animation: slogan-flicker 6s ease-in-out infinite;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 165, 0, 0.08),
    transparent
  );
}

@keyframes slogan-flicker {
  0%, 100% { opacity: 1; }
  48%      { opacity: 1; }
  49%      { opacity: 0.85; }
  50%      { opacity: 1; }
  77%      { opacity: 1; }
  78%      { opacity: 0.9; }
  79%      { opacity: 1; }
}

/* ---- Bottom Bar — 90s ticker style ---- */

.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 4;
  background: linear-gradient(to right, #1a0a3e, #2d1b69, #1a0a3e);
  border-top: 3px solid #FFD700;
  padding: 0.5rem 0;
  overflow: hidden;
}

.ticker {
  display: inline-block;
  white-space: nowrap;
  animation: ticker-scroll 25s linear infinite;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  color: #FFD700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(100vw); }
  100% { transform: translateX(-100%); }
}

.ticker span {
  padding: 0 2rem;
}

.ticker .dot {
  color: #FF6B00;
  font-size: 1.2em;
}

/* ---- Top Corner: LIVE badge ---- */

.live-badge {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 5;
  background: #cc0000;
  color: #fff;
  font-family: 'Anton', Impact, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  padding: 0.3em 1em;
  border-radius: 4px;
  box-shadow: 0 0 15px rgba(204, 0, 0, 0.7);
  animation: live-blink 1.5s ease-in-out infinite;
}

@keyframes live-blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}

/* ---- Mute / Unmute Button ---- */

.mute-btn {
  position: fixed;
  bottom: 3.5rem;
  right: 1.5rem;
  z-index: 5;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(255, 215, 0, 0.6);
  color: #FFD700;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  backdrop-filter: blur(4px);
}

.mute-btn:hover {
  background: rgba(255, 165, 0, 0.3);
  border-color: #FFD700;
}

/* ---- Responsive ---- */

@media (max-width: 600px) {
  .logo {
    width: 85vw;
    margin-bottom: 1.2rem;
  }
  .slogan {
    letter-spacing: 0.12em;
    padding: 0.4em 0.8em;
  }
  .live-badge {
    top: 0.8rem;
    right: 0.8rem;
    font-size: 0.8rem;
  }
}
