:root {
  --cotton: #e6e3dd;
  --cotton-warm: #dedad2;
  --machine: #6e6d69;
  --machine-deep: #4a4946;
  --machine-dark: #343330;
  --oil: #2c2b29;
  --badge-red: #a8463d;
  --badge-red-dim: #8c3d36;
  --wet-blue: #6b8a9e;
  --wet-blue-dim: #5a7788;
  --rust: #9c5a34;
  --rust-bright: #b5652f;
  --line: rgba(44, 43, 41, 0.16);
  --line-soft: rgba(44, 43, 41, 0.09);
  --ink: #2c2b29;
  --ink-soft: #55534e;
  --ink-faint: #7d7a73;
  --font: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Source Han Sans SC", "Noto Sans CJK SC", "Heiti SC", sans-serif;
  --mono: "SFMono-Regular", "Roboto Mono", "Courier New", monospace;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body, h1, h2, p, ol, ul, dl, dd, dt {
  margin: 0;
  padding: 0;
}
ol, ul {
  list-style: none;
}
img, video, progress {
  display: block;
  max-width: 100%;
}
button, input {
  font: inherit;
  color: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
body {
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0) 60%),
    linear-gradient(180deg, var(--cotton) 0%, var(--cotton-warm) 100%);
  background-attachment: fixed;
  letter-spacing: 0.01em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 60;
  opacity: 0.05;
  background-image:
    repeating-linear-gradient(0deg, rgba(44, 43, 41, 0.5) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(44, 43, 41, 0.35) 0 1px, transparent 1px 4px);
  mix-blend-mode: multiply;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 7px clamp(12px, 2.4vw, 26px);
  background: rgba(224, 221, 215, 0.9);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
a[data-contract="site-name"].site-brand {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--machine-deep);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 2px solid var(--rust);
  white-space: nowrap;
  transition: color 0.18s ease, border-color 0.18s ease;
}
a[data-contract="site-name"].site-brand:hover {
  color: var(--rust);
  border-bottom-color: var(--badge-red);
}
.category-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px 4px;
  min-width: 0;
  font-size: 12.5px;
}
.runtime-category, a.runtime-category {
  display: inline-block;
  white-space: nowrap;
  padding: 3px 9px;
  color: var(--ink-soft);
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 1px;
  letter-spacing: 0.06em;
  transition: color 0.16s ease, background 0.16s ease, border-color 0.16s ease;
}
a.runtime-category:hover {
  color: var(--badge-red);
  background: rgba(168, 70, 61, 0.08);
  border-color: rgba(168, 70, 61, 0.28);
}
.page-main {
  display: block;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(12px, 2.4vw, 26px) 34px;
}
.hero-panel {
  display: block;
  padding-top: 16px;
}
.hero-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  position: relative;
}
.poster-frame {
  position: absolute;
  top: 16px;
  left: clamp(12px, 2.4vw, 26px);
  width: clamp(88px, 14vw, 148px);
  z-index: 3;
  background: var(--machine-dark);
  border: 1px solid rgba(44, 43, 41, 0.5);
  box-shadow: 0 12px 26px -14px rgba(20, 19, 18, 0.7);
  pointer-events: none;
}
.poster-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  height: auto;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.02);
}
.player-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 0;
  margin-left: clamp(0px, 9vw, 96px);
  background: linear-gradient(160deg, #3a3936 0%, #2c2b29 70%);
  border: 1px solid rgba(28, 27, 26, 0.75);
  box-shadow: 0 20px 40px -26px rgba(18, 17, 16, 0.85);
}
.player-frame video {
  display: block;
  width: 100%;
  background: #1f1e1c;
  filter: saturate(0.92);
}
.player-frame.is-dim::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 19, 18, 0.55);
  pointer-events: none;
  z-index: 4;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  padding: 6px 8px;
  background: linear-gradient(180deg, rgba(58, 57, 54, 0.96), rgba(34, 33, 31, 0.98));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 11.5px;
}
.ctl {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: #d8d5ce;
  padding: 3px 9px;
  font-size: 11.5px;
  letter-spacing: 0.05em;
  border-radius: 1px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.ctl:hover {
  background: rgba(107, 138, 158, 0.24);
  color: #f2f0eb;
  border-color: rgba(107, 138, 158, 0.5);
}
.ctl.is-active {
  background: rgba(168, 70, 61, 0.32);
  border-color: rgba(168, 70, 61, 0.6);
  color: #f6e9e6;
}
.ctl-progress {
  flex: 1 1 120px;
  min-width: 90px;
  height: 5px;
  align-self: center;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  border-radius: 1px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.ctl-progress::-webkit-progress-bar {
  background: rgba(255, 255, 255, 0.12);
}
.ctl-progress::-webkit-progress-value {
  background: linear-gradient(90deg, var(--wet-blue), var(--badge-red));
}
.ctl-progress::-moz-progress-bar {
  background: linear-gradient(90deg, var(--wet-blue), var(--badge-red));
}
.ctl-volume {
  flex: 0 1 78px;
  min-width: 54px;
  height: 4px;
  accent-color: var(--wet-blue);
  cursor: pointer;
}
.hero-caption {
  position: relative;
  margin-top: -46px;
  margin-left: clamp(0px, 9vw, 96px);
  padding: 12px 16px 14px;
  background: linear-gradient(180deg, rgba(34, 33, 31, 0.62), rgba(34, 33, 31, 0.94));
  border-left: 3px solid var(--badge-red);
  z-index: 5;
  max-width: 100%;
}
.hero-slogan {
  font-size: clamp(15px, 1.9vw, 20px);
  font-weight: 700;
  letter-spacing: 0.24em;
  color: #efe9df;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  margin-bottom: 4px;
}
.movie-title {
  font-size: clamp(18px, 2.5vw, 27px);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #f4f1ea;
  line-height: 1.25;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  margin-bottom: 6px;
}
.movie-seo {
  font-size: 12.5px;
  line-height: 1.72;
  color: rgba(238, 233, 223, 0.74);
  max-width: 72ch;
}
.info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  grid-template-areas:
    "cast episodes"
    "synop details";
  gap: 0;
  margin-top: 16px;
  background: rgba(240, 238, 233, 0.72);
  border: 1px solid var(--line);
  border-top: 2px solid var(--machine-deep);
}
.info-grid > section {
  padding: 12px 15px 14px;
  min-width: 0;
}
.info-grid > .cast-strip {
  grid-area: cast;
  border-bottom: 1px solid var(--line-soft);
  border-right: 1px solid var(--line-soft);
}
.info-grid > .episode-status {
  grid-area: episodes;
  border-bottom: 1px solid var(--line-soft);
}
.info-grid > .synopsis-block {
  grid-area: synop;
  border-right: 1px solid var(--line-soft);
}
.info-grid > .details-block {
  grid-area: details;
}
.cast-heading, .synopsis-heading, .details-heading, .episodes-heading, .comments-heading, .timeline-heading {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--machine-deep);
  padding-bottom: 5px;
  margin-bottom: 9px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.cast-heading::after, .synopsis-heading::after, .details-heading::after, .episodes-heading::after, .comments-heading::after, .timeline-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 34px;
  height: 2px;
  background: var(--rust);
}
.cast-strip {
  display: block;
}
.cast-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.cast-item {
  display: inline-block;
  padding: 3px 11px 3px 9px;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: var(--ink);
  background: rgba(107, 138, 158, 0.12);
  border-left: 2px solid var(--wet-blue);
  border-radius: 0 1px 1px 0;
  white-space: nowrap;
}
.episode-status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  align-content: flex-start;
}
.status-chip {
  display: inline-block;
  padding: 3px 10px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  background: rgba(44, 43, 41, 0.05);
  border: 1px solid var(--line);
  border-radius: 1px;
  white-space: nowrap;
}
.status-chip.status-current {
  color: #f6eceA;
  background: var(--badge-red-dim);
  border-color: var(--badge-red);
  font-weight: 700;
}
.synopsis-block {
  display: block;
}
.synopsis-line {
  font-size: 13px;
  line-height: 1.78;
  color: var(--ink-soft);
  text-indent: 2em;
  margin-bottom: 6px;
}
.synopsis-line:last-child {
  margin-bottom: 0;
}
.details-block {
  display: block;
}
.details-list {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 3px 10px;
  font-size: 12.5px;
}
.details-key {
  color: var(--ink-faint);
  letter-spacing: 0.1em;
  white-space: nowrap;
  border-bottom: 1px dotted var(--line-soft);
}
.details-val {
  color: var(--ink);
  border-bottom: 1px dotted var(--line-soft);
}
.timeline-band {
  display: block;
  margin-top: 24px;
  padding: 12px 15px 16px;
  background: rgba(236, 233, 227, 0.6);
  border: 1px solid var(--line);
  border-left: 2px solid var(--wet-blue-dim);
}
.timeline-scale {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding-top: 14px;
}
.timeline-scale::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(156, 90, 52, 0.5), rgba(107, 138, 158, 0.55), rgba(156, 90, 52, 0.5));
}
.timeline-node {
  position: relative;
  padding-top: 12px;
  min-width: 0;
}
.timeline-node::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
  background: var(--machine-deep);
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.node-timecode {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--rust);
  margin-bottom: 2px;
}
.node-label {
  display: block;
  font-size: 12px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.timeline-node.node-active::before {
  background: var(--badge-red);
  width: 9px;
  height: 9px;
  top: -11px;
  box-shadow: 0 0 0 3px rgba(168, 70, 61, 0.2);
}
.timeline-node.node-active .node-timecode {
  color: var(--badge-red);
  font-weight: 700;
}
.timeline-node.node-active .node-label {
  color: var(--ink);
  font-weight: 700;
}
.episodes-block {
  display: block;
  margin-top: 18px;
}
.episode-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 22px;
}
.episode-row {
  display: grid;
  grid-template-columns: 3.6em minmax(0, 1fr) auto;
  grid-template-areas:
    "num title dur"
    "num summary summary";
  align-items: baseline;
  column-gap: 10px;
  row-gap: 1px;
  padding: 6px 0 7px;
  border-bottom: 1px solid var(--line-soft);
  min-width: 0;
  transition: background 0.16s ease;
}
.episode-row:hover {
  background: rgba(107, 138, 158, 0.1);
}
.ep-number {
  grid-area: num;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--ink-faint);
  white-space: nowrap;
}
.ep-title {
  grid-area: title;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.06em;
}
.ep-summary {
  grid-area: summary;
  font-size: 12px;
  line-height: 1.6;
  color: var(--ink-faint);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.28s ease, opacity 0.24s ease, margin-top 0.24s ease;
}
.episode-row:hover .ep-summary, .episode-row:focus-within .ep-summary {
  max-height: 8em;
  opacity: 1;
  margin-top: 3px;
}
.episode-row.ep-current .ep-summary {
  max-height: 8em;
  opacity: 1;
  margin-top: 3px;
}
.ep-duration {
  grid-area: dur;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-faint);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.episode-row:hover .ep-duration, .episode-row.ep-current .ep-duration {
  opacity: 1;
}
.episode-row.ep-current {
  background: rgba(168, 70, 61, 0.07);
  box-shadow: inset 3px 0 0 var(--badge-red);
  padding-left: 8px;
}
.episode-row.ep-current .ep-number {
  color: var(--badge-red);
  font-weight: 700;
}
.episode-row.ep-current .ep-title {
  color: var(--badge-red-dim);
}
.comments-block {
  display: block;
  margin-top: 18px;
}
.comment-columns {
  columns: 2;
  column-gap: 14px;
}
.comment-note {
  break-inside: avoid;
  display: block;
  margin: 0 0 12px;
  padding: 9px 12px 10px;
  background: rgba(246, 244, 238, 0.82);
  border: 1px solid var(--line-soft);
  border-top: 2px solid var(--wet-blue);
  box-shadow: 0 3px 10px -7px rgba(40, 38, 36, 0.55);
}
.comment-note:nth-child(2n) {
  transform: rotate(-0.35deg);
  border-top-color: var(--rust);
}
.comment-note:nth-child(3n) {
  transform: rotate(0.4deg);
}
.comment-nickname {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--rust);
  margin-bottom: 4px;
}
.comment-text {
  font-size: 12.5px;
  line-height: 1.72;
  color: var(--ink-soft);
}
.recommend-region {
  display: block;
  margin-top: 18px;
}
.recommend-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--machine-deep);
  padding-bottom: 5px;
  margin-bottom: 9px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.recommend-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 30px;
  height: 2px;
  background: var(--rust);
}
.recommend-grid {
  display: grid;
  gap: 12px;
  align-items: start;
}
.recommend-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.recommend-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.recommend-grid-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
a.recommend-card {
  display: block;
  align-self: start;
  min-width: 0;
  color: var(--ink);
  text-decoration: none;
  background: rgba(240, 238, 233, 0.6);
  border: 1px solid var(--line-soft);
  padding: 0 0 8px;
  transition: border-color 0.16s ease, background 0.16s ease, transform 0.16s ease;
}
a.recommend-card:hover {
  border-color: rgba(156, 90, 52, 0.5);
  background: rgba(246, 243, 236, 0.9);
  transform: translateY(-2px);
}
[data-runtime="recommendation"] img, .recommend-pic {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.02);
  border-bottom: 1px solid var(--line-soft);
}
.recommend-name {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
  padding: 6px 8px 2px;
  line-height: 1.5;
}
.recommend-blurb {
  display: block;
  font-size: 11px;
  line-height: 1.55;
  color: var(--ink-faint);
  padding: 0 8px;
}
.recommend-region {
  position: relative;
}
.recommend-region::before {
  content: attr(data-recommendation-region);
  position: absolute;
  top: 1px;
  right: 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
}
.site-footer {
  margin-top: 30px;
  padding: 16px clamp(12px, 2.4vw, 26px) 22px;
  background: linear-gradient(180deg, rgba(60, 58, 55, 0.94), rgba(44, 43, 41, 0.98));
  color: rgba(232, 228, 219, 0.72);
  font-size: 12px;
  border-top: 2px solid var(--rust);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  color: rgba(232, 228, 219, 0.85);
  text-decoration: none;
  letter-spacing: 0.1em;
  border-bottom: 1px solid transparent;
  transition: color 0.16s ease, border-color 0.16s ease;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: #e8b48a;
  border-bottom-color: var(--rust-bright);
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 14px;
  margin-bottom: 12px;
}
.friend-label {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  color: rgba(232, 228, 219, 0.5);
  white-space: nowrap;
}
a.runtime-friend-link {
  font-size: 11.5px;
  color: rgba(168, 192, 206, 0.78);
  text-decoration: none;
  border-bottom: 1px dotted rgba(168, 192, 206, 0.3);
  transition: color 0.16s ease, border-color 0.16s ease;
}
a.runtime-friend-link:hover {
  color: #a8c6d8;
  border-bottom-color: #a8c6d8;
}
.footer-disclaimer {
  font-size: 10.5px;
  line-height: 1.7;
  color: rgba(232, 228, 219, 0.4);
  max-width: 90ch;
}
@media (max-width: 900px) {.info-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "cast"
      "episodes"
      "synop"
      "details";
  }
