.listen_page {
  padding: 60px 0 80px;
  min-height: 70vh;
}

/* ── Hero ── */
.listen_hero {
  background: linear-gradient(135deg, #111111 0%, #0d1a00 100%);
  border-radius: 16px;
  border: 1px solid #1a2a0a;
  padding: 40px 36px;
  margin-bottom: 32px;
}
.listen_hero .hero_label {
  font-size: 12px;
  font-weight: 600;
  color: var(--mc);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0 0 8px;
}
.listen_hero .hero_title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: -0.3px;
}
.listen_hero .hero_desc {
  font-size: 15px;
  color: #777;
  margin: 0;
  line-height: 1.6;
}

/* ── Date Selector ── */
.listen_dates {
  display: flex;
  gap: 10px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.listen_date_btn {
  padding: 10px 20px;
  border-radius: 8px;
  border: 1px solid #1e1e1e;
  background: #111;
  color: #999;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.listen_date_btn:hover {
  border-color: #333;
  color: #ccc;
}
.listen_date_btn.active {
  border-color: var(--mc);
  color: var(--mc);
  background: rgba(120, 247, 1, 0.08);
}

/* ── Player Card ── */
.listen_player_card {
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 32px;
}
.listen_player_header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.listen_play_btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--mc);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.15s, opacity 0.15s;
}
.listen_play_btn:hover {
  transform: scale(1.05);
  opacity: 0.9;
}
.listen_play_btn svg {
  width: 22px;
  height: 22px;
  fill: #050505;
  margin-left: 2px;
}
.listen_play_btn.playing svg {
  margin-left: 0;
}
.listen_player_info h3 {
  font-size: 18px;
  color: #fff;
  margin: 0 0 4px;
  font-weight: 600;
}
.listen_player_info p {
  font-size: 13px;
  color: #666;
  margin: 0;
}

/* ── Progress Bar ── */
.listen_progress_wrap {
  margin-bottom: 12px;
}
.listen_progress_bar {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: #1e1e1e;
  cursor: pointer;
  position: relative;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  border: none;
}
.listen_progress_bar::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--mc);
  cursor: pointer;
  margin-top: -4px;
}
.listen_progress_bar::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(to right, var(--mc) 0%, var(--mc) var(--progress, 0%), #1e1e1e var(--progress, 0%));
}
.listen_progress_bar::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--mc);
  cursor: pointer;
  border: none;
}
.listen_progress_bar::-moz-range-track {
  height: 6px;
  border-radius: 3px;
  background: #1e1e1e;
}
.listen_progress_bar::-moz-range-progress {
  height: 6px;
  border-radius: 3px;
  background: var(--mc);
}
.listen_time {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #555;
}

/* ── Volume ── */
.listen_controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}
.listen_speed_btn {
  padding: 4px 12px;
  border-radius: 4px;
  border: 1px solid #1e1e1e;
  background: transparent;
  color: #999;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s;
}
.listen_speed_btn:hover,
.listen_speed_btn.active {
  border-color: var(--mc);
  color: var(--mc);
}
.listen_volume_wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.listen_volume_icon {
  color: #666;
  font-size: 16px;
  cursor: pointer;
}
.listen_volume_bar {
  width: 80px;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 2px;
  background: #1e1e1e;
  outline: none;
  cursor: pointer;
}
.listen_volume_bar::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #999;
  cursor: pointer;
}
.listen_volume_bar::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #999;
  border: none;
}

/* ── Episode List ── */
.listen_episode_list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.listen_episode {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.listen_episode:hover {
  border-color: #333;
}
.listen_episode.active {
  border-color: var(--mc);
}
.listen_episode_play {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1e1e1e;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s;
}
.listen_episode.active .listen_episode_play {
  background: var(--mc);
}
.listen_episode_play svg {
  width: 14px;
  height: 14px;
  fill: #999;
  margin-left: 1px;
}
.listen_episode.active .listen_episode_play svg {
  fill: #050505;
}
.listen_episode_info {
  flex: 1;
  min-width: 0;
}
.listen_episode_info h4 {
  font-size: 15px;
  color: #e0e0e0;
  margin: 0 0 4px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.listen_episode_info p {
  font-size: 12px;
  color: #666;
  margin: 0;
}
.listen_episode_count {
  font-size: 12px;
  color: #555;
  white-space: nowrap;
}

/* ── Empty State ── */
.listen_empty {
  text-align: center;
  padding: 60px 20px;
  color: #555;
}
.listen_empty h3 {
  font-size: 18px;
  color: #999;
  margin: 0 0 8px;
}
.listen_empty p {
  font-size: 14px;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .listen_hero {
    padding: 28px 20px;
  }
  .listen_hero .hero_title {
    font-size: 22px;
  }
  .listen_player_card {
    padding: 20px;
  }
  .listen_controls {
    flex-wrap: wrap;
  }
  .listen_volume_wrap {
    margin-left: 0;
  }
}
