:root {
  --ink: #e8ecf1;
  --ink-dim: #9aa5b4;
  --ink-faint: #6b7684;
  --bg: #0e1218;
  --bg-2: #141a22;
  --bg-3: #1a222c;
  --cement: #222a34;
  --line: #2c3641;
  --line-soft: #232c36;
  --blue-grey: #4a5a6e;
  --warm: #e8b25a;
  --warm-dim: #b98a3c;
  --warn: #c0564a;
  --radius: 0;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.01em;
  min-height: 100vh;
}
img {
  display: block;
  max-width: 100%;
}
ul, ol, li {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
h1, h2, h3 {
  font-weight: 700;
  line-height: 1.25;
}
button, input {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
.site-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px 18px;
  flex-wrap: wrap;
  padding: 14px clamp(14px, 3vw, 40px);
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 40;
}
.brand-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex: 1 1 auto;
  min-width: 0;
}
a[data-contract="site-name"] {
  color: var(--ink);
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
a[data-contract="site-name"]:hover {
  color: var(--warm);
}
.category-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 6px;
  flex: 0 1 auto;
  min-width: 0;
}
a.runtime-category {
  display: inline-block;
  color: var(--ink-dim);
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  white-space: nowrap;
  padding: 4px 8px;
  border: 1px solid var(--line);
  background: var(--bg-3);
  transition: color 0.15s ease, border-color 0.15s ease;
}
a.runtime-category:hover {
  color: var(--warm);
  border-color: var(--warm-dim);
}
.page-main {
  display: block;
  padding: clamp(14px, 2.4vw, 28px) clamp(14px, 3vw, 40px) 40px;
}
.section-heading {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--ink);
  padding-bottom: 7px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--line);
  text-transform: uppercase;
}
.movie-overview {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: clamp(14px, 2vw, 22px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.overview-hero {
  display: grid;
  grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
  gap: clamp(14px, 2.4vw, 28px);
  align-items: start;
}
.poster-frame {
  width: 100%;
  max-width: 220px;
  border: 1px solid var(--line);
  background: var(--cement);
  overflow: hidden;
  position: relative;
}
.poster-frame::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, transparent, var(--warm-dim) 48%, transparent);
  opacity: 0.55;
  pointer-events: none;
}
.poster-img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.06) brightness(0.94);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  padding-top: 2px;
}
.movie-title {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 1.18;
}
.movie-tagline {
  position: relative;
  color: var(--warm);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  padding-left: 14px;
}
.movie-tagline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 7px;
  height: 1px;
  background: var(--warm);
}
.seo-description {
  color: var(--ink-dim);
  font-size: 13px;
  line-height: 1.62;
  font-weight: 300;
  max-width: 66ch;
  border-top: 1px solid var(--line-soft);
  padding-top: 10px;
}
.player-shell {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  background: #05080c;
  display: flex;
  flex-direction: column;
}
.player-shell video {
  display: block;
  width: 100%;
  background: #000;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 6px;
  padding: 8px 10px;
  background: var(--bg-3);
  border-top: 1px solid var(--line);
}
.ctrl-btn {
  background: var(--cement);
  border: 1px solid var(--line);
  color: var(--ink-dim);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.05em;
  padding: 5px 9px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.ctrl-btn:hover {
  color: var(--ink);
  border-color: var(--blue-grey);
}
.ctrl-btn.is-playing, .ctrl-btn.is-active {
  color: var(--warm);
  border-color: var(--warm-dim);
  background: #21190e;
}
.ctrl-btn.is-muted, .ctrl-btn.is-altered {
  color: var(--warn);
  border-color: #5c2a24;
}
.ctrl-range {
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: var(--line);
  border: none;
  cursor: pointer;
  flex: 1 1 90px;
  min-width: 70px;
  max-width: 240px;
}
.ctrl-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 9px;
  height: 14px;
  background: var(--warm-dim);
  border: none;
  border-radius: 0;
  cursor: pointer;
}
.ctrl-range::-moz-range-thumb {
  width: 9px;
  height: 14px;
  background: var(--warm-dim);
  border: none;
  border-radius: 0;
  cursor: pointer;
}
.ctrl-range::-moz-range-track {
  height: 4px;
  background: var(--line);
}
.player-shell.is-theater {
  border-color: var(--warm-dim);
  box-shadow: 0 0 0 1px rgba(232, 178, 90, 0.25);
}
body.is-lights-off {
  background: #05070a;
}
body.is-lights-off .player-shell {
  box-shadow: 0 0 0 1px var(--warm-dim);
}
.episode-status {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  align-items: baseline;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 8px 0;
}
.status-total {
  font-size: 12px;
  color: var(--ink-dim);
  letter-spacing: 0.06em;
}
.status-current {
  font-size: 12px;
  color: var(--warm);
  letter-spacing: 0.06em;
  font-weight: 400;
}
.cast-section {
  min-width: 0;
}
.cast-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  align-items: start;
}
.cast-card {
  position: relative;
  border: 1px solid var(--line);
  background: var(--cement);
  overflow: hidden;
  min-width: 0;
}
.cast-portrait {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: saturate(0.6) contrast(1.08) brightness(0.88);
  display: block;
}
.cast-name {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 7px 5px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--ink);
  background: linear-gradient(180deg, rgba(10, 14, 20, 0) 0%, rgba(10, 14, 20, 0.92) 62%);
  text-align: left;
}
.synopsis-section {
  min-width: 0;
}
.synopsis-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 26px;
  align-items: start;
}
.synopsis-paragraph {
  font-size: 13px;
  line-height: 1.68;
  color: var(--ink-dim);
  font-weight: 300;
  border-left: 1px solid var(--line);
  padding-left: 11px;
}
.details-section {
  min-width: 0;
}
.details-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0;
  border-top: 1px solid var(--line-soft);
}
.detail-key {
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.1em;
  padding: 7px 0 1px;
  border-bottom: none;
  font-weight: 400;
}
.detail-value {
  font-size: 13px;
  color: var(--ink);
  padding: 0 0 7px;
  border-bottom: 1px solid var(--line-soft);
  font-weight: 300;
  overflow-wrap: break-word;
}
.timeline-section {
  margin-top: 26px;
}
.timeline-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 2px 12px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.timeline-strip::-webkit-scrollbar {
  height: 5px;
}
.timeline-strip::-webkit-scrollbar-track {
  background: var(--bg-3);
}
.timeline-strip::-webkit-scrollbar-thumb {
  background: var(--blue-grey);
}
.timeline-card {
  flex: 0 0 176px;
  width: 176px;
  min-height: 88px;
  scroll-snap-align: start;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-right-color: transparent;
  border-bottom-color: var(--bg-2);
  padding: 11px 12px 13px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 9px), calc(100% - 9px) 100%, 0 100%);
}
.timeline-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 26%;
  background: var(--line);
}
.timeline-timecode {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--warm);
}
.timeline-label {
  font-size: 12px;
  line-height: 1.5;
  color: var(--ink-dim);
  font-weight: 300;
}
.episodes-section {
  margin-top: 30px;
}
.episodes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line-soft);
}
.episode-cell {
  padding: 9px 14px 9px 0;
  border-bottom: 1px solid var(--line-soft);
  border-right: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "num title"
    "sum sum"
    "dur dur";
  column-gap: 8px;
  row-gap: 2px;
  align-items: baseline;
  min-width: 0;
}
.episode-cell:nth-child(2n) {
  border-right: none;
  padding-right: 0;
  padding-left: 14px;
}
.episode-number {
  grid-area: num;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--warm);
  white-space: nowrap;
}
.episode-title {
  grid-area: title;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.02em;
  line-height: 1.35;
  min-width: 0;
}
.episode-summary {
  grid-area: sum;
  font-size: 11.5px;
  line-height: 1.55;
  color: var(--ink-faint);
  font-weight: 300;
}
.episode-duration {
  grid-area: dur;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--blue-grey);
  padding-top: 1px;
}
.comments-section {
  margin-top: 30px;
}
.comments-stack {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
  padding: 6px 0 10px;
}
.comment-note {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-left: 2px solid var(--blue-grey);
  padding: 11px 12px 13px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  box-shadow: 2px 3px 0 rgba(0, 0, 0, 0.34);
}
.comment-note:nth-child(3n + 1) {
  transform: translateY(0) rotate(-0.5deg);
}
.comment-note:nth-child(3n + 2) {
  transform: translateY(9px) rotate(0.4deg);
  border-left-color: var(--warm-dim);
}
.comment-note:nth-child(3n + 3) {
  transform: translateY(4px) rotate(-0.3deg);
}
.comment-nickname {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--warm);
}
.comment-text {
  font-size: 12px;
  line-height: 1.6;
  color: var(--ink-dim);
  font-weight: 300;
}
.recommend-region {
  margin-top: 26px;
}
.recommend-heading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--ink);
  padding-bottom: 6px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.recommend-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}
