*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  background: #0b0d10;
  color: #c7ced6;
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.45;
  letter-spacing: 0.01em;
  font-stretch: condensed;
  overflow-x: hidden;
}
h1, h2, h3, p, ul, ol, dl, dd, dt {
  margin: 0;
  padding: 0;
}
ul, ol {
  list-style: none;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button, input, select {
  font: inherit;
  color: inherit;
}
:root {
  --bg: #0b0d10;
  --bg-2: #11151a;
  --bg-3: #161b22;
  --line: #232a33;
  --line-soft: #1b212a;
  --ink: #c7ced6;
  --ink-dim: #8a94a0;
  --ink-faint: #5d6672;
  --orange: #ff7a1a;
  --orange-hot: #ff9a3c;
  --steel: #5c7a99;
  --steel-bright: #7d9cbb;
  --pad: 10px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(9, 11, 14, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px 14px;
}
.site-brand, a[data-contract="site-name"] {
  color: #eef2f6;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  flex: 0 0 auto;
}
.site-brand::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  vertical-align: 1px;
  background: var(--orange);
  box-shadow: 0 0 8px rgba(255, 122, 26, 0.8);
}
a[data-contract="site-name"]:hover {
  color: var(--orange-hot);
}
.categories-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  min-width: 0;
  flex: 1 1 auto;
  justify-content: flex-end;
}
a.runtime-category {
  display: inline-block;
  white-space: nowrap;
  color: var(--ink-dim);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 3px 9px;
  border: 1px solid var(--line);
  background: #101419;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
a.runtime-category:hover {
  color: #0b0d10;
  background: var(--orange);
  border-color: var(--orange);
}
.page-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 14px 34px;
}
.section-heading, .cast-heading, .synopsis-heading, .details-heading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #dfe6ee;
  text-transform: uppercase;
  padding-left: 10px;
  border-left: 3px solid var(--orange);
  margin-bottom: 9px;
}
.cold-open {
  position: relative;
  margin-bottom: 16px;
}
.cold-open-media {
  position: relative;
  max-width: 100%;
  background: #000;
  border: 1px solid var(--line);
  overflow: hidden;
}
.cold-open-media video, [data-contract="player"] {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  object-fit: cover;
  filter: contrast(1.18) saturate(0.82) brightness(0.94);
}
.cold-open-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 120% at 50% 45%, rgba(0, 0, 0, 0) 38%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 22%, rgba(0, 0, 0, 0) 62%, rgba(0, 0, 0, 0.78) 100%);
  box-shadow: inset 0 0 90px 30px rgba(0, 0, 0, 0.7);
}
.cold-open-hud {
  position: absolute;
  top: 10px;
  left: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  pointer-events: none;
  font-family: "SFMono-Regular", "Menlo", "Consolas", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
}
.hud-timecode {
  color: var(--orange);
  text-shadow: 0 0 10px rgba(255, 122, 26, 0.55);
  font-weight: 700;
}
.hud-timecode::before {
  content: "●";
  color: #ff3b30;
  margin-right: 6px;
  font-size: 9px;
  vertical-align: 1px;
  animation: rec-blink 1.6s steps(1, end) infinite;
}
@keyframes rec-blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0.25; }
}
.hud-battery {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-dim);
}
.hud-battery-label {
  color: var(--ink-faint);
}
.hud-battery-bar {
  display: inline-block;
  width: 46px;
  height: 8px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background:
    linear-gradient(90deg, var(--orange) 0 62%, transparent 62% 100%);
  background-size: 100% 100%;
  box-shadow: 0 0 8px rgba(255, 122, 26, 0.4);
}
.hud-battery-value {
  color: var(--orange);
  font-weight: 700;
}
.cold-open-tagline {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  color: #f2f5f8;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.95), 0 1px 3px rgba(0, 0, 0, 1);
  pointer-events: none;
}
.cold-open-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-top: 0;
}
.ctrl-btn {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background: #1a2027;
  border: 1px solid #2b333d;
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.ctrl-btn:hover {
  background: #232b34;
  color: #fff;
  border-color: var(--steel);
}
.ctrl-btn.is-playing, .ctrl-btn.is-active {
  background: var(--orange);
  border-color: var(--orange);
  color: #0b0d10;
  font-weight: 700;
}
.ctrl-btn.is-muted {
  color: var(--orange);
  border-color: rgba(255, 122, 26, 0.6);
}
.ctrl-progress {
  flex: 1 1 160px;
  min-width: 120px;
  height: 16px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
}
.ctrl-progress::-webkit-slider-runnable-track {
  height: 4px;
  background: #232b34;
}
.ctrl-progress::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 10px;
  height: 14px;
  margin-top: -5px;
  background: var(--orange);
  border: 0;
}
.ctrl-progress::-moz-range-track {
  height: 4px;
  background: #232b34;
}
.ctrl-progress::-moz-range-thumb {
  width: 10px;
  height: 14px;
  border: 0;
  border-radius: 0;
  background: var(--orange);
}
.ctrl-volume {
  flex: 0 0 84px;
  width: 84px;
  height: 16px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
}
.ctrl-volume::-webkit-slider-runnable-track {
  height: 3px;
  background: #232b34;
}
.ctrl-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 8px;
  height: 12px;
  margin-top: -5px;
  background: var(--steel-bright);
  border: 0;
}
.ctrl-volume::-moz-range-track {
  height: 3px;
  background: #232b34;
}
.ctrl-volume::-moz-range-thumb {
  width: 8px;
  height: 12px;
  border: 0;
  border-radius: 0;
  background: var(--steel-bright);
}
.ctrl-speed {
  cursor: pointer;
  background: #1a2027;
  border: 1px solid #2b333d;
  color: var(--ink);
  font-size: 12px;
  padding: 4px 6px;
}
.ctrl-speed:hover {
  border-color: var(--steel);
}
.cold-open.lights-off {
  background: #000;
}
.cold-open.lights-off .cold-open-media {
  border-color: #000;
}
.cold-open.lights-off .cold-open-media video, .cold-open.lights-off [data-contract="player"] {
  filter: contrast(1.32) saturate(0.6) brightness(0.72);
}
.cold-open.lights-off .cold-open-controls {
  background: #05070a;
  border-color: #05070a;
}
.cold-open.theater-mode {
  margin-left: -14px;
  margin-right: -14px;
}
.cold-open.theater-mode .cold-open-media {
  border-left: 0;
  border-right: 0;
}
.cold-open.theater-mode .cold-open-tagline {
  font-size: 18px;
}
.movie-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 14px;
  margin-bottom: 16px;
}
.overview-poster {
  align-self: start;
  width: 100%;
  max-width: 220px;
  border: 1px solid var(--line);
  background: #0a0c0f;
}
.overview-poster img, [data-contract="main-poster"] {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  height: auto;
  object-fit: cover;
  filter: contrast(1.08) saturate(0.85);
}
.overview-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.overview-title {
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 800;
  color: #f0f4f8;
}
.overview-tagline {
  font-size: 13px;
  color: var(--orange);
  letter-spacing: 0.05em;
  font-weight: 600;
}
.overview-tagline::before {
  content: "▍";
  margin-right: 4px;
  color: var(--orange);
}
.overview-seo {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--ink-dim);
  max-width: 68ch;
}
.episode-status {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0;
  border: 1px solid var(--line);
  background: #0d1116;
  width: fit-content;
  max-width: 100%;
}
.status-current, .status-total, .status-progress {
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  font-size: 12px;
  letter-spacing: 0.06em;
  border-right: 1px solid var(--line);
  white-space: nowrap;
}
.status-current {
  color: #eef2f6;
  font-weight: 700;
  background: #161c23;
}
.status-current::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 7px;
  background: var(--orange);
  box-shadow: 0 0 8px rgba(255, 122, 26, 0.9);
}
.status-total {
  color: var(--ink-dim);
}
.status-progress {
  color: var(--orange);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  border-right: 0;
}
.cast-block {
  border-top: 1px solid var(--line-soft);
  padding-top: 10px;
}
.cast-heading {
  margin-bottom: 8px;
}
.cast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 8px;
  align-items: start;
}
.cast-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #0d1116;
  border: 1px solid var(--line-soft);
  padding: 7px;
  min-width: 0;
}
.cast-portrait {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  background:
    linear-gradient(180deg, #1c232b 0%, #12171d 100%);
  border: 1px solid #20272f;
  position: relative;
  overflow: hidden;
}
.cast-portrait::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14%;
  width: 62%;
  height: 82%;
  transform: translateX(-50%);
  background: #2c353f;
  border-radius: 50% 50% 34% 34% / 60% 60% 40% 40%;
  box-shadow: 0 -18px 0 -6px #2c353f;
}
.cast-name {
  font-size: 12px;
  font-weight: 700;
  color: #e3e9f0;
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cast-role {
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.08em;
}
.synopsis-block {
  border-top: 1px solid var(--line-soft);
  padding-top: 10px;
}
.synopsis-heading {
  margin-bottom: 7px;
}
.synopsis-para {
  font-size: 12.5px;
  line-height: 1.62;
  color: var(--ink-dim);
  margin-bottom: 6px;
  max-width: 74ch;
}
.synopsis-para:last-child {
  margin-bottom: 0;
}
.details-block {
  border-top: 1px solid var(--line-soft);
  padding-top: 10px;
}
.details-heading {
  margin-bottom: 7px;
}
.details-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 0 18px;
  align-items: start;
}
.details-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 4px 0;
  border-bottom: 1px dotted #232a33;
  min-width: 0;
}
.details-key {
  flex: 0 0 62px;
  font-size: 11.5px;
  color: var(--ink-faint);
  letter-spacing: 0.08em;
}
.details-value {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 12.5px;
  color: #dde4ec;
}
.timeline-section {
  margin-bottom: 16px;
}
.timeline-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 6px;
  align-items: start;
  border-left: 2px solid #1e252d;
  padding-left: 0;
}
.timeline-item {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  background: #0d1116;
  border: 1px solid var(--line-soft);
  border-left: 2px solid #2a333d;
  padding: 6px 9px;
  position: relative;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.18s ease;
}
.timeline-item:hover {
  background: #12171d;
  border-left-color: var(--orange);
}
.timeline-item:hover::before {
  transform: scaleY(1);
}
.timeline-timecode {
  font-family: "SFMono-Regular", "Menlo", "Consolas", monospace;
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.timeline-label {
  font-size: 12.5px;
  color: #cdd5de;
  line-height: 1.42;
  min-width: 0;
}
.episodes-section {
  margin-bottom: 16px;
}
.episode-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 7px;
  align-items: start;
}
.episode-card {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  background: #0d1116;
  border: 1px solid var(--line-soft);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
.episode-card:hover {
  transform: translateY(-3px);
  border-color: #33404c;
  background: #121820;
  box-shadow: 0 10px 22px -14px rgba(0, 0, 0, 0.95);
}
.episode-card-side {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px 8px;
  border-right: 1px solid var(--line-soft);
  background: #0a0e12;
}
.episode-number {
  font-size: 12.5px;
  font-weight: 700;
  color: #e7edf4;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.episode-number::before {
  content: "";
  display: block;
  width: 14px;
  height: 2px;
  margin-bottom: 5px;
  background: var(--orange);
}
.episode-duration {
  font-family: "SFMono-Regular", "Menlo", "Consolas", monospace;
  font-size: 11px;
  color: var(--orange);
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
}
.episode-card-body {
  padding: 8px 10px;
  min-width: 0;
}
.episode-title {
  font-size: 12.5px;
  font-weight: 700;
  color: #dfe6ee;
  line-height: 1.35;
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}
.episode-summary {
  font-size: 12px;
  line-height: 1.5;
  color: var(--ink-dim);
}
.comments-section {
  margin-bottom: 16px;
}
.comments-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
  align-items: start;
}
.comments-column {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.comment-card {
  background: #0d1116;
  border: 1px solid var(--line-soft);
  border-left: 2px solid #273039;
  padding: 7px 9px;
}
.comment-nickname {
  font-size: 11px;
  color: var(--orange);
  letter-spacing: 0.08em;
  margin-bottom: 3px;
  font-weight: 600;
}
.comment-nickname::before {
  content: "@";
  color: var(--ink-faint);
  margin-right: 1px;
}
.comment-text {
  font-size: 12px;
  line-height: 1.55;
  color: #c2cad3;
}
.rec-region {
  margin-bottom: 14px;
}
.rec-heading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #dfe6ee;
  text-transform: uppercase;
  padding-left: 10px;
  border-left: 3px solid var(--steel);
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.rec-heading::after {
  content: attr(data-recommendation-title);
  display: none;
}
.rec-columns {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 7px;
  align-items: start;
}
.rec-item {
  min-width: 0;
}
.rec-item a, a[data-runtime="recommendation"] {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #0d1116;
  border: 1px solid var(--line-soft);
  color: #d6dde5;
  text-decoration: none;
  overflow: hidden;
  transition: border-color 0.16s ease, background 0.16s ease;
}
.rec-item a:hover, a[data-runtime="recommendation"]:hover {
  border-color: var(--steel);
  background: #121820;
  color: #fff;
}
[data-runtime="recommendation"] img {
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  background: #0a0c0f;
  filter: contrast(1.08) saturate(0.8);
}
[data-runtime="recommendation"] [data-runtime="name"] {
  font-size: 12px;
  font-weight: 700;
  color: #e4eaf1;
  padding: 6px 8px 2px;
  line-height: 1.3;
}
[data-runtime="recommendation"] [data-runtime="blurb"] {
  font-size: 11px;
  line-height: 1.45;
  color: var(--ink-faint);
  padding: 0 8px 7px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.site-footer {
  border-top: 1px solid var(--line);
  background: #090b0e;
  padding: 14px 14px 22px;
}
.footer-disclaimer {
  max-width: 1280px;
  margin: 0 auto 10px;
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--ink-faint);
}
.footer-nav {
  max-width: 1280px;
  margin: 0 auto 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-nav a, a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  color: var(--ink-dim);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 3px 9px;
  border: 1px solid var(--line);
  background: #101419;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: #0b0d10;
  background: var(--orange);
  border-color: var(--orange);
}
.friend-links {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
.friend-links-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-faint);
  text-transform: uppercase;
  margin-right: 2px;
}
a.runtime-friend-link {
  color: var(--ink-dim);
  text-decoration: none;
  font-size: 11.5px;
  padding: 2px 7px;
  border: 1px solid var(--line-soft);
  background: #0d1116;
  white-space: nowrap;
}
a.runtime-friend-link:hover {
  color: var(--orange);
  border-color: rgba(255, 122, 26, 0.55);
}
.player {
  position: relative;
}
.player .progress {
  accent-color: var(--orange);
}
.player .volume {
  accent-color: var(--steel-bright);
}
.player .play, .player .pause {
  color: #fff;
}
.player .change, .player .click, .player .input {
  color: inherit;
}
.player .speed {
  color: var(--ink);
}
.player .theater, .theater-mode {
  background: #000;
}
.player .fullscreen, .fullscreen {
  background: #000;
}
.player .pip {
  color: var(--ink);
}
.player .mute, .player .volume {
  color: var(--ink);
}
.player .timeupdate {
  color: var(--orange);
}
.player .lights-off, .lights-off {
  background: #000;
}
.is-playing {
  color: #fff;
}
.is-muted {
  color: var(--orange);
}
.is-active {
  border-color: var(--orange);
}
.light {
  color: var(--ink);
}
@media (min-width: 640px) {body {
    font-size: 13px;
  }
.movie-overview {
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 16px;
  }
.overview-poster {
    max-width: none;
  }
.comments-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
.episode-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.timeline-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.rec-columns {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }}
@media (min-width: 900px) {.movie-overview {
    grid-template-columns: 230px minmax(0, 1fr);
    padding: 16px;
  }
.episode-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.timeline-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.rec-columns {
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  }
.cold-open-tagline {
    font-size: 17px;
  }}
@media (min-width: 1100px) {.timeline-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.episode-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.rec-columns {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }}
@media (max-width: 639px) {.header-inner {
    flex-wrap: wrap;
    gap: 8px;
  }
.categories-strip {
    justify-content: flex-start;
    width: 100%;
  }
.overview-poster {
    max-width: 170px;
  }
.overview-title {
    font-size: 19px;
  }
.cold-open-tagline {
    font-size: 13px;
    bottom: 9px;
  }
.cold-open-hud {
    font-size: 10px;
  }
.hud-battery-bar {
    width: 32px;
  }
.ctrl-progress {
    flex: 1 1 100%;
    order: 10;
  }
.timeline-item {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 8px;
  }
.episode-card {
    grid-template-columns: 68px minmax(0, 1fr);
  }
.rec-columns {
    grid-template-columns: repeat(auto-fill, minmax(136px, 1fr));
  }}
@media (prefers-reduced-motion: reduce) {*, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }}

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}
