:root {
  --red: #c8102e;
  --red-deep: #8f0a20;
  --red-glow: #e63a4d;
  --ash: #16151a;
  --ash-2: #1e1c22;
  --ash-3: #262430;
  --wood: #2d2620;
  --wood-2: #3a3129;
  --grey: #8b8794;
  --grey-2: #6b6773;
  --grey-3: #a9a5b0;
  --paper: #e8e4dd;
  --line: #33303c;
  --serif: "Songti SC", "STSong", "SimSun", "Noto Serif SC", serif;
  --sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  --pad: 14px;
  --gap: 10px;
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  background:
    radial-gradient(circle at 12% 0%, rgba(200, 16, 46, 0.07), transparent 42%),
    radial-gradient(circle at 88% 8%, rgba(200, 16, 46, 0.05), transparent 38%),
    linear-gradient(180deg, #101014 0%, #16151a 40%, #121117 100%);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  min-height: 100vh;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
button, input {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
}
button {
  cursor: pointer;
}
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.site-head {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(180deg, rgba(16, 16, 20, 0.96), rgba(16, 16, 20, 0.82));
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.site-head__bar {
  display: flex;
  align-items: baseline;
  gap: var(--gap);
  padding: 9px var(--pad);
  border-bottom: 1px solid rgba(200, 16, 46, 0.16);
}
.site-brand {
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: 0.16em;
  color: var(--paper);
  position: relative;
  padding-left: 12px;
}
.site-brand::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 15px;
  transform: translateY(-50%);
  background: var(--red);
  box-shadow: 0 0 8px rgba(200, 16, 46, 0.7);
}
a[data-contract="site-name"] {
  color: var(--paper);
  text-decoration: none;
}
a[data-contract="site-name"]:hover {
  color: var(--red-glow);
}
.categories-strip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px var(--pad) 9px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--red-deep) transparent;
}
.categories-strip::-webkit-scrollbar {
  height: 3px;
}
.categories-strip::-webkit-scrollbar-thumb {
  background: var(--red-deep);
}
a.runtime-category {
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--grey-3);
  text-decoration: none;
  padding: 3px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
