/* CSS propio de ana — tema morado, serif. Demuestra el CSS por usuario. */
:root { --bg:#fbf7ff; --fg:#2a2336; --muted:#7a6e8c; --accent:#7d3cc9; --line:#e7dcf5; }
@media (prefers-color-scheme: dark) {
  :root { --bg:#1a1426; --fg:#ece6f5; --muted:#a796c2; --accent:#c79cf2; --line:#332a45; }
}
* { box-sizing: border-box; }
body {
  margin: 0 auto; max-width: 42rem; padding: 1.5rem;
  font: 17px/1.7 Georgia, "Times New Roman", serif; color: var(--fg); background: var(--bg);
}
a { color: var(--accent); }
.back { font-size: .85rem; }
header.show { display: flex; gap: 1rem; align-items: center; border-bottom: 2px solid var(--line); padding-bottom: 1rem; margin-bottom: 1rem; }
header.show .cover { width: 120px; height: 120px; border-radius: 12px; }
header.show h1 { margin: 0 0 .2rem; font-size: 1.6rem; letter-spacing: .5px; }
.sub { color: var(--muted); font-style: italic; margin: 0 0 .4rem; }
.by { color: var(--muted); font-size: .9rem; }
.subscribe { font-weight: bold; text-decoration: none; border-bottom: 2px solid var(--accent); }
.episode { border-bottom: 1px solid var(--line); padding: 1.1rem 0; }
.episode h2 { margin: 0 0 .2rem; font-size: 1.25rem; }
.meta { color: var(--muted); font-size: .9rem; margin: 0 0 .6rem; }
audio { width: 100%; }
.dl { font-size: .85rem; margin: .4rem 0 0; }
.notes { margin-top: .6rem; }
footer { color: var(--muted); font-size: .85rem; margin-top: 2rem; text-align: center; font-style: italic; }