.info-grid > .cast-strip, .info-grid > .synopsis-block {
    border-right: none;
  }
.recommend-grid-5 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.recommend-grid-4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }}
@media (max-width: 720px) {.episode-list {
    grid-template-columns: minmax(0, 1fr);
  }
.comment-columns {
    columns: 1;
  }
.timeline-scale {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 16px;
  }
.timeline-scale::before {
    display: none;
  }
.timeline-node::before {
    top: 2px;
  }
.recommend-grid-5, .recommend-grid-4, .recommend-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.poster-frame {
    position: static;
    width: clamp(96px, 34vw, 150px);
    margin-bottom: 10px;
    pointer-events: auto;
  }
.player-frame {
    margin-left: 0;
  }
.hero-caption {
    margin-top: 12px;
    margin-left: 0;
  }}
@media (max-width: 480px) {body {
    font-size: 13px;
  }
.player-controls {
    gap: 3px;
    padding: 5px 6px;
  }
.ctl {
    padding: 3px 7px;
    font-size: 11px;
  }
.ctl-progress {
    flex-basis: 100%;
    order: -1;
  }
.timeline-scale {
    grid-template-columns: minmax(0, 1fr);
  }
.recommend-grid-5, .recommend-grid-4, .recommend-grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }
.episode-row {
    grid-template-columns: 3.4em minmax(0, 1fr) auto;
  }}
@media (prefers-reduced-motion: reduce) {* {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !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}
