:root {
  --abyss: #10171f;
  --deep: #16212c;
  --sludge: #1d2b33;
  --sludge-2: #22333c;
  --rust: #8a3b26;
  --rust-bright: #b4502f;
  --emergency: #3f7fa8;
  --emergency-bright: #5ea6cf;
  --amber: #e07a2a;
  --amber-bright: #f59a43;
  --oxygen: #6fbf8b;
  --oxygen-bright: #8fdcab;
  --water: #2f4a56;
  --water-line: rgba(94, 166, 207, 0.38);
  --bone: #d7dee2;
  --bone-dim: #94a3ab;
  --bone-faint: #63747d;
  --ink: #0a1015;
  --rule: rgba(94, 166, 207, 0.16);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  background:
    radial-gradient(1200px 600px at 12% -6%, rgba(63, 127, 168, 0.14), transparent 62%),
    radial-gradient(900px 500px at 92% 4%, rgba(138, 59, 38, 0.16), transparent 60%),
    linear-gradient(180deg, #0f161d 0%, #121c24 46%, #0e161d 100%);
  background-color: var(--abyss);
  color: var(--bone);
  font-family: "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: 0.01em;
  min-height: 100%;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
ul, ol {
  list-style: none;
}
h2, h3 {
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.02em;
}
button, input {
  font: inherit;
  color: inherit;
}
video {
  display: block;
  background: #05090c;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 8px 18px;
  background: linear-gradient(180deg, rgba(16, 23, 31, 0.97), rgba(16, 23, 31, 0.86));
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(6px);
}
a[data-contract="site-name"] {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--amber-bright);
  text-decoration: none;
  text-shadow: 0 0 14px rgba(224, 122, 42, 0.3);
  white-space: nowrap;
}
a[data-contract="site-name"]:hover {
  color: var(--oxygen-bright);
  text-decoration: none;
}
.category-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  min-width: 0;
  flex: 1 1 320px;
}
a.runtime-category {
  display: inline-block;
  white-space: nowrap;
  padding: 3px 9px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--bone-dim);
  text-decoration: none;
  border: 1px solid var(--rule);
  border-radius: 2px;
  background: rgba(34, 51, 60, 0.5);
  transition: color 0.16s, border-color 0.16s, background 0.16s;
}
a.runtime-category:hover {
  color: var(--amber-bright);
  border-color: rgba(224, 122, 42, 0.5);
  background: rgba(138, 59, 38, 0.24);
  text-decoration: none;
}
.page-main {
  display: block;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 18px 8px;
}
.section-heading {
  position: relative;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: var(--bone);
  padding-bottom: 6px;
  margin-bottom: 12px;
  text-transform: none;
}
.section-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 46px;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--rust));
}
.overview-panel {
  display: grid;
  grid-template-columns: minmax(0, 268px) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 16px;
  margin-bottom: 20px;
  background:
    linear-gradient(180deg, rgba(34, 51, 60, 0.72), rgba(16, 23, 31, 0.86)),
    linear-gradient(120deg, rgba(63, 127, 168, 0.1), transparent 55%);
  border: 1px solid var(--rule);
  border-top: 2px solid rgba(94, 166, 207, 0.42);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}
