/* =========================
   RESET
========================= */
html, body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: Arial, sans-serif;
}

/* =========================
   BACKGROUND
========================= */
body {
  background-image: url("website background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: black;
  color: white;
}

/* =========================
   NAVBAR
========================= */
.navbar {
  background: red;
  display: flex;
  justify-content: space-between;
  padding: 15px 25px;
  align-items: center;
}

.logo {
  color: white;
  font-weight: bold;
}

.nav-links a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
}

/* =========================
   TITLE BAR
========================= */
.title {
  background: red;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 24px;
  font-weight: bold;
}

/* =========================
   MAIN LAYOUT
========================= */
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 40px;
  flex-wrap: wrap;
}

/* LEFT IMAGE */
.left img {
  width: 375px;
  height: 475px;
  border-radius: 10px;
}

/* RIGHT PANEL */
.right {
  background: red;
  padding: 20px;
  border-radius: 10px;
  width: 350px;
  color: white;
}

/* =========================
   SEASON BUTTONS (PLAYER PAGE)
========================= */
.season-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}

.season-tabs button {
  padding: 8px 12px;
  border: none;
  cursor: pointer;
  background: white;
  color: red;
  font-weight: bold;
  border-radius: 5px;
}

/* EPISODE LIST */
.season {
  max-height: 300px;
  overflow-y: auto;
}

.season button {
  width: 100%;
  margin: 5px 0;
  text-align: left;
  padding: 8px;
  border: none;
  border-radius: 5px;
  background: white;
  color: red;
  font-weight: bold;
  cursor: pointer;
}

.season button:hover {
  opacity: 0.85;
}

/* =========================
   AUDIO AREA
========================= */
.audio {
  text-align: center;
  width: 100%;
  padding: 20px;
}

/* =========================
   NOW PLAYING (PLAYER PAGE)
========================= */
.player-info {
  text-align: center;
  margin-top: 10px;
}

#nowPlaying {
  background: red;
  display: inline-block;
  padding: 10px 15px;
  border-radius: 10px;
  font-weight: bold;
  margin-bottom: 8px;
}

#progress {
  color: white;
  font-size: 14px;
}

/* =========================
   INFO BOX (CHARACTER PAGE FIX)
========================= */
.info-box {
  margin-top: 15px;
  background: red !important;
  color: white !important;
  padding: 15px;
  border-radius: 10px;
  width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* =========================
   CHARACTER PAGE BUTTONS
========================= */
.right h2 {
  margin-top: 0;
  text-align: center;
}

.right button {
  width: 100%;
  margin: 5px 0;
  padding: 8px;
  border: none;
  border-radius: 5px;
  background: white;
  color: red;
  font-weight: bold;
  cursor: pointer;
}

.right button:hover {
  opacity: 0.85;
}

/* =========================
   TRANSCRIPTS
========================= */
.transcripts {
  margin-top: 5px;
  background: red;
  color: white;
  padding: 10px;
  border-radius: 10px;
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-height: 300px;
  overflow-y: auto;
}

.transcript-link {
  display: block;
  background: white;
  color: red;
  padding: 8px;
  margin: 5px 0;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}