@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --accent: #e07b2a;
  --accent-2: #b84d08;
  --accent-hover: #c46318;
  --accent-light: #fef3eb;
  --bg: #ffffff;
  --bg-2: #f9f7f5;
  --header-bg: #0f0c08;
  --text: #111827;
  --text-2: #4b5563;
  --text-3: #9ca3af;
  --border: #e5e7eb;
  --radius: 10px;
  --shadow: 0 1px 3px rgba(0,0,0,.08);
  --shadow-hover: 0 6px 20px rgba(0,0,0,.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  padding-bottom: 80px;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ── HEADER ── */
.site-header {
  background: var(--header-bg);
  position: sticky;
  top: 0;
  z-index: 100;
  height: 64px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  white-space: nowrap;
  flex-shrink: 0;
}

.logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-text {
  font-size: .9rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
}

.site-nav { display: flex; gap: 4px; flex-wrap: wrap; }

.site-nav a {
  color: rgba(255,255,255,.6);
  font-size: .875rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 6px;
  transition: all .15s;
}

.site-nav a:hover, .site-nav a.active {
  color: white;
  background: rgba(255,255,255,.09);
}

.nav-cta {
  background: var(--accent) !important;
  color: white !important;
}

.nav-cta:hover { background: var(--accent-hover) !important; }

/* ── CONTAINER ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #0f0c08 0%, #1a0f05 50%, #0f120d 100%);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(224,123,42,.2) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(184,77,8,.15) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #f4a261;
  background: rgba(224,123,42,.15);
  border: 1px solid rgba(224,123,42,.3);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 2.9rem;
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-title .gradient-text {
  background: linear-gradient(90deg, #f4a261, #e07b2a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  font-size: .9rem;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224,123,42,.4);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,.15);
  cursor: pointer;
  transition: all .2s;
}

.btn-ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.3);
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.hero-stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.hero-stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  margin-top: 4px;
}

.hero-art {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,.6);
  border: 1px solid rgba(255,255,255,.08);
  background: #1a1008;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.art-placeholder {
  text-align: center;
  color: rgba(255,255,255,.3);
  padding: 24px;
  font-size: .85rem;
  line-height: 1.6;
}

/* ── PLATFORMS ── */
.platforms {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}

.platforms-label {
  text-align: center;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-3);
  margin-bottom: 20px;
}

.platform-list {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-2);
  transition: all .2s;
}

.platform-badge:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 2px 8px rgba(224,123,42,.12);
}

.platform-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── SECTION BASE ── */
.section { padding: 72px 0; }
.section-alt { background: var(--bg-2); }

.section-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  margin-bottom: 10px;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 12px;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-2);
  max-width: 520px;
  line-height: 1.7;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 16px;
}

.view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
  transition: gap .15s;
}

.view-all:hover { gap: 10px; }

/* ── EPISODE CARDS (homepage) ── */
.episodes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.episode-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  cursor: pointer;
  transition: all .2s;
}

.episode-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.ep-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: .78rem;
  color: var(--text-3);
}

.ep-num-badge {
  background: var(--accent-light);
  color: var(--accent);
  font-weight: 700;
  font-size: .72rem;
  padding: 2px 8px;
  border-radius: 4px;
}

.ep-card-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 10px;
}