.overview-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(180deg, transparent 0 3px, rgba(94, 166, 207, 0.045) 3px 4px);
  mix-blend-mode: screen;
}
.overview-poster {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3;
  align-self: start;
  border: 1px solid rgba(94, 166, 207, 0.28);
  border-radius: 2px;
  overflow: hidden;
  background: #070d11;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.5);
}
.overview-poster-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.06) brightness(0.94);
}
.overview-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(63, 127, 168, 0.12), transparent 38%, rgba(138, 59, 38, 0.22));
}
.overview-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.overview-title {
  position: relative;
  font-size: clamp(24px, 4.4vw, 44px);
  line-height: 1.02;
  letter-spacing: 0.03em;
  color: #eef3f5;
  text-shadow:
    0 1px 0 rgba(10, 16, 21, 0.9),
    0 3px 18px rgba(63, 127, 168, 0.34),
    0 0 2px rgba(224, 122, 42, 0.3);
  padding-bottom: 2px;
}
.overview-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: min(100%, 320px);
  height: 2px;
  background: linear-gradient(90deg, rgba(224, 122, 42, 0.9), rgba(94, 166, 207, 0.4), transparent);
}
.overview-tagline {
  font-size: 13px;
  line-height: 1.6;
  color: var(--bone-dim);
  max-width: 62ch;
  padding-left: 10px;
  border-left: 2px solid rgba(224, 122, 42, 0.55);
}
.player-shell {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border: 1px solid rgba(94, 166, 207, 0.3);
  border-radius: 3px;
  background: #05090c;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}
.player-shell video {
  width: 100%;
  max-width: 100%;
  display: block;
}
.player-shell.is-theater {
  border-color: rgba(224, 122, 42, 0.6);
  box-shadow: 0 0 0 1px rgba(224, 122, 42, 0.22), 0 16px 40px rgba(0, 0, 0, 0.7);
}
.player-shell.is-lights video {
  filter: brightness(1.16) contrast(1.05);
}
.player-shell.is-lights {
  background: #0a1218;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 7px 8px;
  background: linear-gradient(180deg, rgba(34, 51, 60, 0.92), rgba(16, 23, 31, 0.96));
  border-top: 1px solid var(--rule);
}
.player-controls button {
  flex: 0 0 auto;
  cursor: pointer;
  padding: 3px 9px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--bone-dim);
  background: rgba(29, 43, 51, 0.9);
  border: 1px solid var(--rule);
  border-radius: 2px;
  white-space: nowrap;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.player-controls button:hover {
  color: var(--oxygen-bright);
  border-color: rgba(111, 191, 139, 0.5);
  background: rgba(34, 51, 60, 1);
}
.player-controls input[type="range"] {
  flex: 1 1 120px;
  min-width: 90px;
  height: 4px;
  appearance: none;
  -webkit-appearance: none;
  background: linear-gradient(90deg, rgba(94, 166, 207, 0.55), rgba(94, 166, 207, 0.14));
  border-radius: 2px;
  cursor: pointer;
}
.player-controls input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--amber-bright);
  border: 1px solid #2a1a0d;
  box-shadow: 0 0 8px rgba(245, 154, 67, 0.6);
}
.player-controls input[type="range"]::-moz-range-thumb {
  width: 11px;
  height: 11px;
  border: 1px solid #2a1a0d;
  border-radius: 50%;
  background: var(--amber-bright);
}
.player-controls input[type="range"][data-player-action="volume"] {
  flex: 0 1 96px;
}
.player-shell.is-playing .player-controls button[data-player-action="play"] {
  color: var(--oxygen-bright);
  border-color: rgba(111, 191, 139, 0.55);
}
.player-shell.is-muted .player-controls button[data-player-action="mute"] {
  color: var(--amber-bright);
  border-color: rgba(245, 154, 67, 0.55);
}
.player-shell.is-fast .player-controls button[data-player-action="speed"] {
  color: var(--emergency-bright);
  border-color: rgba(94, 166, 207, 0.6);
}
.cast-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  padding: 10px 0 2px;
  border-top: 1px solid var(--rule);
}
.cast-heading {
  flex: 0 0 auto;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--amber-bright);
  padding-right: 10px;
  border-right: 1px solid var(--rule);
}
.cast-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 14px;
  min-width: 0;
}
.cast-member {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
}
.cast-portrait {
  display: block;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex: 0 0 auto;
  background:
    radial-gradient(circle at 34% 28%, rgba(94, 166, 207, 0.55), transparent 62%),
    radial-gradient(circle at 70% 78%, rgba(138, 59, 38, 0.7), transparent 66%),
    linear-gradient(160deg, #2b414c, #101a21);
  border: 1px solid rgba(94, 166, 207, 0.4);
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.55);
}
.cast-name {
  font-size: 12.5px;
  color: var(--bone-dim);
  white-space: nowrap;
}
.synopsis-block {
  border-top: 1px solid var(--rule);
  padding-top: 10px;
}
.synopsis-heading {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--emergency-bright);
  margin-bottom: 7px;
}
.synopsis-p {
  font-size: 13px;
  line-height: 1.72;
  color: var(--bone-dim);
  margin-bottom: 8px;
  padding-left: 9px;
  border-left: 1px solid rgba(94, 166, 207, 0.22);
}
.synopsis-p:last-child {
  margin-bottom: 0;
}
.episode-status {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 12px;
  padding: 8px 10px;
  border: 1px solid rgba(111, 191, 139, 0.32);
  border-left: 3px solid var(--oxygen);
  background: rgba(111, 191, 139, 0.07);
  border-radius: 2px;
}
.episode-status-heading {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--oxygen-bright);
}
.episode-status-text {
  font-size: 13px;
  color: var(--bone);
  font-variant-numeric: tabular-nums;
}
.details-block {
  border-top: 1px solid var(--rule);
  padding-top: 10px;
}
.details-heading {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--emergency-bright);
  margin-bottom: 8px;
}
.details-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 6px 18px;
  align-items: start;
}
.details-key {
  display: inline;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--bone-faint);
}
.details-val {
  display: block;
  font-size: 13px;
  color: var(--bone);
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px dashed rgba(94, 166, 207, 0.16);
}
.timeline-section {
  margin-bottom: 20px;
  padding: 14px 16px 16px;
  background: linear-gradient(180deg, rgba(22, 33, 44, 0.9), rgba(16, 23, 31, 0.92));
  border: 1px solid var(--rule);
  border-radius: 3px;
}
.timeline-heading {
  margin-bottom: 14px;
}
.timeline-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 26px;
  padding-left: 10px;
}
.timeline-list::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 3px;
  width: 1px;
  background: linear-gradient(180deg, rgba(94, 166, 207, 0.12), rgba(94, 166, 207, 0.6), rgba(224, 122, 42, 0.7));
}
.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 92px) minmax(0, 1fr);
  align-items: baseline;
  gap: 4px 12px;
  padding: 7px 0 7px 16px;
  border-bottom: 1px solid rgba(94, 166, 207, 0.1);
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -11px;
  top: 12px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--emergency);
  border: 1px solid rgba(94, 166, 207, 0.7);
  box-shadow: 0 0 8px rgba(94, 166, 207, 0.5);
}
.timeline-item:last-child::before {
  background: var(--amber);
  border-color: rgba(245, 154, 67, 0.8);
  box-shadow: 0 0 10px rgba(245, 154, 67, 0.6);
}
.timeline-item:last-child {
  border-bottom: none;
}
.timeline-code {
  font-family: "SFMono-Regular", "Menlo", "Consolas", "Liberation Mono", "Courier New", monospace;
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: var(--emergency-bright);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.timeline-label {
  font-size: 13px;
  line-height: 1.6;
  color: var(--bone-dim);
  border-left: 1px solid rgba(94, 166, 207, 0.28);
  padding-left: 10px;
}
.episodes-section {
  margin-bottom: 20px;
}
.episodes-heading {
  margin-bottom: 12px;
}
.episode-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  gap: 10px;
  align-items: start;
}
.episode-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-height: 100%;
  padding: 12px 11px 14px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(34, 51, 60, 0.85), rgba(16, 23, 31, 0.94));
  border: 1px solid var(--rule);
  border-radius: 3px;
  transition: border-color 0.16s, transform 0.16s;
}
.episode-card:hover {
  border-color: rgba(94, 166, 207, 0.45);
  transform: translateY(-2px);
}
.episode-card-active {
  border-color: rgba(224, 122, 42, 0.62);
  box-shadow: inset 0 0 0 1px rgba(224, 122, 42, 0.16), 0 8px 22px rgba(0, 0, 0, 0.5);
  background: linear-gradient(180deg, rgba(138, 59, 38, 0.28), rgba(16, 23, 31, 0.95));
}
.episode-number {
  font-family: "SFMono-Regular", "Menlo", "Consolas", "Liberation Mono", "Courier New", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--amber-bright);
}
.episode-card-active .episode-number {
  color: var(--oxygen-bright);
}
.episode-title {
  font-size: 15px;
  letter-spacing: 0.03em;
  color: #e7edf0;
  line-height: 1.25;
}
.episode-summary {
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--bone-dim);
  flex: 1 1 auto;
}
.episode-duration {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--bone-faint);
  font-variant-numeric: tabular-nums;
}
.episode-watermark {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 62%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(47, 74, 86, 0), rgba(47, 74, 86, 0.42) 62%, rgba(63, 127, 168, 0.3));
  border-top: 1px solid rgba(94, 166, 207, 0.24);
}
.episode-watermark::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 5px;
  background: repeating-linear-gradient(
    90deg,
    rgba(94, 166, 207, 0.5) 0 6px,
    rgba(94, 166, 207, 0.1) 6px 12px
  );
  opacity: 0.7;
}
.episode-card:nth-child(1) .episode-watermark { height: 30%; }
.episode-card:nth-child(2) .episode-watermark { height: 38%; }
.episode-card:nth-child(3) .episode-watermark { height: 46%; }
.episode-card:nth-child(4) .episode-watermark { height: 54%; }
.episode-card:nth-child(5) .episode-watermark { height: 60%; }
.episode-card:nth-child(6) .episode-watermark { height: 70%; }
.episode-card-active .episode-watermark {
  background: linear-gradient(180deg, rgba(224, 122, 42, 0), rgba(138, 59, 38, 0.42) 60%, rgba(224, 122, 42, 0.34));
  border-top-color: rgba(245, 154, 67, 0.5);
}
.recommendations-column {
  margin-bottom: 20px;
}
.rec-heading {
  position: relative;
  font-size: 14px;
  letter-spacing: 0.07em;
  color: var(--bone);
  padding-bottom: 6px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--rule);
}
.rec-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 58px;
  height: 2px;
  background: linear-gradient(90deg, var(--emergency-bright), transparent);
}
.rec-grid {
  display: grid;
  gap: 8px;
  align-items: start;
}
.rec-grid-four {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.rec-grid-three {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}
.rec-grid-five {
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
}
a.rec-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 7px;
  color: var(--bone);
  text-decoration: none;
  background: linear-gradient(180deg, rgba(34, 51, 60, 0.7), rgba(16, 23, 31, 0.9));
  border: 1px solid var(--rule);
  border-radius: 2px;
  transition: border-color 0.15s, transform 0.15s;
  min-width: 0;
}
a.rec-card:hover {
  color: var(--amber-bright);
  border-color: rgba(224, 122, 42, 0.5);
  transform: translateY(-2px);
  text-decoration: none;
}
[data-runtime="recommendation"] img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 2 / 3;
  height: auto;
  object-fit: cover;
  border-radius: 2px;
  border: 1px solid rgba(94, 166, 207, 0.22);
  filter: saturate(0.85) brightness(0.95);
}
.rec-name {
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--bone);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
a.rec-card:hover .rec-name {
  color: var(--amber-bright);
}
.rec-blurb {
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--bone-faint);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.comments-section {
  margin-bottom: 22px;
}
.comments-heading {
  margin-bottom: 12px;
}
.comment-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 8px;
  align-items: start;
}
.comment-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 9px 10px;
  background: rgba(29, 43, 51, 0.62);
  border: 1px solid var(--rule);
  border-left: 2px solid rgba(94, 166, 207, 0.45);
  border-radius: 2px;
}
.comment-nick {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--oxygen-bright);
}
.comment-text {
  font-size: 12.5px;
  line-height: 1.66;
  color: var(--bone-dim);
}
.site-footer {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 18px 30px;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-size: 12.5px;
  color: var(--emergency-bright);
  text-decoration: none;
  border-bottom: 1px solid rgba(94, 166, 207, 0.35);
  padding-bottom: 1px;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: var(--amber-bright);
  border-bottom-color: rgba(224, 122, 42, 0.65);
  text-decoration: none;
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 5px 12px;
}
.friend-links-label {
  font-size: 11.5px;
  letter-spacing: 0.12em;
  color: var(--bone-faint);
  padding-right: 8px;
  border-right: 1px solid var(--rule);
}
a.runtime-friend-link {
  font-size: 12px;
  color: var(--bone-dim);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid transparent;
}
a.runtime-friend-link:hover {
  color: var(--oxygen-bright);
  border-bottom-color: rgba(111, 191, 139, 0.6);
  text-decoration: none;
}
.footer-disclaimer {
  font-size: 11px;
  line-height: 1.6;
  color: var(--bone-faint);
  max-width: 96ch;
}
@media (max-width: 980px) {.overview-panel {
    grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
    gap: 16px;
  }}
