:root {
  --ink: #0d1211;
  --ink-2: #131a18;
  --ink-3: #1a2321;
  --steel: #2b3734;
  --steel-2: #3d4a46;
  --haze: #6f7d78;
  --fog: #9aa8a2;
  --bone: #c9d2cc;
  --paper: #dde4de;
  --rust: #8f3a24;
  --rust-bright: #b8502f;
  --rust-dim: #5e2718;
  --line: #2f3b38;
  --sans: "Heiti SC", "Microsoft YaHei", "PingFang SC", "Noto Sans SC", system-ui, sans-serif;
  --serif: "Songti SC", "SimSun", "Noto Serif SC", "Source Han Serif SC", serif;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body, h1, h2, p, dl, dd, dt, ol, ul, li {
  margin: 0;
  padding: 0;
}
ol, ul {
  list-style: none;
}
img, video {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
:focus-visible {
  outline: 2px solid var(--rust-bright);
  outline-offset: 2px;
}
body {
  background-color: var(--ink);
  background-image:
    radial-gradient(140% 90% at 18% 0%, rgba(74, 96, 88, 0.22), transparent 62%),
    radial-gradient(120% 80% at 100% 100%, rgba(143, 58, 36, 0.14), transparent 60%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.014) 0 1px, transparent 1px 3px);
  color: var(--bone);
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(180deg, rgba(10, 15, 14, 0.97), rgba(10, 15, 14, 0.86));
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.site-header__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 8px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
a[data-contract="site-name"], .site-logo {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.16em;
  color: var(--paper);
  text-decoration: none;
  white-space: nowrap;
  padding-right: 12px;
  border-right: 2px solid var(--rust);
  line-height: 1.1;
}
a[data-contract="site-name"]:hover, .site-logo:hover {
  color: var(--rust-bright);
}
.category-bar {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  min-width: 0;
  flex: 1 1 auto;
}
a.runtime-category {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--fog);
  text-decoration: none;
  white-space: nowrap;
  padding: 3px 9px;
  border: 1px solid transparent;
  border-left: 2px solid var(--line);
  clip-path: polygon(0 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
  background: rgba(43, 55, 52, 0.28);
  transition: color 0.15s, background 0.15s, border-color 0.15s;
}
a.runtime-category:hover {
  color: var(--paper);
  background: rgba(143, 58, 36, 0.32);
  border-left-color: var(--rust-bright);
}
.page-main {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 18px 26px;
}
.movie-overview {
  display: block;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
  margin-bottom: 14px;
}
.overview-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  padding: 18px 0 10px;
  isolation: isolate;
}
.poster-shell {
  position: relative;
  width: 100%;
  max-width: 300px;
  max-height: 62vh;
  align-self: start;
}
.poster-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(105deg, transparent 34%, rgba(13, 18, 17, 0.55) 78%, rgba(13, 18, 17, 0.92) 100%),
    linear-gradient(180deg, rgba(13, 18, 17, 0.15), rgba(13, 18, 17, 0.7));
  mix-blend-mode: multiply;
}
.poster-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  border: 1px solid var(--steel-2);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%);
}
.main-poster {
  width: 100%;
  height: 100%;
  max-height: 62vh;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center 20%;
  filter: grayscale(0.42) contrast(1.14) brightness(0.74) saturate(0.8);
  display: block;
}
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-self: end;
  min-width: 0;
}
.movie-title {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(26px, 6.4vw, 46px);
  line-height: 1.02;
  letter-spacing: 0.02em;
  color: var(--paper);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.85);
  max-width: 20ch;
}
.movie-tagline {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(13px, 2.9vw, 17px);
  letter-spacing: 0.34em;
  color: var(--rust-bright);
  text-transform: none;
  padding-left: 2px;
  border-left: 3px solid var(--rust);
  padding-left: 10px;
  line-height: 1.5;
}
.movie-seo {
  font-family: var(--serif);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--haze);
}
.overview-player {
  width: 100%;
  min-width: 0;
  margin-top: 6px;
  background: #070b0a;
  border: 1px solid var(--steel);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%);
}
.player-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #050807;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.06);
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  padding: 6px;
  background: linear-gradient(180deg, rgba(26, 35, 33, 0.9), rgba(13, 18, 17, 0.9));
  border-top: 1px solid var(--steel);
}
.player-control {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--fog);
  background: rgba(43, 55, 52, 0.55);
  padding: 4px 8px;
  border: 1px solid var(--line);
  line-height: 1.35;
  white-space: nowrap;
  transition: color 0.14s, background 0.14s, border-color 0.14s;
}
.player-control:hover {
  color: var(--paper);
  background: rgba(61, 74, 70, 0.7);
  border-color: var(--steel-2);
}
.player-control.is-active, .player-control.play.is-active, .player-control.mute.is-active, .player-control.pip.is-active, .player-control.fullscreen.is-active, .player-control.theater.is-active, .player-control.light.is-active, .player-control.speed.is-active, .player-control.progress.is-active, .player-control.volume.is-active {
  color: var(--paper);
  background: var(--rust);
  border-color: var(--rust-bright);
}
.player-control--play {
  color: var(--paper);
  background: var(--rust-dim);
  border-color: var(--rust);
}
.player-control--fullscreen, .player-control--theater, .player-control--light {
  margin-left: auto;
}
.player-control--light, .player-control--theater {
  margin-left: 0;
}
.overview-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
  padding: 12px;
  background: linear-gradient(180deg, rgba(26, 35, 33, 0.62), rgba(13, 18, 17, 0.72));
  border: 1px solid var(--line);
  border-top: 2px solid var(--steel-2);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
}
.episode-status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line);
}
.episode-status__current, .episode-status__total {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.12em;
  padding: 3px 10px;
}
.episode-status__current {
  color: var(--paper);
  background: var(--rust-dim);
  border-left: 3px solid var(--rust-bright);
}
.episode-status__total {
  color: var(--haze);
  border: 1px solid var(--steel);
}
.cast-band {
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line);
}
.cast-band__title, .synopsis-block__title, .timeline-section__title, .episodes-section__title, .comments-section__title {
  font-family: var(--sans);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.26em;
  color: var(--paper);
  margin-bottom: 7px;
  padding-left: 9px;
  border-left: 3px solid var(--rust);
  line-height: 1.3;
}
.cast-list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 6px 8px;
  padding-left: 2px;
}
.cast-item {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 2px 6px 2px 2px;
  border: 1px solid transparent;
  border-radius: 0;
}
.cast-item:hover {
  border-color: var(--steel);
  background: rgba(43, 55, 52, 0.4);
}
.cast-avatar {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  color: var(--paper);
  background: radial-gradient(circle at 32% 26%, var(--steel-2), var(--ink-3) 72%);
  border: 1px solid var(--steel-2);
  box-shadow: inset 0 0 0 1px rgba(13, 18, 17, 0.8);
}
.cast-name {
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--fog);
  white-space: nowrap;
}
.synopsis-block {
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line);
}
.synopsis-text {
  font-family: var(--serif);
  font-size: 13px;
  line-height: 1.72;
  color: var(--bone);
  text-indent: 2em;
  margin-bottom: 6px;
  max-width: 74ch;
}
.synopsis-text:last-child {
  margin-bottom: 0;
}
.synopsis-text::first-letter {
  color: var(--rust-bright);
}
.details-strip {
  padding-top: 2px;
}
.details-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(118px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.details-item {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 5px 7px;
  background: var(--ink-2);
}
.details-item dt {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--haze);
}
.details-item dd {
  font-family: var(--serif);
  font-size: 12.5px;
  color: var(--paper);
  line-height: 1.4;
}
.timeline-section {
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.timeline-rail {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 10px 2px 12px;
  border-top: 1px dashed var(--steel);
  border-bottom: 1px dashed var(--steel);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--steel-2) transparent;
}
.timeline-rail::-webkit-scrollbar {
  height: 6px;
}
.timeline-rail::-webkit-scrollbar-thumb {
  background: var(--steel-2);
}
.timeline-rail::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--steel-2) 0 7px, transparent 7px 14px);
  pointer-events: none;
}
.timeline-track {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 0;
  min-width: 720px;
}
.timeline-node {
  flex: 1 1 0;
  min-width: 132px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 10px;
  position: relative;
}
.timeline-node__mark {
  order: 2;
  width: 11px;
  height: 11px;
  background: var(--ink);
  border: 2px solid var(--rust-bright);
  transform: rotate(45deg);
  margin: 6px 0;
  position: relative;
  z-index: 1;
  align-self: flex-start;
  margin-left: -1px;
}
.timeline-node__time {
  order: 1;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--rust-bright);
}
.timeline-node__label {
  order: 3;
  font-family: var(--serif);
  font-size: 12px;
  line-height: 1.55;
  color: var(--bone);
  max-width: 16ch;
  border-left: 1px solid var(--line);
  padding-left: 8px;
}
.episodes-section {
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.episode-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.episode-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "head dur"
    "summary summary";
  gap: 2px 10px;
  padding: 7px 9px;
  background: var(--ink-2);
  border-left: 2px solid transparent;
  transition: background 0.15s, border-color 0.15s;
}
.episode-row:hover {
  background: var(--ink-3);
  border-left-color: var(--rust);
}
.episode-row__head {
  grid-area: head;
  display: flex;
  align-items: baseline;
  gap: 8px;
  min-width: 0;
}
.episode-row__num {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--rust-bright);
  flex: 0 0 auto;
  min-width: 4.2em;
}
.episode-row__title {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--paper);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.episode-row__duration {
  grid-area: dur;
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--haze);
  align-self: center;
  white-space: nowrap;
}
.episode-row__summary {
  grid-area: summary;
  font-family: var(--serif);
  font-size: 12px;
  line-height: 1.6;
  color: var(--fog);
  padding-left: calc(4.2em + 8px);
  margin-top: 1px;
}
.comments-section {
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.comment-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 6px;
  align-items: start;
}
.comment-card {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 8px 10px;
  background: rgba(26, 35, 33, 0.72);
  border: 1px solid var(--line);
  border-left: 2px solid var(--steel-2);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 9px), calc(100% - 9px) 100%, 0 100%);
}
.comment-card:nth-child(even) {
  margin-left: 14px;
  border-left-color: var(--rust);
  background: rgba(19, 26, 24, 0.85);
}
.comment-card__nickname {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--rust-bright);
}
.comment-card__text {
  font-family: var(--serif);
  font-size: 12px;
  line-height: 1.58;
  color: var(--bone);
}
.recommend-region {
  margin-bottom: 12px;
}
.recommend-region__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 4px 0 6px;
  border-bottom: 2px solid var(--steel);
  margin-bottom: 7px;
}
.recommend-region__title {
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: var(--paper);
  min-width: 0;
}
.recommend-region__count {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--rust-bright);
  white-space: nowrap;
}
.recommend-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
  gap: 6px;
  align-items: start;
}
a.recommend-card {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 5px;
  background: var(--ink-2);
  border: 1px solid var(--line);
  color: var(--bone);
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}
a.recommend-card:hover {
  border-color: var(--rust);
  background: var(--ink-3);
}
[data-runtime="recommendation"] img {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: grayscale(0.35) contrast(1.08) brightness(0.82);
  border-bottom: 1px solid var(--line);
}
.recommend-card__name {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--paper);
  line-height: 1.4;
  display: block;
}
.recommend-card__blurb {
  font-family: var(--serif);
  font-size: 11px;
  line-height: 1.5;
  color: var(--haze);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.recommend-region--1 .recommend-region__head {
  border-bottom-color: var(--rust-dim);
}
.recommend-region--2 .recommend-region__head {
  border-bottom-color: var(--steel-2);
}
.recommend-region--3 .recommend-region__head {
  border-bottom-color: var(--rust);
}
.site-footer {
  margin-top: 8px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(19, 26, 24, 0.6), rgba(7, 11, 10, 0.96));
}
.site-footer__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 12px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.footer-nav__link {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--fog);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid transparent;
}
a[data-contract="footer-home"] {
  color: var(--rust-bright);
  text-decoration: none;
}
a[data-contract="footer-home"]:hover {
  color: var(--paper);
  border-bottom-color: var(--rust-bright);
}
a[data-contract="footer-sitemap"] {
  color: var(--fog);
  text-decoration: none;
}
a[data-contract="footer-sitemap"]:hover {
  color: var(--paper);
  border-bottom-color: var(--steel-2);
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3px 10px;
}
.friend-links__label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--haze);
  padding-right: 9px;
  border-right: 1px solid var(--steel);
  white-space: nowrap;
}
a.runtime-friend-link {
  font-family: var(--serif);
  font-size: 11.5px;
  color: var(--haze);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px dotted transparent;
  transition: color 0.14s, border-color 0.14s;
}
a.runtime-friend-link:hover {
  color: var(--rust-bright);
  border-bottom-color: var(--rust);
}
.footer-disclaimer {
  font-family: var(--serif);
  font-size: 11px;
  line-height: 1.6;
  color: var(--steel-2);
  max-width: 82ch;
  padding-top: 4px;
  border-top: 1px dashed var(--line);
}
.player {
  position: relative;
}
.click, .function, .data-player-action, .data-ratio, .data-speed, .data-volume {
  -webkit-tap-highlight-color: transparent;
}
.theater-mode .overview-player {
  position: relative;
  z-index: 30;
  border-color: var(--rust);
  background: #040706;
}
.theater-mode .movie-overview {
  background: rgba(4, 7, 6, 0.7);
}
.lights-off {
  background-color: #040706;
}
.lights-off .page-main, .lights-off .site-header, .lights-off .site-footer {
  filter: brightness(0.42);
  transition: filter 0.3s ease;
}
.lights-off .overview-player {
  filter: brightness(1.16) contrast(1.06);
  position: relative;
  z-index: 50;
}
.fullscreen .player-video, .player-video.fullscreen {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}
@media (min-width: 560px) {.overview-hero {
    grid-template-columns: 220px minmax(0, 1fr);
    align-items: end;
    gap: 16px;
    padding-bottom: 14px;
  }
.poster-shell {
    max-width: none;
  }
.hero-text {
    padding-bottom: 8px;
  }
.comment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.comment-card:nth-child(even) {
    margin-left: 0;
  }
.comment-card:nth-child(3n + 2) {
    margin-top: 18px;
  }
.comment-card:nth-child(3n) {
    margin-top: 8px;
  }
.episode-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.footer-nav {
    gap: 4px 20px;
  }}
