:root {
  --bg: #0f1118;
  --panel: #171b25;
  --panel-2: #1f2532;
  --text: #eef3ff;
  --muted: #bac5df;
  --accent: #eb7f2d;
  --accent-2: #f3c255;
  --line: #33405a;
  --shadow: 0 16px 40px rgba(0,0,0,.32);
  --radius: 18px;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(235,127,45,.12), transparent 30%),
    radial-gradient(circle at top right, rgba(243,194,85,.10), transparent 25%),
    linear-gradient(180deg, #0d1017, #151a24 35%, #10131b 100%);
  color: var(--text);
  line-height: 1.55;
}
a { color: #ffd486; text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
header.site-header { padding: 24px 0 12px; }
.topbar { display:flex; justify-content:space-between; align-items:center; gap:12px; flex-wrap:wrap; }
.brand { font-size: 1.65rem; font-weight: 800; letter-spacing:.02em; }
.badge { background: rgba(243,194,85,.12); color: #ffe3aa; border:1px solid rgba(243,194,85,.25); border-radius:999px; padding:8px 14px; font-size:.92rem; }
.hero {
  margin: 20px 0 28px;
  background: linear-gradient(135deg, rgba(31,37,50,.9), rgba(23,27,37,.92));
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-grid { display:grid; grid-template-columns: 1.08fr .92fr; gap: 0; }
.hero-copy { padding: 42px 34px 34px; }
.hero h1 { margin:0 0 12px; font-size: clamp(2rem, 4vw, 3.5rem); line-height:1.02; }
.hero p { color: var(--muted); margin: 0 0 16px; max-width: 64ch; }
.cta-row { display:flex; gap:12px; flex-wrap:wrap; margin-top:24px; }
.btn {
  display:inline-flex; align-items:center; gap:8px;
  padding: 12px 18px; border-radius: 999px; font-weight:700;
  border:1px solid rgba(255,255,255,.08); background: var(--panel-2); color: var(--text);
}
.btn.primary { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color:#23170b; border:none; }
.hero-art {
  min-height: 360px;
  background: radial-gradient(circle at 30% 20%, rgba(243,194,85,.18), transparent 22%), linear-gradient(180deg, #181d27, #11151d);
  display:flex; align-items:stretch; justify-content:center;
}
.hero-art img { width:100%; height:100%; object-fit:cover; display:block; }
.section-title { font-size:1.65rem; margin: 38px 0 14px; }
.episode-grid { display:grid; gap:18px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card {
  background: rgba(23,27,37,.9);
  border:1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 18px 18px 16px;
  box-shadow: var(--shadow);
}
.card h3 { margin:0 0 8px; font-size:1.15rem; }
.meta { color: var(--muted); font-size:.95rem; margin-bottom:12px; }
.card p { margin:0 0 12px; color:#d8e2f8; }
audio { width:100%; margin:8px 0 6px; }
.footer { color: var(--muted); font-size:.95rem; padding: 28px 0 44px; }
.empty { background: rgba(255,255,255,.03); padding: 24px; border-radius: var(--radius); color: var(--muted); }
.note { color: var(--muted); font-size:.95rem; }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { min-height: 280px; }
  .hero-copy { padding: 28px 22px; }
}