@media (max-width: 760px) {.page-main {
    padding: 12px 12px 6px;
  }
.site-header {
    padding: 7px 12px;
    gap: 10px;
  }
.overview-panel {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    padding: 12px;
  }
.overview-poster {
    max-width: 240px;
    margin: 0 auto;
  }
.overview-info {
    gap: 12px;
  }
.timeline-list {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }
.cast-row {
    gap: 8px 12px;
  }
.cast-list {
    gap: 6px 10px;
  }
.cast-portrait {
    width: 30px;
    height: 30px;
  }
.episode-list {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
.rec-grid-four, .rec-grid-three, .rec-grid-five {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
.comment-list {
    grid-template-columns: minmax(0, 1fr);
  }
.site-footer {
    padding: 12px 12px 24px;
  }}
@media (max-width: 460px) {body {
    font-size: 13.5px;
  }
.player-controls button {
    padding: 3px 7px;
    font-size: 11.5px;
  }
.player-controls input[type="range"][data-player-action="volume"] {
    flex: 1 1 80px;
  }
.episode-list {
    grid-template-columns: minmax(0, 1fr);
  }
.rec-grid-four, .rec-grid-three, .rec-grid-five {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.details-list {
    grid-template-columns: minmax(0, 1fr);
  }
.timeline-item {
    grid-template-columns: minmax(0, 1fr);
    gap: 2px;
  }
.timeline-label {
    border-left: none;
    padding-left: 0;
  }}

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}
