@import url('https://fonts.googleapis.com/css2?family=VT323&family=Share+Tech+Mono&family=Orbitron:wght@400;700;900&display=swap');

:root {
  --bg: #0a0007;
  --neon-red: #FF2D55;
  --neon-yellow: #D4FF00;
  --neon-cyan: #00FFFF;
  --tv-bezel: #1a1015;
  --tv-bezel-light: #2d1f27;
  --screen-glow: rgba(0,255,255,0.08);
  --phosphor: #00ff88;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 12px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  border-bottom: 1px solid rgba(212,255,0,0.15);
}

.logo {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: var(--neon-yellow);
  letter-spacing: 6px;
  text-shadow: 0 0 20px rgba(212,255,0,0.8), 0 0 40px rgba(212,255,0,0.4);
}

.logo span {
  color: var(--neon-red);
  text-shadow: 0 0 20px rgba(255,45,85,0.8);
}

.signal-info {
  font-family: 'VT323', monospace;
  font-size: 18px;
  color: var(--phosphor);
  opacity: 0.8;
}

.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--neon-red);
  border-radius: 50%;
  margin-right: 8px;
  animation: blink 1s infinite;
  box-shadow: 0 0 8px var(--neon-red);
}

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