:root {
  --ink: #0d1a16;
  --ink-2: #0a1411;
  --panel: #12201b;
  --panel-2: #16281f;
  --grid-line: rgba(196, 214, 203, 0.07);
  --rule: rgba(196, 214, 203, 0.16);
  --rule-strong: rgba(196, 214, 203, 0.3);
  --cool: #9fb0a8;
  --cool-dim: #6f8079;
  --paper: #e8ece7;
  --paper-dim: #b9c4bd;
  --tea: #b98a4b;
  --tea-soft: #d8b076;
  --file-yellow: #d9c37a;
  --rust: #8a5a33;
  --mono: ui-monospace, "SFMono-Regular", "Menlo", "Consolas", "Liberation Mono", monospace;
  --sans: "Helvetica Neue", "Arial Narrow", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --sans-body: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background-color: var(--ink);
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 44px 44px, 44px 44px;
  color: var(--paper);
  font-family: var(--sans-body);
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  display: block;
}
h1, h2, h3, p, ul, ol, dl, dd {
  margin: 0;
  padding: 0;
}
ul, ol {
  list-style: none;
}
a {
  color: var(--paper);
  text-decoration: none;
}
button, input, select {
  font: inherit;
  color: inherit;
}
.site-header {
  position: relative;
  border-bottom: 1px solid var(--rule);
  background: linear-gradient(180deg, rgba(10, 20, 16, 0.96), rgba(13, 26, 21, 0.86));
  backdrop-filter: blur(4px);
}
.header-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 20px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 12px 20px 11px;
}
a[data-contract="site-name"] {
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper);
  text-decoration: none;
  padding-right: 14px;
  border-right: 1px solid var(--rule-strong);
}
a[data-contract="site-name"]:hover {
  color: var(--tea-soft);
}
.category-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  flex: 1 1 auto;
  min-width: 0;
}
.runtime-category, a.runtime-category {
  display: inline-block;
  white-space: nowrap;
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  color: var(--cool);
  text-decoration: none;
  padding: 4px 10px;
  border: 1px solid var(--rule);
  border-radius: 2px;
  background: rgba(196, 214, 203, 0.03);
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
a.runtime-category:hover, a.runtime-category:focus-visible {
  color: var(--ink);
  background: var(--file-yellow);
  border-color: var(--file-yellow);
}
.header-tick {
  height: 22px;
  max-width: 1240px;
  margin: 0 auto;
  background-image:
    repeating-linear-gradient(90deg, var(--rule-strong) 0 1px, transparent 1px 12px),
    repeating-linear-gradient(90deg, var(--tea) 0 1px, transparent 1px 60px);
  background-size: 12px 100%, 60px 100%;
  background-position: 20px 100%, 20px 100%;
  background-repeat: repeat-x, repeat-x;
  opacity: 0.75;
}
.page-main {
  display: block;
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px 20px 0;
}
.movie-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  grid-template-areas:
    "head poster"
    "synopsis poster"
    "status poster"
    "cast poster"
    "details details";
  column-gap: 22px;
  row-gap: 14px;
  align-items: start;
  background: linear-gradient(160deg, var(--panel) 0%, var(--ink-2) 100%);
  border: 1px solid var(--rule);
  border-radius: 3px;
  padding: 18px;
  position: relative;
  overflow: hidden;
}
.movie-overview::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--tea), transparent 70%);
  opacity: 0.55;
}
.overview-head {
  grid-area: head;
  min-width: 0;
}
.overview-title {
  font-family: var(--sans);
  font-size: clamp(26px, 3.6vw, 40px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--paper);
}
.overview-tagline {
  margin-top: 8px;
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--tea-soft);
}
.overview-tagline::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1px;
  margin-right: 8px;
  vertical-align: 4px;
  background: var(--tea);
}
.overview-seo {
  margin-top: 10px;
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--cool-dim);
  border-left: 1px solid var(--rule-strong);
  padding-left: 10px;
}
.overview-poster {
  grid-area: poster;
  position: relative;
  align-self: start;
  width: 100%;
  border: 1px solid var(--rule);
  border-radius: 2px;
  overflow: hidden;
  background: var(--ink-2);
  isolation: isolate;
}
.overview-portrait {
  width: 100%;
  aspect-ratio: 2 / 3;
  height: auto;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  filter: saturate(0.72) contrast(1.06) brightness(0.94);
}
.overview-filegrid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(90deg, rgba(216, 176, 118, 0.1) 0 1px, transparent 1px 32px),
    repeating-linear-gradient(0deg, rgba(216, 176, 118, 0.1) 0 1px, transparent 1px 44px),
    linear-gradient(180deg, rgba(10, 20, 16, 0.55) 0%, rgba(10, 20, 16, 0) 34%, rgba(10, 20, 16, 0.7) 100%);
  mix-blend-mode: screen;
  opacity: 0.85;
}
.overview-timeline-tick {
  position: absolute;
  top: 14px;
  right: 0;
  width: 58%;
  height: 1px;
  background-image: repeating-linear-gradient(90deg, var(--tea-soft) 0 1px, transparent 1px 9px);
  opacity: 0.85;
  box-shadow: 0 6px 0 -0.5px rgba(216, 176, 118, 0.35), 0 12px 0 -0.5px rgba(216, 176, 118, 0.18);
}
.synopsis-block {
  grid-area: synopsis;
  min-width: 0;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
}
.section-heading {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--file-yellow);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.section-heading::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--tea);
  transform: rotate(45deg);
  flex: none;
}
.section-heading::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: var(--rule);
}
.synopsis-paragraph {
  font-size: 13px;
  line-height: 1.72;
  color: var(--paper-dim);
  margin-bottom: 7px;
  max-width: 62ch;
}
.synopsis-paragraph:last-child {
  margin-bottom: 0;
}
.episode-status {
  grid-area: status;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 14px;
  padding: 8px 10px;
  border: 1px dashed var(--rule-strong);
  border-radius: 2px;
  background: rgba(185, 138, 75, 0.06);
}
.status-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--cool-dim);
  text-transform: uppercase;
}
.status-value {
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 700;
  color: var(--tea-soft);
  letter-spacing: 0.04em;
}
.episode-status .status-value + .status-label {
  margin-left: 6px;
  padding-left: 14px;
  border-left: 1px solid var(--rule);
}
.cast-block {
  grid-area: cast;
  min-width: 0;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
}
.cast-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 8px;
  align-items: start;
}
.cast-card {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 9px 10px 10px;
  border: 1px solid var(--rule);
  border-left: 2px solid var(--tea);
  border-radius: 2px;
  background: rgba(196, 214, 203, 0.03);
}
.cast-name {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--paper);
}
.cast-role {
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--tea-soft);
}
.cast-note {
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--cool-dim);
  padding-top: 4px;
  border-top: 1px dotted var(--rule);
}
.details-block {
  grid-area: details;
  min-width: 0;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
}
.details-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
  gap: 0 18px;
}
.details-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 5px 0;
  border-bottom: 1px dotted var(--rule);
}
.details-key {
  font-size: 11.5px;
  letter-spacing: 0.14em;
  color: var(--cool-dim);
  white-space: nowrap;
}
.details-value {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--paper);
  text-align: right;
}
.player-shell {
  margin-top: 16px;
  border: 1px solid var(--rule);
  border-radius: 3px;
  background: var(--ink-2);
  padding: 10px;
  transition: background 0.25s, border-color 0.25s;
}
.player-frame {
  width: 100%;
  max-width: 100%;
  background: #000;
  border: 1px solid rgba(196, 214, 203, 0.12);
  overflow: hidden;
}
.player-frame video {
  display: block;
  width: 100%;
  height: auto;
  background: #000;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: 9px;
  padding-top: 9px;
  border-top: 1px solid var(--rule);
}
.ctrl-btn {
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  padding: 5px 11px;
  color: var(--cool);
  background: rgba(196, 214, 203, 0.04);
  border: 1px solid var(--rule);
  border-radius: 2px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.15s, background 0.15s, border-color 0.15s;
}
.ctrl-btn:hover {
  color: var(--paper);
  border-color: var(--rule-strong);
  background: rgba(196, 214, 203, 0.09);
}
.ctrl-btn.is-active {
  color: var(--ink);
  background: var(--tea-soft);
  border-color: var(--tea-soft);
}
.ctrl-btn.is-playing {
  color: var(--ink);
  background: var(--file-yellow);
  border-color: var(--file-yellow);
}
.ctrl-btn.is-muted {
  color: var(--file-yellow);
  border-color: var(--file-yellow);
  background: rgba(217, 195, 122, 0.12);
}
.ctrl-progress {
  flex: 1 1 220px;
  min-width: 120px;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(196, 214, 203, 0.18);
  border-radius: 0;
  cursor: pointer;
}
.ctrl-progress::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 14px;
  background: var(--file-yellow);
  border: 0;
  border-radius: 1px;
}
.ctrl-progress::-moz-range-thumb {
  width: 10px;
  height: 14px;
  background: var(--file-yellow);
  border: 0;
  border-radius: 1px;
}
.ctrl-volume {
  flex: 0 1 96px;
  min-width: 70px;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(196, 214, 203, 0.18);
  cursor: pointer;
}
.ctrl-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 8px;
  height: 13px;
  background: var(--tea-soft);
  border: 0;
  border-radius: 1px;
}
.ctrl-volume::-moz-range-thumb {
  width: 8px;
  height: 13px;
  background: var(--tea-soft);
  border: 0;
  border-radius: 1px;
}
.ctrl-speed {
  font-family: var(--mono);
  font-size: 11.5px;
  padding: 5px 6px;
  color: var(--cool);
  background: rgba(196, 214, 203, 0.04);
  border: 1px solid var(--rule);
  border-radius: 2px;
  cursor: pointer;
}
.ctrl-speed:hover {
  color: var(--paper);
  border-color: var(--rule-strong);
}
.ctrl-speed option {
  background: var(--panel-2);
  color: var(--paper);
}
.player-shell.is-theater {
  background: #050a08;
  border-color: var(--tea);
}
.player-shell.is-lights-dim {
  background: #030605;
  border-color: rgba(196, 214, 203, 0.1);
}
.player-shell.is-lights-dim .player-frame video {
  filter: brightness(0.55);
}
.timeline-strip {
  margin-top: 22px;
  padding-top: 4px;
}
.timeline-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(158px, 1fr));
  gap: 0;
  border-top: 1px solid var(--rule-strong);
  position: relative;
}
.timeline-list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-image: repeating-linear-gradient(90deg, var(--tea) 0 1px, transparent 1px 24px);
  opacity: 0.5;
}
.timeline-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 12px 12px 0;
  border-right: 1px solid var(--rule);
  position: relative;
}
.timeline-item::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--tea-soft);
  transform: rotate(45deg);
}
.timeline-item:last-child {
  border-right: 0;
}
.timeline-item + .timeline-item {
  padding-left: 12px;
}
.timeline-code {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  color: var(--file-yellow);
}
.timeline-label {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--paper-dim);
}
.episodes-section {
  margin-top: 22px;
}
.episodes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  align-items: start;
}
.episode-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 11px 12px 10px;
  border: 1px solid var(--rule);
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(196, 214, 203, 0.035), rgba(196, 214, 203, 0.01));
  position: relative;
}
.episode-card::after {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  width: 12px;
  height: 12px;
  background: linear-gradient(225deg, var(--tea) 0 50%, transparent 50%);
  opacity: 0.6;
}
.episode-card.is-current {
  border-color: var(--tea);
  background: linear-gradient(180deg, rgba(185, 138, 75, 0.14), rgba(185, 138, 75, 0.04));
}
.episode-card.is-current .episode-number {
  color: var(--ink);
  background: var(--file-yellow);
  border-color: var(--file-yellow);
}
.episode-head {
  display: flex;
  align-items: baseline;
  gap: 9px;
  flex-wrap: wrap;
}
.episode-number {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--tea-soft);
  border: 1px solid var(--rule-strong);
  border-radius: 2px;
  padding: 1px 6px;
  white-space: nowrap;
  flex: none;
}
.episode-title {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--paper);
  min-width: 0;
}
.episode-summary {
  font-size: 12.5px;
  line-height: 1.68;
  color: var(--cool);
}
.episode-duration {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--cool-dim);
  align-self: flex-start;
  padding-top: 5px;
  border-top: 1px dotted var(--rule);
  width: 100%;
}
.comments-section {
  margin-top: 22px;
  margin-bottom: 34px;
}
.comments-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(238px, 1fr);
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-color: var(--rule-strong) transparent;
  scrollbar-width: thin;
}
.comments-rail::-webkit-scrollbar {
  height: 6px;
}
.comments-rail::-webkit-scrollbar-track {
  background: rgba(196, 214, 203, 0.06);
}
.comments-rail::-webkit-scrollbar-thumb {
  background: var(--rule-strong);
}
.comment-note {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 11px 12px;
  background: linear-gradient(180deg, rgba(185, 138, 75, 0.09), rgba(196, 214, 203, 0.02));
  border: 1px solid var(--rule);
  border-left: 2px solid var(--rust);
  border-radius: 2px;
  position: relative;
}
.comment-note::before {
  content: "";
  position: absolute;
  top: 6px;
  right: 6px;
  width: 18px;
  height: 1px;
  background: var(--tea);
  opacity: 0.6;
}
.comment-nick {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--tea-soft);
}
.comment-nick::before {
  content: "▍";
  color: var(--rust);
  margin-right: 4px;
}
.comment-text {
  font-size: 12.5px;
  line-height: 1.68;
  color: var(--paper-dim);
}
.recommend-region {
  margin-top: 18px;
}
.region-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-bottom: 7px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--rule);
}
.region-index {
  font-family: var(--mono);
  font-size: clamp(28px, 4.6vw, 46px);
  line-height: 0.9;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px var(--tea);
  text-stroke: 1px var(--tea);
  flex: none;
}
.region-title {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--paper);
  min-width: 0;
}
.recommend-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 9px;
  align-items: start;
}
a.rec-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 7px 7px 9px;
  border: 1px solid var(--rule);
  border-radius: 2px;
  background: rgba(196, 214, 203, 0.03);
  color: var(--paper);
  text-decoration: none;
  transition: border-color 0.16s, background 0.16s, transform 0.16s;
}
a.rec-card:hover, a.rec-card:focus-visible {
  border-color: var(--tea);
  background: rgba(185, 138, 75, 0.1);
  transform: translateY(-2px);
}
[data-runtime="recommendation"] img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 1px;
  background: var(--ink-2);
  filter: saturate(0.78) contrast(1.04);
}
.rec-name {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--paper);
  line-height: 1.35;
}
.rec-blurb {
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--cool-dim);
}
.site-footer {
  margin-top: 30px;
  border-top: 1px solid var(--rule);
  background: linear-gradient(180deg, rgba(10, 20, 16, 0.6), rgba(8, 15, 12, 0.95));
  padding: 16px 20px 26px;
}
.footer-top {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding-bottom: 11px;
  border-bottom: 1px dotted var(--rule);
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  color: var(--cool);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: var(--file-yellow);
  border-bottom-color: var(--file-yellow);
}
.friend-links {
  max-width: 1240px;
  margin: 11px auto 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
}
.friend-links-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cool-dim);
  padding-right: 10px;
  border-right: 1px solid var(--rule);
}
a.runtime-friend-link {
  font-size: 11.5px;
  color: var(--cool-dim);
  text-decoration: none;
  padding: 2px 7px;
  border: 1px solid transparent;
  border-radius: 2px;
  white-space: nowrap;
}
a.runtime-friend-link:hover {
  color: var(--tea-soft);
  border-color: var(--rule);
  background: rgba(196, 214, 203, 0.04);
}
.footer-disclaimer {
  max-width: 1240px;
  margin: 14px auto 0;
  font-size: 11px;
  line-height: 1.7;
  color: var(--cool-dim);
  border-top: 1px solid var(--rule);
  padding-top: 10px;
}
@media (max-width: 900px) {.movie-overview {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-areas:
      "head head"
      "poster synopsis"
      "status status"
      "cast cast"
      "details details";
    column-gap: 16px;
  }}