@media (min-width: 720px) {body {
    font-size: 14.5px;
  }
.site-header__inner {
    padding: 9px 24px;
  }
.page-main {
    padding: 0 24px 32px;
  }
.overview-hero {
    grid-template-columns: 260px minmax(0, 1fr);
    padding-top: 22px;
    min-height: 340px;
  }
.movie-title {
    font-size: clamp(34px, 4.4vw, 52px);
  }
.overview-info {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px 18px;
  }
.episode-status {
    flex: 0 0 auto;
    border-bottom: 0;
    padding-bottom: 0;
    align-self: center;
  }
.cast-band {
    flex: 1 1 260px;
    min-width: 0;
    border-bottom: 0;
    padding-bottom: 0;
    border-left: 1px solid var(--line);
    padding-left: 16px;
  }
.synopsis-block {
    flex: 1 1 100%;
    border-bottom: 0;
    padding-bottom: 0;
    padding-top: 10px;
    border-top: 1px solid var(--line);
  }
.details-strip {
    flex: 1 1 100%;
  }
.episode-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.episode-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }
.timeline-track {
    min-width: 100%;
  }
.site-footer__inner {
    padding: 14px 24px 24px;
  }}
@media (min-width: 900px) {.overview-info {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
    grid-template-areas:
      "status cast"
      "synopsis synopsis"
      "details details";
    gap: 12px 22px;
    align-items: start;
  }
.episode-status {
    grid-area: status;
    align-self: start;
    justify-content: flex-start;
  }
.cast-band {
    grid-area: cast;
    border-left: 1px solid var(--line);
    padding-left: 22px;
  }
.synopsis-block {
    grid-area: synopsis;
    border-top: 1px solid var(--line);
    padding-top: 12px;
  }
.details-strip {
    grid-area: details;
  }
.episode-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.comment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 10px;
  }
