:root {
  --warm-orange: #e8862f;
  --deep-orange: #d96b1e;
  --sauce-red: #8c2f1b;
  --chili-red: #c0392b;
  --tile-green: #7a8b7a;
  --tile-green-dark: #5a6b5a;
  --tile-green-light: #a3b3a3;
  --cream-white: #fdf6ec;
  --warm-white: #faf3e8;
  --pale-orange: #f5e0c0;
  --dark-bg: #2a1f1a;
  --dark-mid: #3d2e26;
  --gray-dark: #4a4a42;
  --gray-mid: #6b6b60;
  --gray-light: #9a9a8e;
  --text-dark: #2e241d;
  --text-body: #4a3f36;
  --text-muted: #7a6f65;
  --heading-font: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", system-ui, -apple-system, sans-serif;
  --body-font: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", system-ui, -apple-system, sans-serif;
  --radius: 6px;
  --radius-sm: 4px;
  --gap-tight: 8px;
  --gap: 12px;
  --gap-wide: 18px;
  --pad-tight: 8px;
  --pad: 12px;
  --pad-wide: 18px;
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  font-family: var(--body-font);
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-body);
  background-color: var(--cream-white);
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow-x: hidden;
}
img, video {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
dl, dd, dt {
  margin: 0;
  padding: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button, input {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  color: inherit;
}
h1, h2 {
  font-family: var(--heading-font);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
  margin: 0;
}
p {
  margin: 0;
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--gap-tight);
  padding: 10px var(--pad-wide);
  background-color: var(--dark-bg);
  border-bottom: 2px solid var(--sauce-red);
  position: sticky;
  top: 0;
  z-index: 100;
}
a[data-contract="site-name"] {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--warm-orange);
  text-decoration: none;
  letter-spacing: 1px;
  white-space: nowrap;
}
a[data-contract="site-name"]:hover {
  color: var(--pale-orange);
}
a[data-contract="site-name"]:visited {
  color: var(--warm-orange);
}
.category-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
a.runtime-category {
  display: inline-block;
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--pale-orange);
  background-color: var(--dark-mid);
  padding: 3px 10px;
  border-radius: 20px;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s, color 0.2s;
}
a.runtime-category:hover {
  background-color: var(--sauce-red);
  color: var(--cream-white);
}
a.runtime-category:visited {
  color: var(--pale-orange);
}
.page-main {
  display: block;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--pad-wide) 0;
}
.movie-overview {
  display: block;
  margin-bottom: var(--gap);
}
.hero-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--gap);
  position: relative;
  padding: var(--pad) 0;
}
.hero-poster-wrap {
  position: absolute;
  top: var(--pad);
  left: 0;
  width: 38%;
  max-width: 280px;
  z-index: 2;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 4px 4px 16px rgba(42, 31, 26, 0.45);
}
.hero-poster {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
}
.hero-titles {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: var(--pad-wide) var(--pad-wide) var(--pad-wide) calc(38% + 20px);
  min-height: 140px;
  justify-content: flex-end;
  background: linear-gradient(
    135deg,
    rgba(232, 134, 47, 0.18) 0%,
    rgba(245, 224, 192, 0.1) 60%,
    transparent 100%
  );
  border-radius: var(--radius);
  pointer-events: none;
}
.hero-title {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 2.2rem;
  line-height: 1.1;
  color: var(--sauce-red);
  letter-spacing: -0.5px;
  text-shadow: 1px 1px 0 rgba(253, 246, 236, 0.6);
}
.hero-tagline {
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--deep-orange);
  font-weight: 600;
  letter-spacing: 0.5px;
}
.hero-player-wrap {
  position: relative;
  width: 100%;
  grid-column: 1 / -1;
  margin-top: 0;
  background-color: var(--dark-bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--dark-mid);
  box-shadow: 0 4px 20px rgba(42, 31, 26, 0.3);
  transition: box-shadow 0.3s, background-color 0.3s;
}
.hero-player-wrap.is-theater {
  box-shadow: 0 0 0 3px var(--warm-orange), 0 8px 32px rgba(42, 31, 26, 0.5);
}
.hero-player-wrap.lights-off {
  background-color: #000;
  border-color: #000;
}
.hero-player-wrap.lights-off .main-player {
  opacity: 0.85;
}
.main-player {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  background-color: #000;
  object-fit: contain;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  padding: 6px 8px;
  background-color: var(--dark-mid);
  border-top: 1px solid rgba(232, 134, 47, 0.25);
}
.ctrl {
  font-family: var(--body-font);
  font-size: 0.7rem;
  line-height: 1;
  color: var(--pale-orange);
  background-color: rgba(232, 134, 47, 0.15);
  border: 1px solid rgba(232, 134, 47, 0.3);
  border-radius: var(--radius-sm);
  padding: 5px 9px;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.15s, color 0.15s, border-color 0.15s;
}
.ctrl:hover {
  background-color: rgba(232, 134, 47, 0.3);
  color: var(--cream-white);
}
.ctrl-play {
  font-weight: 600;
  background-color: var(--deep-orange);
  color: var(--cream-white);
  border-color: var(--deep-orange);
}
.ctrl-play:hover {
  background-color: var(--warm-orange);
}
.ctrl-play.is-playing {
  background-color: var(--sauce-red);
  border-color: var(--sauce-red);
}
.ctrl-progress {
  flex: 1 1 80px;
  min-width: 60px;
  height: 6px;
  appearance: none;
  -webkit-appearance: none;
  background: rgba(232, 134, 47, 0.2);
  border-radius: 3px;
  border: none;
  padding: 0;
  cursor: pointer;
  accent-color: var(--warm-orange);
}
.ctrl-progress::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--warm-orange);
  border: 2px solid var(--cream-white);
  cursor: pointer;
}
.ctrl-progress::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--warm-orange);
  border: 2px solid var(--cream-white);
  cursor: pointer;
}
.ctrl-volume {
  flex: 0 1 60px;
  min-width: 40px;
  height: 6px;
  appearance: none;
  -webkit-appearance: none;
  background: rgba(232, 134, 47, 0.2);
  border-radius: 3px;
  border: none;
  padding: 0;
  cursor: pointer;
  accent-color: var(--warm-orange);
}
.ctrl-volume::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pale-orange);
  cursor: pointer;
}
.ctrl-volume::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pale-orange);
  cursor: pointer;
}
.ctrl-mute.is-muted {
  background-color: var(--sauce-red);
  border-color: var(--sauce-red);
  color: var(--cream-white);
}
.ctrl-speed.is-active, .ctrl-theater.is-active, .ctrl-light.is-active {
  background-color: var(--warm-orange);
  border-color: var(--warm-orange);
  color: var(--dark-bg);
  font-weight: 600;
}
.hero-seo {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--text-muted);
  padding: var(--pad) 0;
  margin-bottom: var(--gap-tight);
  border-bottom: 1px solid rgba(122, 139, 122, 0.2);
}
.section-heading {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 1.2rem;
  line-height: 1.2;
  color: var(--sauce-red);
  letter-spacing: 0.5px;
  margin-bottom: var(--gap-tight);
  padding-left: 10px;
  border-left: 4px solid var(--warm-orange);
}
.cast-strip {
  margin-bottom: var(--gap-wide);
  padding: var(--pad) 0;
}
.cast-heading {
  margin-bottom: var(--gap-tight);
}
.cast-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-tight);
  justify-content: flex-start;
}
.cast-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 0 0 auto;
  width: 100px;
  text-align: center;
  padding: var(--pad-tight) 4px;
  background-color: var(--warm-white);
  border: 1px solid rgba(122, 139, 122, 0.25);
  border-radius: var(--radius);
  transition: transform 0.15s, border-color 0.15s;
}
.cast-card:hover {
  transform: translateY(-2px);
  border-color: var(--warm-orange);
}
.cast-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--warm-orange), var(--sauce-red));
  color: var(--cream-white);
  font-size: 0.7rem;
  font-weight: 600;
  overflow: hidden;
  text-align: center;
  line-height: 1.1;
  padding: 2px;
  word-break: break-all;
}
.cast-name {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--text-dark);
  line-height: 1.2;
}
.cast-quip {
  font-size: 0.68rem;
  line-height: 1.3;
  color: var(--text-muted);
  font-style: italic;
}
.synopsis-block {
  margin-bottom: var(--gap-wide);
  padding: var(--pad) 0;
}
.synopsis-heading {
  margin-bottom: var(--gap-tight);
}
.synopsis-para {
  font-size: 0.83rem;
  line-height: 1.6;
  color: var(--text-body);
  margin-bottom: 6px;
  text-align: justify;
}
.synopsis-para:last-child {
  margin-bottom: 0;
}
.episode-status {
  margin-bottom: var(--gap);
  padding: var(--pad) var(--pad-wide);
  background-color: var(--pale-orange);
  border-left: 4px solid var(--warm-orange);
  border-radius: var(--radius-sm);
}
.status-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 14px;
  font-size: 0.8rem;
  line-height: 1.5;
}
.status-current {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--sauce-red);
}
.status-total {
  font-weight: 600;
  color: var(--deep-orange);
}
.status-note {
  color: var(--text-muted);
  font-size: 0.75rem;
}
.details-panel {
  margin-bottom: var(--gap-wide);
  padding: var(--pad) 0;
}
.details-heading {
  margin-bottom: var(--gap-tight);
}
.details-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 1px;
  background-color: rgba(122, 139, 122, 0.2);
  border: 1px solid rgba(122, 139, 122, 0.2);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.detail-cell {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 6px 10px;
  background-color: var(--warm-white);
}
.detail-cell dt {
  font-size: 0.68rem;
  line-height: 1.3;
  color: var(--tile-green-dark);
  font-weight: 600;
  letter-spacing: 0.5px;
}
.detail-cell dd {
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--text-dark);
  font-weight: 500;
}
.timeline-section {
  margin-bottom: var(--gap-wide);
  padding: var(--pad) 0;
}
.timeline-heading {
  margin-bottom: var(--gap);
}
.timeline-track {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0;
  position: relative;
}
.timeline-node {
  display: grid;
  grid-template-columns: 56px 1fr;
  grid-template-rows: auto auto;
  align-items: start;
  gap: 0 8px;
  padding: 6px 0 6px 0;
  position: relative;
}
.tl-timecode {
  grid-column: 1;
  grid-row: 1;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--sauce-red);
  text-align: right;
  padding-right: 6px;
  position: relative;
  z-index: 2;
}
.tl-line {
  grid-column: 1;
  grid-row: 2;
  display: block;
  width: 1px;
  height: 100%;
  min-height: 10px;
  background-color: var(--chili-red);
  justify-self: end;
  margin-right: 6px;
  position: relative;
}
.timeline-node:last-child .tl-line {
  background: linear-gradient(
    to bottom,
    var(--chili-red) 0%,
    var(--chili-red) 40%,
    transparent 100%
  );
}
.tl-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--chili-red);
  border: 1.5px solid var(--cream-white);
  z-index: 3;
}
.tl-label {
  grid-column: 2;
  grid-row: 1 / 3;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--text-body);
  padding-bottom: 4px;
  align-self: start;
}
.episodes-section {
  margin-bottom: var(--gap-wide);
  padding: var(--pad) 0;
}
.episodes-heading {
  margin-bottom: var(--gap-tight);
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-tight);
  align-items: start;
}
.episode-card {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto auto;
  gap: 2px 8px;
  padding: var(--pad);
  background-color: var(--warm-white);
  border: 1px solid rgba(122, 139, 122, 0.25);
  border-radius: var(--radius);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.episode-card:hover {
  border-color: var(--warm-orange);
  box-shadow: 0 2px 8px rgba(232, 134, 47, 0.12);
}
.ep-number {
  grid-column: 1;
  grid-row: 1;
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 0.72rem;
  line-height: 1.3;
  color: var(--cream-white);
  background-color: var(--sauce-red);
  padding: 1px 7px;
  border-radius: 3px;
  justify-self: start;
  white-space: nowrap;
}
.ep-title {
  grid-column: 1;
  grid-row: 2;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1.3;
  color: var(--text-dark);
}
.ep-summary {
  grid-column: 1 / -1;
  grid-row: 3;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin-top: 2px;
}
.ep-duration {
  grid-column: 2;
  grid-row: 1 / 3;
  font-size: 0.68rem;
  line-height: 1.3;
  color: var(--tile-green-dark);
  align-self: end;
  justify-self: end;
  white-space: nowrap;
  font-weight: 600;
}
.breather-band {
  display: block;
  width: 100%;
  height: 40px;
  margin: var(--gap-wide) 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 12px,
    rgba(232, 134, 47, 0.08) 12px,
    rgba(232, 134, 47, 0.08) 24px
  );
  border-radius: var(--radius-sm);
}
.comments-section {
  margin-bottom: var(--gap-wide);
  padding: var(--pad) 0 var(--pad-wide);
  background-color: var(--dark-bg);
  border-radius: var(--radius);
  padding-left: var(--pad-wide);
  padding-right: var(--pad-wide);
}
.comments-heading {
  color: var(--warm-orange);
  border-left-color: var(--warm-orange);
  margin-bottom: var(--gap);
}
.comment-stack {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--gap);
  align-items: start;
}
.comment-note {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: var(--pad-wide) var(--pad);
  background-color: var(--warm-white);
  border-radius: 2px;
  box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.35);
  position: relative;
  transform: rotate(-1.5deg);
  border-top: 3px solid var(--warm-orange);
}
.comment-note:nth-child(2n) {
  transform: rotate(2deg);
  border-top-color: var(--tile-green);
  background-color: #f5f2ea;
}
.comment-note:nth-child(3n) {
  transform: rotate(-2.5deg);
  border-top-color: var(--chili-red);
}
.comment-note:nth-child(4n) {
  transform: rotate(1.8deg);
  border-top-color: var(--deep-orange);
  background-color: #faf5ec;
}
.comment-note:nth-child(5n) {
  transform: rotate(-1deg);
  border-top-color: var(--tile-green-dark);
}
.comment-who {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1.3;
  color: var(--sauce-red);
}
.comment-text {
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--text-body);
}
.rec-region {
  display: block;
  margin-bottom: var(--gap-tight);
  padding: var(--pad) 0;
  background-color: var(--warm-white);
  border-radius: var(--radius-sm);
  padding-left: var(--pad);
  padding-right: var(--pad);
  border: 1px solid rgba(122, 139, 122, 0.15);
}
.rec-region:last-child {
  margin-bottom: var(--gap-wide);
}
.rec-heading {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 0.9rem;
  line-height: 1.3;
  color: var(--sauce-red);
  margin-bottom: 6px;
  padding-left: 8px;
  border-left: 3px solid var(--warm-orange);
}
.rec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-tight);
  align-items: start;
}
a.rec-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 6px;
  background-color: var(--cream-white);
  border: 1px solid rgba(122, 139, 122, 0.2);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text-body);
  transition: border-color 0.15s, box-shadow 0.15s;
  overflow: hidden;
}
a.rec-item:hover {
  border-color: var(--warm-orange);
  box-shadow: 0 2px 8px rgba(232, 134, 47, 0.15);
}
a.rec-item:visited {
  color: var(--text-body);
}
a.rec-item img, [data-runtime="recommendation"] img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  border-radius: 3px;
  display: block;
  background-color: var(--tile-green);
}
[data-runtime="recommendation"] span[data-runtime="name"] {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1.3;
  color: var(--text-dark);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
[data-runtime="recommendation"] span[data-runtime="blurb"] {
  font-size: 0.68rem;
  line-height: 1.4;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.site-footer {
  display: flex;
  flex-direction: column;
  gap: var(--gap-tight);
  padding: var(--pad-wide) var(--pad-wide) var(--pad-wide);
  background-color: var(--dark-bg);
  border-top: 2px solid var(--sauce-red);
  color: var(--gray-light);
  font-size: 0.72rem;
  line-height: 1.5;
  margin-top: var(--gap-wide);
}
.footer-disclaimer {
  font-size: 0.7rem;
  line-height: 1.55;
  color: var(--gray-light);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-tight) var(--gap);
  align-items: center;
}
a.footer-link {
  font-size: 0.75rem;
  color: var(--pale-orange);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s;
}
a[data-contract="footer-home"] {
  color: var(--warm-orange);
  text-decoration: none;
}
a[data-contract="footer-home"]:hover {
  text-decoration: underline;
  color: var(--pale-orange);
}
a[data-contract="footer-sitemap"] {
  color: var(--pale-orange);
  text-decoration: none;
}
a[data-contract="footer-sitemap"]:hover {
  text-decoration: underline;
  color: var(--warm-orange);
}
a.runtime-friend-link {
  font-size: 0.72rem;
  color: var(--tile-green-light);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s;
}
a.runtime-friend-link:hover {
  color: var(--warm-orange);
  text-decoration: underline;
}
a.runtime-friend-link:visited {
  color: var(--tile-green-light);
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px var(--gap);
  align-items: center;
}
.friend-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray-mid);
  margin-right: 2px;
}
@media (max-width: 900px) {.hero-title {
    font-size: 1.8rem;
  }
.hero-poster-wrap {
    width: 34%;
    max-width: 220px;
  }
.hero-titles {
    padding-left: calc(34% + 16px);
    min-height: 110px;
  }
.cast-card {
    width: 88px;
  }
.cast-avatar {
    width: 42px;
    height: 42px;
    font-size: 0.65rem;
  }
.episode-grid {
    grid-template-columns: repeat(2, 1fr);
  }
.timeline-track {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }}
@media (max-width: 640px) {html {
    font-size: 15px;
  }
.page-main {
    padding: 0 var(--pad) 0;
  }
.site-header {
    padding: 8px var(--pad);
  }
a[data-contract="site-name"] {
    font-size: 1rem;
  }
a.runtime-category {
    font-size: 0.68rem;
    padding: 2px 8px;
  }
.hero-stage {
    display: flex;
    flex-direction: column;
    gap: var(--gap-tight);
  }
.hero-poster-wrap {
    position: relative;
    top: auto;
    left: auto;
    width: 50%;
    max-width: 180px;
    align-self: flex-start;
  }
.hero-titles {
    padding: var(--pad) 0 0 0;
    min-height: auto;
    background: none;
    justify-content: flex-start;
  }
.hero-title {
    font-size: 1.5rem;
  }
.hero-tagline {
    font-size: 0.8rem;
  }
.hero-player-wrap {
    width: 100%;
  }
.player-controls {
    gap: 3px;
    padding: 4px 6px;
  }
.ctrl {
    font-size: 0.62rem;
    padding: 4px 6px;
  }
.ctrl-progress {
    flex: 1 1 50px;
    min-width: 40px;
  }
.ctrl-volume {
    flex: 0 1 40px;
    min-width: 30px;
  }
.section-heading {
    font-size: 1rem;
  }
.cast-row {
    gap: 6px;
  }
.cast-card {
    width: calc(33.33% - 4px);
    min-width: 70px;
  }
.cast-avatar {
    width: 38px;
    height: 38px;
    font-size: 0.6rem;
  }
.cast-name {
    font-size: 0.72rem;
  }
.cast-quip {
    font-size: 0.62rem;
  }
.details-list {
    grid-template-columns: repeat(2, 1fr);
  }
.timeline-track {
    grid-template-columns: 1fr;
  }
.timeline-node {
    grid-template-columns: 48px 1fr;
  }
.episode-grid {
    grid-template-columns: 1fr;
  }
.comment-stack {
    grid-template-columns: 1fr;
  }
.comment-note {
    transform: rotate(-1deg);
  }
.comment-note:nth-child(2n) {
    transform: rotate(1.2deg);
  }
.comment-note:nth-child(3n) {
    transform: rotate(-1.5deg);
  }
.comment-note:nth-child(4n) {
    transform: rotate(0.8deg);
  }
.comment-note:nth-child(5n) {
    transform: rotate(-0.5deg);
  }
.rec-grid {
    grid-template-columns: repeat(2, 1fr);
  }
.rec-grid .rec-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: start;
  }
.site-footer {
    padding: var(--pad) var(--pad);
  }
.breather-band {
    height: 24px;
    margin: var(--gap) 0;
  }}
@media (max-width: 400px) {.cast-card {
    width: calc(50% - 4px);
  }
.rec-grid {
    grid-template-columns: 1fr;
  }
.rec-grid .rec-item:last-child:nth-child(odd) {
    grid-column: auto;
    max-width: 100%;
  }
.hero-title {
    font-size: 1.3rem;
  }}
@media (prefers-reduced-motion: reduce) {*, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }}
::selection {
  background-color: var(--warm-orange);
  color: var(--cream-white);
}
button:focus-visible, a:focus-visible, input:focus-visible {
  outline: 2px solid var(--warm-orange);
  outline-offset: 2px;
}

footer{text-align:center!important}
footer *{justify-content:center!important}
footer :is(div,nav,ul,ol,p,section,address){margin-left:auto!important;margin-right:auto!important}
