
/* MAIN LAYOUT */
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 40px;
  flex-wrap: wrap;
}

/* 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 TABS */
.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;
}

/* PLAYER UI */
.audio {
  text-align: center;
  width: 100%;
  padding: 20px;
}

.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;
}