.recommend-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }}
@media (min-width: 1120px) {.overview-hero {
    grid-template-columns: 300px minmax(0, 1fr);
    align-items: stretch;
  }
.poster-shell {
    max-height: none;
    height: 100%;
  }
.main-poster {
    max-height: none;
    height: 100%;
    min-height: 400px;
  }
.movie-overview {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
    grid-template-areas:
      "hero player"
      "info info";
    gap: 18px 22px;
    align-items: start;
  }
.overview-hero {
    grid-area: hero;
    margin: 0;
  }
.overview-player {
    grid-area: player;
    margin-top: 22px;
    align-self: start;
  }
.overview-info {
    grid-area: info;
    margin-top: 0;
  }
.episode-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.timeline-node__label {
    max-width: 18ch;
  }}
@media (max-width: 420px) {.movie-title {
    font-size: 25px;
  }
.movie-tagline {
    letter-spacing: 0.2em;
  }
.episode-row__summary {
    padding-left: 0;
  }
.player-control {
    font-size: 10.5px;
    padding: 4px 6px;
  }
.player-control--fullscreen, .player-control--theater, .player-control--light {
    margin-left: 0;
  }
.comment-card:nth-child(even) {
    margin-left: 8px;
  }}
@media (prefers-reduced-motion: reduce) {* {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }}

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}