.ep-card-desc {
  font-size: .825rem;
  color: var(--text-2);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ep-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.ep-duration { font-size: .8rem; color: var(--text-3); font-weight: 500; }

.play-sm {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all .2s;
  flex-shrink: 0;
}

.play-sm:hover { background: var(--accent-hover); transform: scale(1.1); }

/* ── REVIEWS SLIDER ── */
.reviews-section {
  background: var(--header-bg);
  padding: 72px 0;
  overflow: hidden;
}

.reviews-section .section-label { color: #f4a261; }
.reviews-section .section-title { color: white; }

.reviews-slider-wrap { position: relative; margin-top: 40px; }

.reviews-track {
  display: flex;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}

.review-slide {
  min-width: 100%;
  padding: 0 40px;
}

.review-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 36px 40px;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.review-quote {
  font-size: 3rem;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 16px;
  font-family: Georgia, serif;
  opacity: .7;
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.star { color: #f59e0b; font-size: 1.1rem; }

.review-text {
  font-size: 1rem;
  color: rgba(255,255,255,.8);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}

.review-name { font-weight: 700; color: white; font-size: .9rem; }
.review-source { font-size: .78rem; color: rgba(255,255,255,.4); margin-top: 2px; }

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.slider-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .15s;
  font-size: 1rem;
}

.slider-btn:hover { background: rgba(255,255,255,.14); color: white; }

.slider-dots { display: flex; gap: 6px; }

.slider-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  cursor: pointer;
  transition: all .2s;
  border: none;
}

.slider-dot.active {
  background: var(--accent);
  width: 20px;
  border-radius: 4px;
}

/* ── ABOUT (homepage snippet) ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-body { font-size: 1rem; color: var(--text-2); line-height: 1.75; margin-bottom: 20px; }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

.stat-box {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}

.stat-num {
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label { font-size: .8rem; color: var(--text-2); margin-top: 4px; }

.about-image {
  border-radius: 20px;
  overflow: hidden;
  background: var(--accent-light);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}

.about-image img { width: 100%; height: 100%; object-fit: cover; }

/* ── ABOUT PAGE ── */
.about-hero {
  background: linear-gradient(135deg, #0f0c08 0%, #1a0f05 100%);
  padding: 60px 0;
}

.about-hero h1 { font-size: 2.5rem; font-weight: 800; color: white; margin-bottom: 10px; }
.about-hero p { color: rgba(255,255,255,.55); font-size: 1.05rem; }

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.about-bio-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: start;
  padding: 72px 0;
}

.about-bio h2 { font-size: 1.75rem; font-weight: 800; margin-bottom: 20px; }
.about-bio p { color: var(--text-2); line-height: 1.8; margin-bottom: 16px; font-size: .975rem; }
.about-bio strong { color: var(--text); }

.about-mission {
  background: var(--accent-light);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px;
  margin: 28px 0;
}

.about-mission p {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin: 0;
}

.about-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  position: sticky;
  top: 84px;
}

.about-card-art {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #1a0f05, #0f0c08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.about-card-art img { width: 100%; height: 100%; object-fit: contain; }

.about-card-body { padding: 24px; }
.about-card-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.about-card-body p { font-size: .82rem; color: var(--text-2); }

.about-card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
}

.about-card-stat {
  background: white;
  padding: 16px;
  text-align: center;
}

.about-card-stat .num {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.about-card-stat .lbl { font-size: .72rem; color: var(--text-3); margin-top: 3px; }

.guests-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.guest-pill {
  padding: 5px 14px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 500;
  color: var(--text-2);
}

/* ── NEWSLETTER ── */
.newsletter {
  background: linear-gradient(135deg, #0f0c08 0%, #1a0f05 100%);
  padding: 72px 0;
}

.newsletter-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}

.newsletter h2 { font-size: 1.875rem; font-weight: 800; color: white; margin-bottom: 10px; }
.newsletter p { color: rgba(255,255,255,.6); margin-bottom: 28px; }

.newsletter-form { display: flex; gap: 8px; }

.newsletter-form input {
  flex: 1;
  padding: 12px 18px;
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 50px;
  color: white;
  font-size: .9rem;
  font-family: inherit;
  outline: none;
  transition: border-color .2s;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,.35); }
.newsletter-form input:focus { border-color: rgba(255,255,255,.4); }

/* ── FOOTER ── */
.site-footer {
  background: var(--header-bg);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p { font-size: .85rem; color: rgba(255,255,255,.45); line-height: 1.7; margin-top: 12px; }

.footer-col h4 {
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }

.footer-col a {
  font-size: .875rem;
  color: rgba(255,255,255,.45);
  transition: color .15s;
}

.footer-col a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}

/* ══════════════════════════════════════════
   EPISODES PAGE
══════════════════════════════════════════ */

.page-hero {
  background: linear-gradient(135deg, #0f0c08 0%, #1a0f05 100%);
  padding: 44px 0 48px;
}

.page-hero h1 { font-size: 2.25rem; font-weight: 800; color: white; margin-bottom: 8px; }
.page-hero p { color: rgba(255,255,255,.55); font-size: 1rem; }

.search-bar-wrap {
  position: sticky;
  top: 64px;
  z-index: 50;
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.search-inner {
  display: flex;
  align-items: center;
  gap: 14px;
}

.search-box { position: relative; flex: 1; }

.search-box svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-3);
  pointer-events: none;
}

.search-box input {
  width: 100%;
  padding: 11px 16px 11px 42px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .9rem;
  font-family: inherit;
  background: var(--bg-2);
  color: var(--text);
  outline: none;
  transition: all .2s;
}

.search-box input:focus {
  border-color: var(--accent);
  background: white;
  box-shadow: 0 0 0 3px rgba(224,123,42,.08);
}

.results-count {
  font-size: .82rem;
  color: var(--text-3);
  font-weight: 500;
  white-space: nowrap;
}

.episodes-section { padding: 16px 0 48px; }

.episode-row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 12px;
  border-radius: var(--radius);
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background .12s;
}

