:root {
  --ink: #0b0e17;
  --ink-2: #111527;
  --ink-3: #171c31;
  --indigo: #1d2547;
  --indigo-soft: #2a3563;
  --ochre: #7a2f2a;
  --ochre-bright: #a8443a;
  --bone: #e9e4d8;
  --bone-dim: #b8b2a4;
  --bone-faint: #7e7a70;
  --line: rgba(233, 228, 216, 0.14);
  --line-strong: rgba(233, 228, 216, 0.28);
  --font-serif: "Songti SC", "Noto Serif SC", "Source Han Serif SC", "SimSun", serif;
  --font-sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  background:
    radial-gradient(120% 70% at 50% 0%, rgba(42, 53, 99, 0.5) 0%, rgba(11, 14, 23, 0) 62%),
    linear-gradient(180deg, #0b0e17 0%, #0d1120 40%, #0a0d16 100%);
  color: var(--bone);
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(115deg, rgba(233, 228, 216, 0.03) 0%, rgba(233, 228, 216, 0) 30%),
    radial-gradient(60% 40% at 82% 12%, rgba(168, 68, 58, 0.10) 0%, rgba(168, 68, 58, 0) 70%);
}
img, video {
  display: block;
  max-width: 100%;
}
h1, h2, h3, p, ul, ol, dl, dd, figure {
  margin: 0;
}
ul, ol {
  padding: 0;
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}
.site-header {
  position: relative;
  z-index: 5;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(11, 14, 23, 0.94) 0%, rgba(11, 14, 23, 0.62) 100%);
  backdrop-filter: blur(6px);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 10px 20px;
  flex-wrap: wrap;
}
a[data-contract="site-name"].site-brand {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--bone);
  text-decoration: none;
  padding-right: 14px;
  border-right: 1px solid var(--line-strong);
  white-space: nowrap;
}
a[data-contract="site-name"].site-brand:hover {
  color: #fff;
}
.category-rail {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  min-width: 0;
}
a.runtime-category {
  display: inline-block;
  padding: 3px 10px;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--bone-dim);
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid transparent;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}
a.runtime-category:hover {
  color: var(--bone);
  border-color: var(--line-strong);
  background: rgba(42, 53, 99, 0.35);
}
.movie-detail {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px 40px;
}
.overview-shell {
  padding-top: 22px;
}
.overview-hero {
  display: grid;
  grid-template-columns: 232px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  padding-bottom: 20px;
}
.poster-column {
  position: relative;
}
.poster-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3;
  background: var(--ink-3);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 22px 50px -26px rgba(0, 0, 0, 0.95);
}
.poster-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(155deg, rgba(233, 228, 216, 0.14) 0%, rgba(233, 228, 216, 0) 42%),
    linear-gradient(0deg, rgba(11, 14, 23, 0.68) 0%, rgba(11, 14, 23, 0) 46%);
  pointer-events: none;
}
.poster-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.62) contrast(1.08) brightness(0.86);
}
.hero-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}
.title-block {
  position: relative;
  padding: 2px 0 12px 16px;
  border-left: 2px solid var(--ochre-bright);
}
.title-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: -2px;
  width: 2px;
  height: 34px;
  background: var(--bone);
}
.movie-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4.4vw, 46px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: 0.06em;
  color: var(--bone);
  text-shadow: 0 0 26px rgba(168, 68, 58, 0.28);
}
.movie-tagline {
  margin-top: 6px;
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--bone-dim);
}
.player-shell {
  position: relative;
  width: 100%;
  min-width: 0;
  background: #05070d;
  border: 1px solid var(--line);
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%);
}
.player-video {
  display: block;
  width: 100%;
  background: #05070d;
  filter: saturate(0.9) contrast(1.05);
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  padding: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
}
.ctrl {
  flex: 1 1 auto;
  min-width: 0;
  padding: 7px 6px;
  font-size: 11.5px;
  letter-spacing: 0.05em;
  text-align: center;
  white-space: nowrap;
  color: var(--bone-dim);
  background: var(--ink-2);
  transition: background 0.14s ease, color 0.14s ease;
}
.ctrl:hover {
  color: var(--bone);
  background: var(--indigo);
}
.ctrl.is-active, .ctrl.play, .ctrl.pause, .ctrl.mute, .ctrl.volume, .ctrl.speed, .ctrl.pip, .ctrl.theater, .ctrl.light, .ctrl.fullscreen, .ctrl.progress, .ctrl.click {
  color: var(--bone);
}
.ctrl.is-active {
  background: var(--ochre);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(233, 228, 216, 0.22);
}
.ctrl-play {
  flex-grow: 1.4;
}
.ctrl-theater, .ctrl-light {
  flex-grow: 1.2;
}
body.is-theater .overview-hero {
  grid-template-columns: 1fr;
}
body.is-theater .poster-column {
  max-width: 232px;
}
body.is-lights-off::before {
  background: linear-gradient(115deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 30%);
}
body.is-lights-off .overview-shell, body.is-lights-off .movie-detail {
  background: rgba(0, 0, 0, 0.55);
}
.overview-body {
  display: grid;
  grid-template-columns: 150px minmax(0, 1.35fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(23, 28, 49, 0.72) 0%, rgba(11, 14, 23, 0.86) 100%);
}
.overview-body > * {
  padding: 14px 16px;
  border-right: 1px solid var(--line);
  min-width: 0;
}
.overview-body > *:last-child {
  border-right: 0;
}
.cast-column {
  border-right: 1px solid var(--line);
}
.cast-heading, .synopsis-heading, .status-heading, .details-heading, .timeline-heading, .episodes-heading, .comments-heading, .recommend-heading {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--bone);
}
.cast-heading {
  font-size: 12px;
  letter-spacing: 0.4em;
  writing-mode: vertical-rl;
  text-orientation: upright;
  height: auto;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  color: var(--bone-dim);
}
.cast-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cast-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 8px;
  align-items: center;
}
.cast-portrait {
  grid-row: span 2;
  width: 34px;
  height: 44px;
  overflow: hidden;
  background: var(--ink-3);
  border: 1px solid var(--line);
  margin: 0;
}
.cast-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  filter: grayscale(1) contrast(1.2) brightness(0.72);
}
.cast-item:hover .cast-image {
  filter: grayscale(0.85) contrast(1.15) brightness(0.86);
}
.cast-name {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--bone);
  line-height: 1.25;
}
.cast-role {
  font-size: 10.5px;
  letter-spacing: 0.04em;
  color: var(--bone-faint);
  line-height: 1.25;
}
.synopsis-panel {
  display: flex;
  flex-direction: column;
}
.synopsis-heading, .status-heading, .details-heading, .timeline-heading, .episodes-heading, .comments-heading {
  font-size: 13px;
  letter-spacing: 0.3em;
  padding-bottom: 6px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--line);
  color: var(--bone);
}
.synopsis-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.synopsis-paragraph {
  font-size: 12.5px;
  line-height: 1.72;
  color: var(--bone-dim);
  text-align: justify;
}
.synopsis-paragraph:first-child::first-letter {
  font-family: var(--font-serif);
  font-size: 26px;
  float: left;
  line-height: 0.9;
  padding: 2px 6px 0 0;
  color: var(--ochre-bright);
}
.status-panel {
  display: flex;
  flex-direction: column;
}
.status-line {
  font-size: 12.5px;
  color: var(--bone-dim);
  margin-bottom: 10px;
}
.status-meter {
  position: relative;
  width: 100%;
  height: 4px;
  background: rgba(233, 228, 216, 0.1);
  overflow: hidden;
}
.status-fill {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--ochre) 0%, var(--ochre-bright) 70%, #c25a4c 100%);
  box-shadow: 0 0 12px rgba(168, 68, 58, 0.55);
}
.details-panel {
  display: flex;
  flex-direction: column;
}
.details-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.details-row {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 8px;
  padding: 4px 0;
  border-bottom: 1px dotted rgba(233, 228, 216, 0.1);
}
.details-row:last-child {
  border-bottom: 0;
}
.details-key {
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--bone-faint);
}
.details-value {
  font-size: 12px;
  color: var(--bone);
  margin: 0;
}
.timeline-section {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--line-strong);
}
.timeline-heading {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.34em;
  padding-bottom: 5px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.timeline-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(210px, 1fr);
  gap: 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  scrollbar-color: var(--ochre) rgba(233, 228, 216, 0.08);
  padding-bottom: 12px;
  border-top: 1px solid var(--line);
}
.timeline-track::-webkit-scrollbar {
  height: 6px;
}
.timeline-track::-webkit-scrollbar-track {
  background: rgba(233, 228, 216, 0.06);
}
.timeline-track::-webkit-scrollbar-thumb {
  background: var(--ochre);
}
.timeline-node {
  position: relative;
  padding: 22px 18px 4px 0;
  border-right: 1px solid var(--line);
  min-height: 100%;
}
.timeline-drop {
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 14px;
  background: var(--ochre-bright);
  border-radius: 0 0 50% 50% / 0 0 60% 60%;
  box-shadow: 0 0 14px rgba(168, 68, 58, 0.6);
}
.timeline-drop::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 3px;
  width: 2px;
  height: 30px;
  background: linear-gradient(180deg, rgba(168, 68, 58, 0.8) 0%, rgba(168, 68, 58, 0) 100%);
}
.timeline-timecode {
  display: block;
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--bone);
  margin-bottom: 6px;
  padding-left: 18px;
}
.timeline-label {
  font-size: 12px;
  line-height: 1.68;
  color: var(--bone-dim);
  padding-left: 18px;
}
.episodes-section {
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px solid var(--line-strong);
}
.episodes-heading {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.34em;
  padding-bottom: 5px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.episode-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto auto;
  gap: 2px 10px;
  padding: 10px 12px 10px 14px;
  background: linear-gradient(180deg, rgba(23, 28, 49, 0.55) 0%, rgba(13, 17, 32, 0.9) 100%);
  border-left: 2px solid transparent;
  transition: background 0.16s ease, border-color 0.16s ease;
}
.episode-card::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 2px;
  height: 0;
  background: var(--ochre-bright);
  transition: height 0.2s ease;
}
.episode-card:hover {
  background: linear-gradient(180deg, rgba(42, 53, 99, 0.6) 0%, rgba(17, 21, 39, 0.95) 100%);
}
.episode-card:hover::before {
  height: calc(100% - 20px);
}
.episode-number {
  grid-column: 1;
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ochre-bright);
}
.episode-title {
  grid-column: 1;
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3;
  color: var(--bone);
}
.episode-summary {
  grid-column: 1 / -1;
  font-size: 12px;
  line-height: 1.64;
  color: var(--bone-dim);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.episode-duration {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: start;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  white-space: nowrap;
  color: var(--bone-faint);
  padding: 2px 6px;
  border: 1px solid var(--line);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 5px), calc(100% - 5px) 100%, 0 100%);
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.episode-card:hover .episode-duration, .episode-card:focus-within .episode-duration {
  opacity: 1;
  transform: translateX(0);
}
.comments-section {
  margin-top: 26px;
  padding: 16px 16px 22px;
  border-top: 1px solid var(--line-strong);
  background:
    linear-gradient(180deg, rgba(11, 14, 23, 0.9) 0%, rgba(23, 28, 49, 0.55) 100%);
}
.comments-heading {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.34em;
  padding-bottom: 5px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.comment-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}
