:root {
  --ink: #10151c;
  --ink-soft: #1a212b;
  --slate: #2b3542;
  --steel: #4d5c6e;
  --dust: #7d8b9c;
  --fog: #aab5c2;
  --paper: #e8e6e0;
  --paper-dim: #d4d1c8;
  --lamp: #e08a3c;
  --lamp-deep: #c2671f;
  --lamp-glow: #f2a95c;
  --cold: #3f566d;
  --cold-deep: #24333f;
  --warm: #4a3320;
  --warm-deep: #33220f;
  --line: rgba(170, 181, 194, 0.22);
  --line-strong: rgba(170, 181, 194, 0.4);
  --radius: 3px;
  --gap: 10px;
  --h-serif: "Songti SC", "SimSun", "Source Han Serif SC", "Noto Serif SC", Georgia, serif;
  --h-sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Heiti SC", Helvetica, Arial, sans-serif;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  padding: 0;
  background:
    radial-gradient(120% 90% at 78% 6%, rgba(224, 138, 60, 0.12) 0%, rgba(224, 138, 60, 0) 46%),
    radial-gradient(90% 70% at 4% 30%, rgba(63, 86, 109, 0.28) 0%, rgba(63, 86, 109, 0) 55%),
    linear-gradient(178deg, #141a22 0%, #10151c 52%, #0c1117 100%);
  background-attachment: fixed;
  color: var(--paper-dim);
  font-family: var(--h-sans);
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  min-height: 100vh;
  overflow-x: hidden;
}
img, video {
  display: block;
  max-width: 100%;
}
ul, ol, dl, dd, figure, h1, h2, h3, p {
  margin: 0;
  padding: 0;
}
ul, ol {
  list-style: none;
}
a {
  color: var(--fog);
  text-decoration: none;
}
button, input, select {
  font: inherit;
  color: inherit;
}
::selection {
  background: var(--lamp-deep);
  color: #fff;
}
.site-header {
  position: relative;
  z-index: 6;
  background: linear-gradient(180deg, rgba(16, 21, 28, 0.96) 0%, rgba(16, 21, 28, 0.72) 100%);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 8px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 20px;
}
a[data-contract="site-name"].brand-mark {
  font-family: var(--h-serif);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--lamp-glow);
  text-decoration: none;
  text-shadow: 0 0 14px rgba(224, 138, 60, 0.35);
  white-space: nowrap;
}
a[data-contract="site-name"].brand-mark:hover {
  color: #ffd9ab;
}
.category-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 6px;
  flex: 1 1 auto;
  min-width: 0;
}
a.runtime-category {
  display: inline-block;
  white-space: nowrap;
  font-size: 12px;
  color: var(--fog);
  text-decoration: none;
  padding: 2px 7px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(63, 86, 109, 0.14);
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
a.runtime-category:hover {
  color: var(--lamp-glow);
  border-color: rgba(224, 138, 60, 0.5);
  background: rgba(224, 138, 60, 0.1);
}
.page-main {
  display: block;
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 16px 30px;
}
.movie-overview {
  position: relative;
  margin-bottom: 22px;
  padding: 16px 16px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(96deg, rgba(43, 53, 66, 0.5) 0%, rgba(26, 33, 43, 0.62) 42%, rgba(51, 34, 15, 0.34) 100%);
  box-shadow: 0 18px 40px -30px rgba(0, 0, 0, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.03);
  overflow: hidden;
}
.movie-overview::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(224, 138, 60, 0.5), transparent);
  pointer-events: none;
}
.overview-grid {
  display: grid;
  grid-template-columns: minmax(160px, 210px) minmax(0, 1fr) minmax(0, 1.15fr);
  grid-template-areas:
    "poster info player"
    "poster info player";
  gap: 18px;
  align-items: start;
}
.overview-poster-col {
  grid-area: poster;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.poster-frame {
  position: relative;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  overflow: hidden;
  background: #0b0f14;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5), 0 14px 30px -18px rgba(0, 0, 0, 0.95);
}
.poster-img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.05);
}
.poster-caption {
  display: flex;
  justify-content: flex-end;
}
.caption-note {
  font-family: var(--h-serif);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--lamp);
  border-bottom: 1px solid rgba(224, 138, 60, 0.4);
  padding-bottom: 1px;
}
.overview-info-col {
  grid-area: info;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.title-block {
  position: relative;
  padding-left: 10px;
  border-left: 2px solid var(--lamp-deep);
}
.movie-title {
  font-family: var(--h-serif);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: #f0ebe2;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.6), 0 0 22px rgba(224, 138, 60, 0.18);
}
.movie-tagline {
  margin-top: 3px;
  font-family: var(--h-serif);
  font-style: italic;
  font-size: 13px;
  color: var(--lamp-glow);
  transform: skewX(-9deg);
  transform-origin: left center;
  letter-spacing: 0.06em;
}
.movie-seo {
  font-size: 12.5px;
  line-height: 1.62;
  color: var(--fog);
  padding-left: 12px;
  border-left: 1px solid var(--line);
}
.episode-status {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.status-chip {
  font-size: 11.5px;
  padding: 2px 8px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--fog);
  background: rgba(16, 21, 28, 0.5);
  white-space: nowrap;
}
.status-chip-current {
  color: #ffd9ab;
  border-color: rgba(224, 138, 60, 0.55);
  background: rgba(224, 138, 60, 0.14);
  box-shadow: 0 0 12px -4px rgba(224, 138, 60, 0.7);
}
.status-chip-score {
  color: #cfe0ee;
  border-color: rgba(63, 86, 109, 0.9);
  background: rgba(63, 86, 109, 0.3);
}
.strip-heading {
  font-family: var(--h-serif);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--dust);
  padding-bottom: 3px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 7px;
}
.cast-strip {
  min-width: 0;
}
.cast-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
}
.cast-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  width: 52px;
  flex: 0 0 auto;
}
.cast-avatar {
  display: block;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(160deg, rgba(63, 86, 109, 0.85) 0%, rgba(36, 51, 63, 0.95) 60%, rgba(224, 138, 60, 0.22) 100%);
  box-shadow: inset 0 -10px 14px -12px rgba(0, 0, 0, 0.9);
}
.cast-name {
  font-size: 11px;
  line-height: 1.2;
  color: var(--fog);
  text-align: center;
  letter-spacing: 0.04em;
}
.movie-details {
  min-width: 0;
}
.detail-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.detail-row {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 8px;
  padding: 3px 0;
  border-bottom: 1px dashed rgba(170, 181, 194, 0.14);
  font-size: 12px;
}
.detail-row:last-child {
  border-bottom: none;
}
.detail-row dt {
  color: var(--steel);
  letter-spacing: 0.06em;
}
.detail-row dd {
  color: var(--paper-dim);
  min-width: 0;
  overflow-wrap: anywhere;
}
.overview-player-col {
  grid-area: player;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.player-shell {
  position: relative;
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #05080b;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.6), 0 16px 34px -22px rgba(0, 0, 0, 0.95);
}
.player-video {
  display: block;
  width: 100%;
  background: #05080b;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(43, 53, 66, 0.42) 0%, rgba(16, 21, 28, 0.66) 100%);
}
.ctrl-btn {
  flex: 0 0 auto;
  padding: 3px 8px;
  font-size: 11.5px;
  color: var(--fog);
  background: rgba(16, 21, 28, 0.6);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  cursor: pointer;
  transition: color 0.14s ease, border-color 0.14s ease, background 0.14s ease;
}
.ctrl-btn:hover, .ctrl-btn.is-active {
  color: #ffd9ab;
  border-color: rgba(224, 138, 60, 0.6);
  background: rgba(224, 138, 60, 0.15);
}
.ctrl-range {
  flex: 1 1 90px;
  min-width: 70px;
  height: 16px;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  cursor: pointer;
}
.ctrl-range::-webkit-slider-runnable-track {
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--cold) 0%, var(--lamp-deep) 100%);
}
.ctrl-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 9px;
  height: 9px;
  margin-top: -3px;
  border-radius: 2px;
  background: var(--lamp-glow);
  border: 1px solid #2a1a0a;
}
.ctrl-range::-moz-range-track {
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--cold) 0%, var(--lamp-deep) 100%);
}
.ctrl-range::-moz-range-thumb {
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--lamp-glow);
  border: 1px solid #2a1a0a;
}
.ctrl-range-volume {
  flex: 0 1 70px;
}
.ctrl-select {
  flex: 0 0 auto;
  padding: 3px 4px;
  font-size: 11.5px;
  color: var(--fog);
  background: rgba(16, 21, 28, 0.7);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  cursor: pointer;
}
.synopsis-block {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.synopsis-body {
  column-count: 2;
  column-gap: 22px;
  column-rule: 1px solid rgba(170, 181, 194, 0.14);
}
.synopsis-para {
  font-size: 12.5px;
  line-height: 1.62;
  color: var(--fog);
  margin-bottom: 10px;
  break-inside: avoid;
  text-align: justify;
}
.synopsis-para:last-child {
  margin-bottom: 0;
}
.timeline-section, .episodes-section, .comments-section, .recommend-region {
  margin-bottom: 22px;
}
.section-heading {
  display: inline-block;
  font-family: var(--h-serif);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #e4ddd0;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line-strong);
  margin-bottom: 12px;
}
.region-heading {
  display: inline-block;
  font-family: var(--h-serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #ded7ca;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--line-strong);
  margin-bottom: 9px;
}
.timeline-section {
  padding: 12px 14px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(26, 33, 43, 0.55) 0%, rgba(12, 17, 23, 0.4) 100%);
}
.timeline-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px 12px;
  padding-left: 14px;
}
.timeline-track::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 3px;
  width: 1px;
  background: linear-gradient(180deg, rgba(224, 138, 60, 0.55) 0%, rgba(63, 86, 109, 0.55) 55%, rgba(170, 181, 194, 0.18) 100%);
  transform: rotate(0.7deg);
  transform-origin: top center;
}
.timeline-node {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  padding: 9px 9px 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(152deg, rgba(232, 230, 224, 0.09) 0%, rgba(232, 230, 224, 0.03) 100%);
  box-shadow: 0 6px 16px -14px rgba(0, 0, 0, 0.9);
  transform: rotate(-0.5deg);
}
.timeline-node:nth-child(even) {
  transform: rotate(0.7deg);
}
.node-tape {
  position: absolute;
  top: -6px;
  left: 10px;
  width: 40px;
  height: 11px;
  background: linear-gradient(102deg, rgba(224, 138, 60, 0.62) 0%, rgba(224, 138, 60, 0.3) 100%);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  transform: rotate(-4deg);
  opacity: 0.85;
  box-shadow: 0 1px 4px -2px rgba(0, 0, 0, 0.9);
}
.node-timecode {
  font-family: var(--h-serif);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--lamp-glow);
}
.node-label {
  font-size: 12px;
  line-height: 1.45;
  color: var(--paper-dim);
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  align-items: start;
}
.episode-card {
  position: relative;
  display: flex;
  gap: 10px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(150deg, rgba(43, 53, 66, 0.36) 0%, rgba(16, 21, 28, 0.55) 100%);
  overflow: hidden;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.episode-card::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(224, 138, 60, 0.7), rgba(224, 138, 60, 0));
  opacity: 0;
  transition: opacity 0.18s ease;
}
.episode-card:hover {
  transform: translateY(-3px);
  border-color: rgba(224, 138, 60, 0.45);
  box-shadow: 0 14px 26px -20px rgba(0, 0, 0, 0.95), 0 0 18px -12px rgba(224, 138, 60, 0.8);
  background: linear-gradient(150deg, rgba(51, 34, 15, 0.42) 0%, rgba(16, 21, 28, 0.6) 100%);
}
.episode-card:hover::after {
  opacity: 1;
}
.episode-card-active {
  border-color: rgba(224, 138, 60, 0.5);
  background: linear-gradient(150deg, rgba(224, 138, 60, 0.14) 0%, rgba(16, 21, 28, 0.6) 100%);
}
.episode-card-active::after {
  opacity: 1;
}
.episode-number {
  flex: 0 0 auto;
  font-family: var(--h-serif);
  font-size: 30px;
  line-height: 0.92;
  font-weight: 700;
  color: rgba(224, 138, 60, 0.72);
  min-width: 34px;
  text-align: center;
  text-shadow: 0 0 16px rgba(224, 138, 60, 0.22);
}
.episode-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1 1 auto;
}
.episode-title {
  font-family: var(--h-serif);
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.3;
  color: #ece6db;
  letter-spacing: 0.02em;
}
.episode-summary {
  font-size: 12px;
  line-height: 1.48;
  color: var(--dust);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.episode-duration {
  align-self: flex-start;
  margin-top: 2px;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--lamp-glow);
  border: 1px solid rgba(224, 138, 60, 0.4);
  border-radius: var(--radius);
  padding: 1px 6px;
  opacity: 0;
  transform: translateY(-2px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.episode-card:hover .episode-duration, .episode-card-active .episode-duration {
  opacity: 1;
  transform: translateY(0);
}
.comments-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: start;
}
.comment-col {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-width: 0;
}
.comment-col-cold {
  background: linear-gradient(168deg, rgba(36, 51, 63, 0.62) 0%, rgba(16, 21, 28, 0.5) 100%);
  border-color: rgba(63, 86, 109, 0.55);
}
.comment-col-warm {
  background: linear-gradient(168deg, rgba(74, 51, 32, 0.55) 0%, rgba(16, 21, 28, 0.5) 100%);
  border-color: rgba(224, 138, 60, 0.32);
}
.comment-item {
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(12, 17, 23, 0.5);
}
.comment-col-cold .comment-item {
  border-left: 2px solid rgba(63, 86, 109, 0.85);
}
.comment-col-warm .comment-item {
  border-left: 2px solid rgba(224, 138, 60, 0.7);
}
.comment-nick {
  display: block;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--lamp-glow);
  margin-bottom: 3px;
}
.comment-col-cold .comment-nick {
  color: #a8c2d8;
}
.comment-text {
  font-size: 12px;
  line-height: 1.55;
  color: var(--fog);
}
.recommend-region {
  padding-top: 2px;
}
.recommend-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  align-items: start;
}
a.recommend-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(43, 53, 66, 0.34) 0%, rgba(12, 17, 23, 0.6) 100%);
  color: var(--paper-dim);
  text-decoration: none;
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}
a.recommend-card:hover {
  transform: translateY(-2px);
  border-color: rgba(224, 138, 60, 0.45);
  box-shadow: 0 12px 24px -20px rgba(0, 0, 0, 0.95);
}
[data-runtime="recommendation"] img.recommend-pic {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  filter: saturate(0.82) brightness(0.94);
}
.recommend-name {
  font-family: var(--h-serif);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.3;
  color: #eae3d7;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.recommend-blurb {
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--dust);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.site-footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(12, 17, 23, 0.6) 0%, rgba(8, 11, 15, 0.95) 100%);
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 8px;
}
.friend-label {
  font-size: 11.5px;
  letter-spacing: 0.14em;
  color: var(--steel);
  padding-right: 6px;
  border-right: 1px solid var(--line);
}
a.runtime-friend-link {
  font-size: 11.5px;
  color: var(--steel);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.14s ease, border-color 0.14s ease;
}
a.runtime-friend-link:hover {
  color: var(--lamp-glow);
  border-bottom-color: rgba(224, 138, 60, 0.5);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-size: 11.5px;
  color: var(--fog);
  text-decoration: none;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 1px;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: var(--lamp-glow);
  border-bottom-color: rgba(224, 138, 60, 0.6);
}
.footer-disclaimer {
  font-size: 11px;
  line-height: 1.55;
  color: var(--steel);
  max-width: 760px;
}
body.is-lights-off .movie-overview {
  filter: brightness(0.82);
}
.overview-player-col.is-theater {
  grid-column: 1 / -1;
}
.overview-player-col.is-theater .player-shell {
  border-color: rgba(224, 138, 60, 0.6);
  box-shadow: 0 0 30px -12px rgba(224, 138, 60, 0.85);
}
.player-controls .ctrl-btn.is-active {
  color: #ffd9ab;
  border-color: rgba(224, 138, 60, 0.6);
  background: rgba(224, 138, 60, 0.15);
}
@media (max-width: 1024px) {.overview-grid {
    grid-template-columns: minmax(150px, 190px) minmax(0, 1fr);
    grid-template-areas:
      "poster info"
      "player player";
  }
.synopsis-body {
    column-count: 2;
  }}
@media (max-width: 820px) {.episode-grid, .comments-split, .recommend-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.movie-title {
    font-size: 22px;
  }}
@media (max-width: 640px) {.page-main {
    padding: 10px 10px 24px;
  }
.header-inner {
    padding: 7px 10px;
    gap: 6px 12px;
  }
.movie-overview {
    padding: 12px 10px 12px;
  }
.overview-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "poster"
      "info"
      "player";
    gap: 14px;
  }
.overview-poster-col {
    max-width: 200px;
  }
.synopsis-body {
    column-count: 1;
    column-rule: none;
  }
.episode-grid, .comments-split {
    grid-template-columns: minmax(0, 1fr);
  }
.recommend-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.timeline-track {
    grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
    padding-left: 12px;
  }
.movie-title {
    font-size: 20px;
  }
.episode-number {
    font-size: 26px;
    min-width: 28px;
  }}
@media (max-width: 420px) {.recommend-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.detail-row {
    grid-template-columns: 54px minmax(0, 1fr);
  }
.ctrl-range-volume {
    flex: 1 1 60px;
  }}

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}