@media (max-width: 680px) {.page-main {
    padding: 14px 12px 0;
  }
.header-inner {
    padding: 10px 12px;
    gap: 8px 12px;
  }
a[data-contract="site-name"] {
    font-size: 17px;
    border-right: 0;
    padding-right: 0;
  }
.movie-overview {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "head"
      "poster"
      "synopsis"
      "status"
      "cast"
      "details";
    padding: 14px 12px;
  }
.overview-poster {
    max-width: 320px;
  }
.episodes-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.recommend-grid {
    grid-template-columns: repeat(auto-fill, minmax(146px, 1fr));
  }
.timeline-item {
    border-right: 0;
    border-bottom: 1px solid var(--rule);
    padding-left: 0 !important;
    padding-right: 0;
  }
.timeline-item:last-child {
    border-bottom: 0;
  }
.comments-rail {
    grid-auto-columns: minmax(210px, 82%);
  }
.movie-overview::before {
    width: 2px;
  }
.site-footer {
    padding: 14px 12px 22px;
  }}
@media (max-width: 420px) {.recommend-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.cast-list {
    grid-template-columns: minmax(0, 1fr);
  }
.details-list {
    grid-template-columns: minmax(0, 1fr);
  }
.episode-status .status-value + .status-label {
    margin-left: 0;
    padding-left: 0;
    border-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}