a.recommend-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 8px;
  color: var(--ink);
  text-decoration: none;
  min-width: 0;
  transition: border-color 0.15s ease, background 0.15s ease;
}
a.recommend-item:hover {
  border-color: var(--blue-grey);
  background: var(--bg-3);
}
[data-runtime="recommendation"] img, .recommend-pic {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  background: var(--cement);
  filter: saturate(0.62) contrast(1.05) brightness(0.9);
}
.recommend-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 1.35;
}
.recommend-blurb {
  font-size: 11px;
  line-height: 1.5;
  color: var(--ink-faint);
  font-weight: 300;
}
.site-footer {
  margin-top: 36px;
  padding: 20px clamp(14px, 3vw, 40px) 30px;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  align-items: baseline;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  color: var(--ink-dim);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.08em;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: var(--warm);
  border-bottom-color: var(--warm-dim);
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 5px 12px;
  border-top: 1px solid var(--line-soft);
  padding-top: 12px;
}
.friend-links-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-faint);
  font-weight: 400;
}
a.runtime-friend-link {
  color: var(--blue-grey);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.03em;
  white-space: nowrap;
  border-bottom: 1px solid transparent;
}
a.runtime-friend-link:hover {
  color: var(--ink-dim);
  border-bottom-color: var(--line);
}
.footer-disclaimer {
  font-size: 11px;
  line-height: 1.6;
  color: var(--ink-faint);
  font-weight: 300;
  border-top: 1px solid var(--line-soft);
  padding-top: 12px;
  max-width: 90ch;
}
@media (max-width: 1024px) {.comments-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }}
@media (max-width: 860px) {.overview-hero {
    grid-template-columns: minmax(0, 160px) minmax(0, 1fr);
  }
.poster-frame {
    max-width: 160px;
  }
.synopsis-body {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }
.cast-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }
.comments-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.recommend-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }}
@media (max-width: 640px) {body {
    font-size: 13px;
  }
.overview-hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }
.poster-frame {
    max-width: 190px;
  }
.cast-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.episodes-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.episode-cell, .episode-cell:nth-child(2n) {
    border-right: none;
    padding-left: 0;
    padding-right: 0;
  }
.comments-stack {
    grid-template-columns: minmax(0, 1fr);
  }
.comment-note, .comment-note:nth-child(3n + 1), .comment-note:nth-child(3n + 2), .comment-note:nth-child(3n + 3) {
    transform: none;
  }
.recommend-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.player-controls {
    gap: 5px;
  }
.ctrl-range {
    flex: 1 1 100%;
    max-width: none;
  }}

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}
