/* =====================================================
   COOKING THE GOOD NETWORK — Cinematic Hip-Hop Theme
   Visual overlay layer — does NOT affect functionality
   ===================================================== */

/* GLOBAL BACKGROUND */
body {
  background: #000000;
  background-image: url("/assets/fire-background.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

/* ATMOSPHERIC FIRE / SMOKE OVERLAY */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    url("/assets/skull-smoke-overlay.png"),
    radial-gradient(circle at center, rgba(255, 80, 0, 0.35), rgba(0, 0, 0, 0.95));
  opacity: 0.35;
  pointer-events: none;
  z-index: -1;
}

/* NEON CINEMATIC TITLE STYLE */
h1, h2, h3, .station-title {
  color: #ff6a00;
  letter-spacing: 2px;
  text-shadow:
    0 0 10px #ff6a00,
    0 0 25px #ff6a00,
    0 0 45px #ff2a00,
    0 0 75px rgba(255, 80, 0, 0.8);
}

/* RADIO PLAYER CINEMATIC CONSOLE */
.radio-player {
  background: rgba(10, 10, 10, 0.85);
  border: 2px solid #ff6a00;
  border-radius: 14px;
  padding: 20px;
  box-shadow:
    0 0 30px #ff6a00,
    0 0 60px rgba(255, 80, 0, 0.5),
    inset 0 0 25px rgba(255, 80, 0, 0.4);
}

/* PLAYER BUTTONS */
button {
  background: #111;
  color: #ff6a00;
  border: 1px solid #ff6a00;
  box-shadow: 0 0 10px #ff6a00;
  transition: all 0.25s ease;
}

button:hover {
  background: #ff6a00;
  color: #000;
  box-shadow:
    0 0 20px #ff6a00,
    0 0 35px #ff2a00,
    0 0 60px rgba(255, 80, 0, 0.8);
}

/* DJ CARD DESIGN */
.dj-card {
  background: rgba(0, 0, 0, 0.8);
  border: 2px solid #ff6a00;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 0 20px rgba(255, 90, 0, 0.7);
  transition: all 0.3s ease;
}

.dj-card:hover {
  transform: scale(1.04);
  box-shadow:
    0 0 40px #ff6a00,
    0 0 70px rgba(255, 80, 0, 0.9);
}

/* NOW PLAYING PANEL */
.now-playing {
  background: rgba(0, 0, 0, 0.85);
  border-left: 4px solid #ff6a00;
  padding: 12px;
  box-shadow: 0 0 20px rgba(255, 80, 0, 0.6);
}

/* LIVE RADIO INDICATOR */
.live-indicator {
  color: #ff3300;
  font-weight: bold;
  text-shadow:
    0 0 10px #ff3300,
    0 0 25px #ff0000,
    0 0 45px rgba(255, 0, 0, 0.8);
}

/* =====================================================
   CINEMATIC INTRO SCREEN
   Fades out automatically after 4 seconds
   ===================================================== */
#cinematicIntro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #ff6a00;
  letter-spacing: 6px;
  text-shadow:
    0 0 20px #ff6a00,
    0 0 60px #ff2a00,
    0 0 120px rgba(255, 80, 0, 0.9);
  z-index: 9999;
  animation: introFade 4s forwards;
}

@keyframes introFade {
  0%   { opacity: 1; }
  80%  { opacity: 1; }
  100% { opacity: 0; visibility: hidden; }
}