a.runtime-category:hover {
  color: var(--paper);
  border-color: var(--red);
  background: rgba(200, 16, 46, 0.14);
}
.page-main {
  display: block;
  padding: 12px var(--pad) 20px;
  max-width: 1280px;
  margin: 0 auto;
}
.sec-heading {
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--paper);
  padding-left: 10px;
  margin-bottom: 8px;
  position: relative;
  line-height: 1.3;
}
.sec-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 2px;
  background: var(--red);
}
.movie-overview {
  background:
    linear-gradient(180deg, rgba(45, 38, 32, 0.55), rgba(22, 21, 26, 0.9));
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 12px;
  margin-bottom: 16px;
}
.overview-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin-bottom: 12px;
}
.poster-wrap {
  position: relative;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border: 1px solid rgba(200, 16, 46, 0.35);
  background: var(--ash-3);
}
.poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.05);
}
.hero-veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(105deg, transparent 42%, rgba(16, 16, 20, 0.72) 62%, rgba(16, 16, 20, 0.3) 100%);
  z-index: 2;
}
.hero-face {
  position: absolute;
  right: 0;
  top: 6%;
  width: 30%;
  max-width: 190px;
  z-index: 3;
  margin: 0;
}
.hero-face__img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 65% 30%;
  filter: brightness(0.42) saturate(0.6) contrast(1.1);
  border-left: 1px solid rgba(200, 16, 46, 0.5);
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%);
}
.hero-face__cap {
  display: block;
  margin-top: 3px;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--grey);
  text-align: right;
}
.hero-copy {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  padding-top: 4px;
}
.movie-title {
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: 0.08em;
  color: var(--paper);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.7);
}
.movie-tagline {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.34em;
  color: var(--red-glow);
  border-left: 2px solid var(--red);
  padding-left: 8px;
}
.movie-seo {
  font-size: 12.5px;
  line-height: 1.72;
  color: var(--grey-3);
  max-width: 62ch;
  text-align: justify;
}
.hero-actions {
  display: flex;
  gap: 8px;
  margin-top: 2px;
}
.btn {
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  padding: 7px 20px;
  border-radius: 2px;
  border: 1px solid var(--line);
  color: var(--paper);
  background: rgba(255, 255, 255, 0.03);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.btn--play {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  box-shadow: 0 4px 16px rgba(200, 16, 46, 0.35);
}
.btn--play:hover {
  background: var(--red-glow);
  border-color: var(--red-glow);
}
.player-shell {
  position: relative;
  width: 100%;
  min-width: 0;
  margin: 10px 0 14px;
  background: #000;
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
}
.player-shell video {
  display: block;
  width: 100%;
  background: #000;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 7px 9px;
  background: linear-gradient(180deg, rgba(20, 19, 24, 0.96), rgba(14, 13, 17, 0.98));
  border-top: 1px solid var(--line);
}
.ctrl {
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--grey-3);
  padding: 4px 9px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.02);
  transition: color 0.18s, border-color 0.18s, background 0.18s;
}
.ctrl:hover {
  color: var(--paper);
  border-color: var(--red);
}
.ctrl--play {
  color: var(--red-glow);
  border-color: rgba(200, 16, 46, 0.5);
}
.ctrl--progress {
  flex: 1 1 160px;
  min-width: 120px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--ash-3);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.ctrl--progress::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px rgba(200, 16, 46, 0.8);
}
.ctrl--progress::-moz-range-thumb {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 50%;
  background: var(--red);
}
.ctrl--volume {
  flex: 0 0 76px;
  width: 76px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--ash-3);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.ctrl--volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--grey-3);
}
.ctrl--volume::-moz-range-thumb {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  background: var(--grey-3);
}
.player-shell.is-playing .ctrl--play {
  color: var(--red);
  border-color: var(--red);
}
.player-shell.is-muted .ctrl--volume {
  opacity: 0.45;
}
.player-shell.is-speed .ctrl[data-player-action="speed"] {
  color: var(--red-glow);
  border-color: rgba(200, 16, 46, 0.6);
}
.player-shell.is-pip .ctrl[data-player-action="pip"], .player-shell.is-theater .ctrl[data-player-action="theater"], .player-shell.is-fullscreen .ctrl[data-player-action="fullscreen"] {
  color: var(--paper);
  border-color: var(--red);
  background: rgba(200, 16, 46, 0.16);
}
.player-shell.is-lights-off {
  background: #000;
}
.player-shell.is-lights-off .player-controls {
  opacity: 0.35;
}
.player-shell.is-theater {
  box-shadow: 0 0 0 1px rgba(200, 16, 46, 0.4), 0 18px 46px rgba(0, 0, 0, 0.7);
}
.player-shell.is-fullscreen {
  border-radius: 0;
}
.overview-body {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 12px 16px;
  align-items: start;
  border-top: 1px solid rgba(200, 16, 46, 0.18);
  padding-top: 12px;
}
.cast-ring {
  grid-column: 1;
  min-width: 0;
}
.episode-status {
  grid-column: 1;
  min-width: 0;
  border-top: 1px dashed rgba(255, 255, 255, 0.09);
  padding-top: 8px;
}
.synopsis-block {
  grid-column: 2;
  grid-row: 1 / span 3;
  min-width: 0;
  border-left: 1px solid var(--line);
  padding-left: 14px;
}
.details-block {
  grid-column: 1;
  min-width: 0;
  border-top: 1px dashed rgba(255, 255, 255, 0.09);
  padding-top: 8px;
}
.cast-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-start;
}
.cast-item {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  padding-right: 20px;
}
.cast-avatar {
  display: block;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(200, 16, 46, 0.45);
  background: var(--ash-3);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.08);
}
.cast-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.05);
}
.cast-name {
  display: block;
  margin-top: 5px;
  font-family: var(--serif);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  color: var(--paper);
}
.cast-role {
  position: absolute;
  top: 0;
  right: 0;
  width: 18px;
  font-size: 9.5px;
  line-height: 1.25;
  letter-spacing: 0.05em;
  color: var(--grey);
  writing-mode: vertical-rl;
  text-orientation: upright;
  white-space: nowrap;
}
.status-line {
  display: inline-block;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--grey-3);
  border-left: 2px solid var(--red);
  padding: 3px 10px;
  background: rgba(200, 16, 46, 0.08);
}
.synopsis-body {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.synopsis-para {
  font-size: 12.5px;
  line-height: 1.78;
  color: var(--grey-3);
  text-align: justify;
}
.synopsis-para:first-child::first-letter {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1;
  color: var(--red-glow);
  padding-right: 3px;
}
.details-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 16px;
}
.details-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 3px 0;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.07);
  min-width: 0;
}
.details-key {
  flex: 0 0 5em;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  color: var(--grey-2);
}
.details-val {
  font-size: 12.5px;
  color: var(--paper);
  min-width: 0;
}
.timeline-strip {
  margin-bottom: 16px;
}
.timeline-track {
  display: flex;
  gap: 0;
  overflow-x: auto;
  padding: 14px 2px 6px;
  scrollbar-width: thin;
  scrollbar-color: var(--red-deep) transparent;
  position: relative;
}
.timeline-track::-webkit-scrollbar {
  height: 4px;
}
.timeline-track::-webkit-scrollbar-thumb {
  background: var(--red-deep);
}
.timeline-node {
  position: relative;
  flex: 0 0 auto;
  width: 200px;
  padding: 0 14px 0 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.timeline-node::before {
  content: "";
  position: absolute;
  left: 4px;
  right: 0;
  top: 5px;
  height: 1px;
  background: var(--line);
}
.timeline-node:last-child::before {
  right: 100%;
}
.timeline-dot {
  position: relative;
  z-index: 1;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--ash-3);
  border: 2px solid var(--grey-2);
  margin-bottom: 6px;
}
.timeline-time {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--grey-2);
}
.timeline-label {
  font-size: 12px;
  line-height: 1.55;
  color: var(--grey-3);
}
.timeline-node.is-done .timeline-dot {
  background: var(--red-deep);
  border-color: var(--red-deep);
}
.timeline-node.is-done::before {
  background: rgba(200, 16, 46, 0.35);
}
.timeline-node.is-done .timeline-time {
  color: var(--grey-3);
}
.timeline-node.is-current .timeline-dot {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(200, 16, 46, 0.22), 0 0 12px rgba(200, 16, 46, 0.6);
}
.timeline-node.is-current .timeline-time {
  color: var(--red-glow);
  font-weight: 600;
}
.timeline-node.is-current .timeline-label {
  color: var(--paper);
}
.episodes-grid {
  margin-bottom: 16px;
}
.episode-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
}
.episode-card {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  padding: 8px 10px;
  background: linear-gradient(180deg, rgba(45, 38, 32, 0.4), rgba(22, 21, 26, 0.6));
  border: 1px solid var(--line);
  border-left: 2px solid var(--wood-2);
  border-radius: 2px;
  transition: border-color 0.2s, background 0.2s;
}
.episode-card:hover {
  border-left-color: var(--red);
  background: linear-gradient(180deg, rgba(200, 16, 46, 0.08), rgba(22, 21, 26, 0.6));
}
.episode-num {
  flex: 0 0 auto;
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--wood-2);
  writing-mode: vertical-rl;
  text-orientation: upright;
  padding: 2px 0;
}
.episode-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.episode-title {
  font-size: 13.5px;
  letter-spacing: 0.1em;
  color: var(--paper);
  line-height: 1.3;
}
.episode-summary {
  font-size: 12px;
  line-height: 1.6;
  color: var(--grey-2);
  text-align: justify;
}
.episode-duration {
  font-size: 10.5px;
  letter-spacing: 0.12em;
  color: var(--grey-2);
}
.episode-card.is-current {
  border-left-color: var(--red);
  background: linear-gradient(180deg, rgba(200, 16, 46, 0.14), rgba(22, 21, 26, 0.7));
}
.episode-card.is-current .episode-num {
  color: var(--red);
}
.episode-card.is-current .episode-title {
  color: var(--red-glow);
}
.episode-card.is-current .episode-duration {
  color: var(--red-glow);
}
.comments-stack {
  margin-bottom: 16px;
}
.comments-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  align-items: start;
}
.comment-track {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.comment-track--b {
  margin-top: 26px;
}
.comment-card {
  position: relative;
  padding: 9px 12px;
  background: rgba(30, 28, 34, 0.72);
  border: 1px solid var(--line);
  border-radius: 2px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}
.comment-track--a .comment-card:nth-child(2) {
  margin-left: 14px;
}
.comment-track--a .comment-card:nth-child(3) {
  margin-left: 4px;
}
.comment-track--b .comment-card:nth-child(1) {
  margin-right: 16px;
}
.comment-track--b .comment-card:nth-child(3) {
  margin-right: 6px;
}
.comment-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: rgba(200, 16, 46, 0.55);
}
.comment-text {
  font-size: 12.5px;
  line-height: 1.68;
  color: var(--grey-3);
  text-align: justify;
}
.comment-nick {
  display: block;
  margin-top: 5px;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: var(--red-glow);
}
.rec-region {
  margin-bottom: 14px;
}
.chip-rail {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: thin;
  scrollbar-color: var(--red-deep) transparent;
}
.chip-rail::-webkit-scrollbar {
  height: 4px;
}
.chip-rail::-webkit-scrollbar-thumb {
  background: var(--red-deep);
}
.chip-item {
  flex: 0 0 auto;
  width: 176px;
}
.chip-link {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 6px;
  background: rgba(30, 28, 34, 0.7);
  border: 1px solid var(--line);
  border-radius: 999px 999px 4px 4px;
  color: var(--grey-3);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
a.chip-link {
  color: var(--grey-3);
  text-decoration: none;
}
a.chip-link:hover {
  border-color: var(--red);
  background: rgba(200, 16, 46, 0.12);
  color: var(--paper);
}
.chip-link img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 999px 999px 3px 3px;
  filter: saturate(0.7) contrast(1.05);
}
.chip-link [data-runtime="name"] {
  font-family: var(--serif);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--paper);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 6px;
}
.chip-link [data-runtime="blurb"] {
  font-size: 11px;
  line-height: 1.5;
  color: var(--grey-2);
  padding: 0 6px 3px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
[data-runtime="recommendation"] img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
}
.site-foot {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px var(--pad) 26px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.foot-disclaimer {
  font-size: 11.5px;
  line-height: 1.7;
  color: var(--grey-2);
  text-align: justify;
}
.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.foot-link {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--grey-3);
  text-decoration: none;
  transition: color 0.2s;
}
a[data-contract="footer-home"] {
  color: var(--grey-3);
  text-decoration: none;
}
a[data-contract="footer-home"]:hover {
  color: var(--red-glow);
}
a[data-contract="footer-sitemap"] {
  color: var(--grey-3);
  text-decoration: none;
}
a[data-contract="footer-sitemap"]:hover {
  color: var(--red-glow);
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
.friend-links__label {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--grey-2);
  padding-right: 4px;
  border-right: 1px solid var(--line);
  margin-right: 2px;
}
.runtime-friend-link {
  font-size: 11.5px;
  color: var(--grey-2);
  text-decoration: none;
  padding: 2px 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  transition: color 0.2s, border-color 0.2s;
}
.runtime-friend-link:hover {
  color: var(--red-glow);
  border-color: rgba(200, 16, 46, 0.5);
}
@media (max-width: 900px) {.overview-hero {
    grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
  }
.overview-body {
    grid-template-columns: minmax(0, 1fr);
  }
.cast-ring, .episode-status, .details-block, .synopsis-block {
    grid-column: 1;
    grid-row: auto;
  }
.synopsis-block {
    border-left: 0;
    border-top: 1px dashed rgba(255, 255, 255, 0.09);
    padding-left: 0;
    padding-top: 8px;
  }
.movie-title {
    font-size: 25px;
  }
.hero-face {
    width: 34%;
  }}
