:root {
  --bg: #ffffff;
  --fg: #1a1a1a;
  --muted: #666666;
  --border: #e0e0e0;
  --card-bg: #fafafa;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #1a1a1a;
    --fg: #e0e0e0;
    --muted: #999999;
    --border: #333333;
    --card-bg: #222222;
  }
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.podcast-artwork {
  width: 200px;
  height: 200px;
  border-radius: 12px;
  margin-bottom: 1rem;
}

h1 { margin-bottom: 0.5rem; }

.podcast-description {
  color: var(--muted);
  margin-bottom: 1rem;
}

.subscribe a {
  color: var(--fg);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 0.4rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
}
.subscribe a:hover { background: var(--card-bg); }

.episode {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.episode h2 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.episode-meta {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
}

.episode-meta .duration::before {
  content: " \2022  ";
}

.episode-description {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

audio {
  width: 100%;
}