.episode-row:last-child { border-bottom: none; }
.episode-row:hover { background: var(--bg-2); }
.episode-row.is-playing { background: var(--accent-light); }
.episode-row.no-audio { cursor: default; opacity: .55; }

.row-play {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.row-ep-num {
  font-size: .7rem;
  font-weight: 700;
  color: var(--text-3);
  letter-spacing: .04em;
}

.row-play-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all .18s;
  flex-shrink: 0;
}

.row-play-btn:hover { background: var(--accent-hover); transform: scale(1.08); }
.is-playing .row-play-btn { background: var(--accent-2); }
.no-audio .row-play-btn { background: var(--text-3); cursor: not-allowed; }
.no-audio .row-play-btn:hover { transform: none; }

.row-info { min-width: 0; }

.row-date { font-size: .75rem; color: var(--text-3); font-weight: 500; margin-bottom: 4px; }
.row-title { font-size: .95rem; font-weight: 700; color: var(--text); line-height: 1.4; margin-bottom: 5px; }
.row-desc {
  font-size: .825rem;
  color: var(--text-2);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.row-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

.row-duration { font-size: .8rem; color: var(--text-3); font-weight: 500; }

.row-dl {
  font-size: .75rem;
  color: var(--text-3);
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 5px;
  transition: all .15s;
}

.row-dl:hover { border-color: var(--accent); color: var(--accent); }

.no-results {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-3);
}

.no-results p { font-size: .95rem; margin-top: 12px; }

/* ══════════════════════════════════════════
   AUDIO PLAYER
══════════════════════════════════════════ */
.audio-player {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: #111827;
  border-top: 1px solid rgba(255,255,255,.07);
  display: grid;
  grid-template-columns: 260px 1fr 180px;
  align-items: center;
  padding: 0 24px;
  gap: 24px;
  z-index: 200;
  transform: translateY(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}

.audio-player.visible { transform: translateY(0); }

.player-info { display: flex; align-items: center; gap: 12px; min-width: 0; }

.player-thumb {
  width: 50px;
  height: 50px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.player-thumb img { width: 100%; height: 100%; object-fit: cover; }

.player-text { min-width: 0; }

.player-title {
  font-size: .82rem;
  font-weight: 600;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-ep-info { font-size: .72rem; color: rgba(255,255,255,.45); margin-top: 2px; }

.player-controls { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.player-buttons { display: flex; align-items: center; gap: 10px; }

.ctrl {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border-radius: 4px;
  transition: color .15s;
}

.ctrl:hover { color: white; }

.ctrl-main {
  width: 38px;
  height: 38px;
  background: white;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111827;
  transition: transform .15s, opacity .15s;
}

.ctrl-main:hover { transform: scale(1.07); }

.player-progress-wrap { width: 100%; display: flex; align-items: center; gap: 8px; }

.prog-time { font-size: .7rem; color: rgba(255,255,255,.4); min-width: 34px; text-align: center; }

.prog-bar {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,.12);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}

.prog-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  width: 0%;
  pointer-events: none;
  transition: width .1s linear;
}

.player-volume {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
}

.player-volume input[type=range] {
  width: 80px;
  accent-color: var(--accent);
  cursor: pointer;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { display: none; }
  .hero-title { font-size: 2.2rem; }
  .episodes-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .about-bio-grid { grid-template-columns: 1fr; }
  .about-card { position: static; }
  .audio-player { grid-template-columns: 1fr auto; }
  .player-volume { display: none; }
}

@media (max-width: 600px) {
  .hero-title { font-size: 1.75rem; }
  .episodes-grid { grid-template-columns: 1fr; }
  .episode-row { grid-template-columns: 52px 1fr; }
  .row-meta { display: none; }
  .newsletter-form { flex-direction: column; }
  .hero-stats { gap: 20px; }
  .audio-player { grid-template-columns: 1fr auto; padding: 0 14px; gap: 12px; }
  .review-slide { padding: 0 16px; }
  .review-card { padding: 24px 20px; }
}