.comment-note {
  position: relative;
  padding: 11px 13px 10px;
  background: linear-gradient(180deg, rgba(29, 37, 71, 0.72) 0%, rgba(17, 21, 39, 0.92) 100%);
  border: 1px solid var(--line);
  border-left: 2px solid var(--ochre);
  box-shadow: 0 12px 26px -18px rgba(0, 0, 0, 0.9);
  transform: rotate(-0.8deg);
}
.comment-note:nth-child(2n) {
  transform: rotate(0.7deg);
}
.comment-note:nth-child(3n) {
  transform: rotate(-1.4deg);
}
.comment-note:nth-child(4n) {
  transform: rotate(1.2deg);
}
.comment-note:nth-child(5n) {
  transform: rotate(-0.5deg);
}
.comment-note:nth-child(6n) {
  transform: rotate(1.5deg);
}
.comment-text {
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--bone-dim);
}
.comment-author {
  display: block;
  margin-top: 7px;
  padding-top: 6px;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ochre-bright);
  border-top: 1px solid var(--line);
}
.comment-author::before {
  content: "— ";
  color: var(--bone-faint);
}
.recommend-region {
  margin-top: 24px;
  padding-top: 14px;
  border-top: 1px solid var(--line-strong);
}
.recommend-region:first-of-type {
  margin-top: 20px;
}
.recommend-heading {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.24em;
  padding: 5px 10px;
  margin-bottom: 12px;
  border: 1px solid var(--line-strong);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  color: var(--bone);
}
.recommend-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 12px;
  align-items: start;
}
a.recommend-card {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: linear-gradient(180deg, rgba(23, 28, 49, 0.62) 0%, rgba(13, 17, 32, 0.92) 100%);
  border: 1px solid var(--line);
  color: var(--bone);
  text-decoration: none;
  transition: border-color 0.16s ease, transform 0.16s ease;
}
a.recommend-card:hover {
  border-color: var(--ochre-bright);
  transform: translateY(-2px);
}
[data-runtime="recommendation"] img.recommend-poster {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  background: var(--ink-3);
  filter: saturate(0.6) contrast(1.08) brightness(0.85);
}
a.recommend-card:hover .recommend-poster {
  filter: saturate(0.75) contrast(1.1) brightness(0.95);
}
.recommend-name {
  font-family: var(--font-serif);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.35;
  color: var(--bone);
}
.recommend-blurb {
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--bone-dim);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.site-footer {
  position: relative;
  z-index: 1;
  margin-top: 30px;
  border-top: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(11, 14, 23, 0.9) 0%, #070910 100%);
}
.footer-inner {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 10px 24px;
  align-items: start;
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 20px 22px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-right: 16px;
  border-right: 1px solid var(--line);
}
a[data-contract="footer-home"].footer-link, a[data-contract="footer-sitemap"].footer-link {
  font-size: 12.5px;
  letter-spacing: 0.12em;
  color: var(--bone-dim);
  text-decoration: none;
}
a[data-contract="footer-home"].footer-link:hover, a[data-contract="footer-sitemap"].footer-link:hover {
  color: var(--bone);
  text-decoration: underline;
  text-decoration-color: var(--ochre-bright);
  text-underline-offset: 3px;
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 10px;
  min-width: 0;
}
.friend-label {
  font-family: var(--font-serif);
  font-size: 11.5px;
  letter-spacing: 0.24em;
  color: var(--bone-faint);
  padding-right: 10px;
  border-right: 1px solid var(--line);
  white-space: nowrap;
}
a.runtime-friend-link {
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--bone-dim);
  text-decoration: none;
  white-space: nowrap;
  padding: 1px 0;
  border-bottom: 1px solid transparent;
}
a.runtime-friend-link:hover {
  color: var(--bone);
  border-bottom-color: var(--ochre);
}
.footer-disclaimer {
  grid-column: 1 / -1;
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  line-height: 1.7;
  letter-spacing: 0.03em;
  color: var(--bone-faint);
}
@media (max-width: 1080px) {.overview-body {
    grid-template-columns: 132px minmax(0, 1.2fr) minmax(0, 1fr);
  }
.details-panel {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
  }
.details-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0 18px;
  }