@media (max-width: 640px) {body {
    font-size: 12.5px;
  }
.page-main {
    padding: 10px 11px 16px;
  }
.movie-overview {
    padding: 10px;
  }
.overview-hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }
.poster-wrap {
    max-width: 100%;
    aspect-ratio: 2 / 3;
  }
.hero-face {
    top: auto;
    bottom: 34%;
    right: 0;
    width: 44%;
    max-width: 180px;
  }
.movie-title {
    font-size: 22px;
  }
.movie-seo {
    font-size: 12px;
  }
.cast-list {
    gap: 8px;
  }
.cast-item {
    padding-right: 16px;
  }
.cast-avatar {
    width: 50px;
    height: 50px;
  }
.details-list {
    grid-template-columns: minmax(0, 1fr);
  }
.timeline-node {
    width: 168px;
  }
.episode-cards {
    grid-template-columns: minmax(0, 1fr);
  }
.comments-columns {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }
.comment-track--b {
    margin-top: 0;
  }
.comment-track--a .comment-card:nth-child(2), .comment-track--a .comment-card:nth-child(3), .comment-track--b .comment-card:nth-child(1), .comment-track--b .comment-card:nth-child(3) {
    margin-left: 0;
    margin-right: 0;
  }
.chip-item {
    width: 156px;
  }}
@media (max-width: 420px) {.player-controls {
    gap: 5px;
    padding: 6px 7px;
  }
.ctrl {
    font-size: 11px;
    padding: 3px 7px;
  }
.ctrl--progress {
    flex: 1 1 100%;
    order: -1;
    min-width: 100%;
  }
.ctrl--volume {
    flex: 0 0 60px;
    width: 60px;
  }
.movie-title {
    font-size: 20px;
  }
.hero-face {
    width: 50%;
  }}

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}
