:root {
  --ink: #0b1118;
  --ink-2: #101821;
  --ink-3: #16202b;
  --slate: #1d2a38;
  --line: #2a3a4b;
  --line-soft: #1f2c3a;
  --chalk: #eef2f5;
  --chalk-dim: #b7c3cd;
  --chalk-mute: #8494a2;
  --chalk-yellow: #e8d08a;
  --chalk-yellow-deep: #cdb26a;
  --cream: #efdfb8;
  --cream-dim: #c9b88f;
  --font-narrow: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Source Han Sans SC", sans-serif;
  --r: 3px;
  --gap: 10px;
  --gap-tight: 6px;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  padding: 0;
  background: var(--ink);
  color: var(--chalk);
  font-family: var(--font-narrow);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, p, dl, dd, dt, ol, ul, li {
  margin: 0;
  padding: 0;
}
ol, ul {
  list-style: none;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: var(--chalk-dim);
  text-decoration: none;
}
button {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}
input, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
:focus-visible {
  outline: 1px solid var(--chalk-yellow);
  outline-offset: 2px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(11, 17, 24, 0.94);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(6px);
}
.header-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  max-width: 1240px;
  margin: 0 auto;
  padding: 8px 16px;
}
.brand {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--chalk);
  white-space: nowrap;
  text-decoration: none;
  border-left: 3px solid var(--chalk-yellow);
  padding-left: 8px;
}
a[data-contract="site-name"] {
  color: var(--chalk);
  text-decoration: none;
}
a[data-contract="site-name"]:hover {
  color: var(--chalk-yellow);
}
.categories {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-width: 0;
  flex: 1 1 auto;
}
a.runtime-category, .runtime-category {
  display: inline-block;
  white-space: nowrap;
  font-size: 12px;
  line-height: 1;
  padding: 5px 9px;
  color: var(--chalk-dim);
  text-decoration: none;
  border: 1px solid var(--line-soft);
  border-radius: 2px;
  background: var(--ink-2);
}
a.runtime-category:hover {
  color: var(--chalk-yellow);
  border-color: var(--chalk-yellow-deep);
  text-decoration: none;
}
.page-main {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 16px 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.block-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--chalk-dim);
  text-transform: none;
  padding-bottom: 5px;
  margin-bottom: 9px;
  border-bottom: 1px solid var(--line-soft);
}
.movie-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  grid-template-areas:
    "head hero"
    "player hero"
    "body body";
  gap: 12px 18px;
  background: var(--ink-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  padding: 16px;
  position: relative;
  overflow: hidden;
}
.movie-overview::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 46%;
  height: 100%;
  background:
    linear-gradient(180deg, rgba(29, 42, 56, 0.55), rgba(11, 17, 24, 0.9)),
    repeating-linear-gradient(90deg, rgba(238, 242, 245, 0.035) 0 1px, transparent 1px 46px);
  border-left: 1px solid var(--line-soft);
  pointer-events: none;
  z-index: 0;
}
.overview-head {
  grid-area: head;
  position: relative;
  z-index: 1;
  align-self: start;
  max-width: 42ch;
}
.movie-title {
  font-size: 30px;
  line-height: 1.14;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--chalk);
}
.movie-tagline {
  margin-top: 6px;
  font-size: 13px;
  color: var(--chalk-yellow);
  letter-spacing: 0.08em;
  border-left: 2px solid var(--chalk-yellow-deep);
  padding-left: 8px;
}
.movie-seo {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.45;
  color: var(--chalk-mute);
  max-width: 40ch;
}
.hero-figure {
  grid-area: hero;
  position: relative;
  z-index: 1;
  align-self: start;
  justify-self: end;
  width: 100%;
  max-width: 360px;
  margin: 0;
}
.hero-portrait {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--r);
  border: 1px solid var(--line);
  filter: saturate(0.82) contrast(1.02) brightness(0.94);
}
.player-shell {
  grid-area: player;
  position: relative;
  z-index: 2;
  align-self: start;
  width: 100%;
  min-width: 0;
  background: #05090d;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.player-shell video {
  display: block;
  width: 100%;
  max-width: none;
  background: #05090d;
}
.player-shell.is-theater {
  position: fixed;
  inset: 0;
  z-index: 90;
  width: auto;
  height: auto;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.player-shell.is-theater video {
  max-height: 78vh;
  object-fit: contain;
}
.player-shell.is-lights-off {
  background: #000;
}
.player-shell.is-lights-off .player-controls {
  opacity: 0.35;
}
.player-shell.is-lights-off .player-controls:hover, .player-shell.is-lights-off .player-controls:focus-within {
  opacity: 1;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  padding: 6px 7px;
  background: var(--ink-2);
  border-top: 1px solid var(--line-soft);
  transition: opacity 0.2s ease;
}
.ctrl {
  font-size: 11px;
  line-height: 1;
  padding: 5px 7px;
  color: var(--chalk-dim);
  background: var(--ink-3);
  border: 1px solid var(--line-soft);
  border-radius: 2px;
  white-space: nowrap;
}
.ctrl:hover {
  color: var(--chalk);
  border-color: var(--line);
}
.ctrl.is-active {
  color: var(--ink);
  background: var(--chalk-yellow);
  border-color: var(--chalk-yellow-deep);
}
.ctrl-play {
  font-weight: 700;
  color: var(--chalk);
  border-color: var(--line);
}
.ctrl-progress-label, .ctrl-volume-label, .ctrl-speed-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--chalk-mute);
  background: transparent;
  border-color: transparent;
  padding: 5px 3px;
}
.ctrl-progress {
  width: 108px;
  min-width: 60px;
  accent-color: var(--chalk-yellow);
}
.ctrl-volume {
  width: 64px;
  accent-color: var(--chalk-yellow);
}
.ctrl-speed {
  padding: 4px 4px;
  background: var(--ink-3);
  border: 1px solid var(--line-soft);
  border-radius: 2px;
  color: var(--chalk-dim);
}
.overview-body {
  grid-area: body;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  grid-template-areas:
    "synopsis cast"
    "details cast"
    "status cast";
  gap: 12px 20px;
  align-items: start;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
}
.synopsis {
  grid-area: synopsis;
  min-width: 0;
}
.synopsis-para {
  font-size: 12.5px;
  line-height: 1.62;
  color: var(--chalk-dim);
  margin-bottom: 6px;
}
.synopsis-para:last-child {
  margin-bottom: 0;
}
.cast {
  grid-area: cast;
  min-width: 0;
  background: rgba(22, 32, 43, 0.6);
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  padding: 10px;
}
.cast-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 10px;
}
.cast-item {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  grid-template-areas:
    "avatar name"
    "avatar line";
  gap: 0 7px;
  align-items: center;
  min-width: 0;
}
.cast-avatar {
  grid-area: avatar;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  align-self: center;
  background:
    radial-gradient(circle at 50% 38%, #4a5d70 0 32%, transparent 33%),
    radial-gradient(circle at 50% 100%, #37485a 0 46%, transparent 47%),
    linear-gradient(160deg, #22303d, #16202b);
  border: 1px solid var(--line);
  flex: 0 0 auto;
}
.cast-name {
  grid-area: name;
  font-size: 12px;
  font-weight: 700;
  color: var(--chalk);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cast-line {
  grid-area: line;
  font-size: 11px;
  line-height: 1.35;
  color: var(--chalk-mute);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.episode-status {
  grid-area: status;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  padding: 8px 0 0;
  border-top: 1px dashed var(--line-soft);
}
.status-line {
  font-size: 12px;
  color: var(--chalk-dim);
  letter-spacing: 0.03em;
}
.status-total, .status-current {
  color: var(--chalk-yellow);
  font-weight: 800;
  font-size: 13px;
  padding: 0 2px;
}
.btn-play {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 6px 13px;
  color: var(--ink);
  background: var(--chalk-yellow);
  border: 1px solid var(--chalk-yellow-deep);
  border-radius: 2px;
}
.btn-play:hover {
  background: var(--cream);
}
.btn-play.is-active {
  background: var(--chalk);
}
.details {
  grid-area: details;
  min-width: 0;
}
.detail-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line-soft);
}
.detail-row {
  display: flex;
  gap: 8px;
  align-items: baseline;
  padding: 5px 8px 5px 0;
  border-bottom: 1px dashed var(--line-soft);
  min-width: 0;
}
.detail-key {
  flex: 0 0 auto;
  font-size: 11px;
  color: var(--chalk-mute);
  letter-spacing: 0.08em;
  min-width: 4em;
}
.detail-value {
  font-size: 12px;
  color: var(--chalk);
  min-width: 0;
}
.timeline {
  position: relative;
}
.timeline-track {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 4px 0;
}
.timeline-track::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  transform: translateX(-0.5px);
  background: linear-gradient(180deg, transparent, var(--line) 8%, var(--line) 92%, transparent);
}
.timeline-node {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 26px minmax(0, 1fr);
  align-items: center;
  min-height: 30px;
}
.timeline-node::after {
  content: "";
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ink);
  border: 1px solid var(--chalk-yellow-deep);
  box-shadow: 0 0 0 3px var(--ink);
  z-index: 1;
}
.node-timecode {
  grid-row: 1;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--chalk-yellow);
  white-space: nowrap;
}
.node-label {
  grid-row: 1;
  font-size: 12px;
  line-height: 1.45;
  color: var(--chalk-dim);
}
.timeline-node-left .node-timecode {
  grid-column: 1;
  justify-self: end;
  text-align: right;
  padding-right: 12px;
}
.timeline-node-left .node-label {
  grid-column: 3;
  padding-left: 12px;
}
.timeline-node-right .node-timecode {
  grid-column: 3;
  padding-left: 12px;
}
.timeline-node-right .node-label {
  grid-column: 1;
  justify-self: end;
  text-align: right;
  padding-right: 12px;
}
.episode-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 190px;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 2px 10px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}
.episode-strip::-webkit-scrollbar {
  height: 7px;
}
.episode-strip::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 4px;
}
.episode-card {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 9px 10px;
  background: var(--ink-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  opacity: 0.72;
  filter: saturate(0.6);
  transition: opacity 0.18s ease, border-color 0.18s ease, filter 0.18s ease;
}
.episode-card:hover {
  opacity: 1;
  filter: none;
  border-color: var(--line);
}
.episode-card.is-current {
  opacity: 1;
  filter: none;
  border: 1px solid var(--chalk);
  box-shadow: 0 0 0 1px rgba(238, 242, 245, 0.12);
  background: var(--ink-3);
}
.episode-number {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--chalk-mute);
}
.episode-card.is-current .episode-number {
  color: var(--chalk-yellow);
}
.episode-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--chalk);
  letter-spacing: 0.02em;
}
.episode-summary {
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--chalk-dim);
  flex: 1 1 auto;
}
.episode-duration {
  font-size: 10.5px;
  color: var(--chalk-mute);
  letter-spacing: 0.06em;
  border-top: 1px dashed var(--line-soft);
  padding-top: 4px;
}
.cast-comments {
  display: block;
}
.comments {
  min-width: 0;
}
.comment-list {
  columns: 2;
  column-gap: 12px;
}
.comment-item {
  break-inside: avoid;
  display: block;
  padding: 8px 10px;
  margin: 0 0 10px;
  background: var(--ink-2);
  border: 1px solid var(--line-soft);
  border-left: 2px solid var(--line);
  border-radius: var(--r);
}
.comment-item-a {
  border-left-color: var(--chalk-mute);
}
.comment-item-b {
  border-left-color: var(--chalk-yellow-deep);
  margin-left: 14px;
}
.comment-nickname {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--chalk-yellow);
  margin-bottom: 3px;
}
.comment-text {
  font-size: 12px;
  line-height: 1.55;
  color: var(--chalk-dim);
}
.rec-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 9px;
}
.rec-card {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 7px;
  background: var(--ink-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  text-decoration: none;
  color: var(--chalk-dim);
  min-width: 0;
  transition: border-color 0.18s ease, transform 0.18s ease;
}
a.rec-card:hover {
  border-color: var(--chalk-yellow-deep);
  text-decoration: none;
  transform: translateY(-1px);
}
[data-runtime="recommendation"] img {
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  border-radius: 2px;
  border: 1px solid var(--line-soft);
  filter: saturate(0.8) brightness(0.94);
  background: var(--ink-3);
}
.rec-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--chalk);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rec-blurb {
  font-size: 11px;
  line-height: 1.45;
  color: var(--chalk-mute);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.site-footer {
  max-width: 1240px;
  margin: 22px auto 0;
  padding: 14px 16px 26px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  align-items: flex-start;
}
.footer-disclaimer {
  flex: 1 1 320px;
  min-width: 0;
  font-size: 11px;
  line-height: 1.55;
  color: var(--chalk-mute);
}
.footer-nav {
  display: flex;
  gap: 12px;
  flex: 0 0 auto;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-size: 12px;
  color: var(--chalk-dim);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: var(--chalk-yellow);
  border-bottom-color: var(--chalk-yellow-deep);
  text-decoration: none;
}
.footer-friends {
  flex: 1 1 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 12px;
  padding-top: 8px;
  border-top: 1px dashed var(--line-soft);
}
.friends-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--chalk-mute);
}
a.runtime-friend-link {
  font-size: 11.5px;
  color: var(--chalk-dim);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
a.runtime-friend-link:hover {
  color: var(--chalk-yellow);
  border-bottom-color: var(--chalk-yellow-deep);
  text-decoration: none;
}
.player-shell.is-playing .ctrl-play, .ctrl.play.is-active, .ctrl.pause.is-active {
  color: var(--ink);
  background: var(--chalk-yellow);
  border-color: var(--chalk-yellow-deep);
}
video.is-player-ready {
  background: #05090d;
}
@media (max-width: 1080px) {.movie-overview {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "head"
      "hero"
      "player"
      "body";
  }
.movie-overview::before {
    display: none;
  }
.hero-figure {
    justify-self: start;
    max-width: 300px;
  }
.overview-body {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "synopsis"
      "details"
      "cast"
      "status";
    gap: 14px;
  }
.cast-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.rec-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
.comment-list {
    columns: 2;
  }}
@media (max-width: 820px) {.page-main {
    padding: 12px 12px 0;
    gap: 18px;
  }
.movie-title {
    font-size: 25px;
  }
.detail-table {
    grid-template-columns: minmax(0, 1fr);
  }
.cast-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.rec-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.timeline-track::before {
    left: 9px;
    transform: none;
  }
.timeline-node {
    grid-template-columns: 22px minmax(0, 1fr);
    align-items: start;
    padding: 4px 0;
  }
.timeline-node::after {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    margin-left: 5px;
  }
.timeline-node-left .node-timecode, .timeline-node-right .node-timecode {
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
    text-align: left;
    padding: 0 0 0 8px;
  }
.timeline-node-left .node-label, .timeline-node-right .node-label {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
    text-align: left;
    padding: 0 0 0 8px;
  }
.comment-item-b {
    margin-left: 0;
  }}
@media (max-width: 620px) {body {
    font-size: 13px;
  }
.header-bar {
    padding: 8px 12px;
    gap: 8px;
  }
.movie-overview {
    padding: 12px;
    gap: 10px;
  }
.movie-title {
    font-size: 22px;
  }
.hero-figure {
    max-width: 240px;
  }
.ctrl-progress {
    width: 84px;
  }
.episode-strip {
    grid-auto-columns: 168px;
  }
.comment-list {
    columns: 1;
  }
.rec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.cast-row {
    grid-template-columns: minmax(0, 1fr);
  }
.site-footer {
    padding: 12px 12px 22px;
  }}
@media (max-width: 400px) {.rec-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.episode-strip {
    grid-auto-columns: 150px;
  }}

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}