.details-row {
    grid-template-columns: 82px minmax(0, 1fr);
  }
.comment-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }}
@media (max-width: 860px) {.overview-hero {
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 18px;
  }
.overview-body {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
.cast-column {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
.cast-heading {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    letter-spacing: 0.3em;
    height: auto;
    border-bottom: 1px solid var(--line);
    padding-bottom: 6px;
  }
.cast-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px 14px;
  }
.episode-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.episode-duration {
    opacity: 1;
    transform: none;
  }
.details-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }}
@media (max-width: 640px) {.movie-detail {
    padding: 0 14px 30px;
  }
.header-inner {
    padding: 9px 14px;
    gap: 10px;
  }
a[data-contract="site-name"].site-brand {
    font-size: 16px;
    border-right: 0;
    padding-right: 0;
  }
.category-rail {
    width: 100%;
    gap: 2px;
  }
a.runtime-category {
    font-size: 12px;
    padding: 2px 8px;
  }
.overview-hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }
.poster-column {
    max-width: 200px;
  }
.overview-body {
    grid-template-columns: minmax(0, 1fr);
  }
.overview-body > * {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
.overview-body > *:last-child {
    border-bottom: 0;
  }
.timeline-track {
    grid-auto-columns: minmax(200px, 88%);
  }
.comment-stack {
    grid-template-columns: minmax(0, 1fr);
  }
.comment-note, .comment-note:nth-child(2n), .comment-note:nth-child(3n), .comment-note:nth-child(4n), .comment-note:nth-child(5n), .comment-note:nth-child(6n) {
    transform: rotate(-0.6deg);
  }
.comment-note:nth-child(2n) {
    transform: rotate(0.8deg);
  }
.details-list {
    grid-template-columns: minmax(0, 1fr);
  }
.recommend-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
  }
.footer-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    padding: 14px 14px 20px;
  }
.footer-nav {
    flex-direction: row;
    gap: 16px;
    padding-right: 0;
    border-right: 0;
  }}
@media (max-width: 420px) {.recommend-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.cast-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }}

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}
