:root {
  --ink: #0a0b0e;
  --ink-2: #10131a;
  --indigo: #131c2e;
  --indigo-2: #1b2740;
  --blood: #7d1220;
  --blood-bright: #a81b2c;
  --blood-deep: #4a0a14;
  --cold-1: #8d94a0;
  --cold-2: #646c7a;
  --cold-3: #3d434f;
  --cold-4: #23272f;
  --line: rgba(141, 148, 160, 0.16);
  --line-blood: rgba(168, 27, 44, 0.42);
  --serif: "Songti SC", "STSong", "SimSun", "Noto Serif CJK SC", "Source Han Serif SC", Georgia, serif;
  --sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  --gap: 14px;
  --pad: 16px;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--cold-1);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
h1, h2, h3, p, dl, dd, dt, ol, ul, figure, figcaption {
  margin: 0;
  padding: 0;
}
ol, ul {
  list-style: none;
}
button, input, select {
  font: inherit;
  color: inherit;
}
.site-header {
  background: linear-gradient(180deg, var(--ink-2) 0%, var(--ink) 100%);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 20;
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 96px;
  height: 1px;
  background: var(--blood-bright);
}
.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 20px;
  padding: 12px var(--pad);
  max-width: 1180px;
  margin: 0 auto;
}
a[data-contract="site-name"] {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #d7dbe2;
  text-decoration: none;
  border-left: 2px solid var(--blood-bright);
  padding-left: 9px;
}
a[data-contract="site-name"]:hover {
  color: #fff;
}
.category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 6px;
  align-items: center;
}
a.runtime-category {
  display: inline-block;
  white-space: nowrap;
  color: var(--cold-2);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(19, 28, 46, 0.5);
  transition: color 0.2s, border-color 0.2s;
}
a.runtime-category:hover {
  color: #c9ced6;
  border-color: var(--line-blood);
}
.page-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--pad) 26px;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}
.hero-shell {
  position: relative;
  margin: 18px 0 24px;
  overflow: hidden;
  border-radius: 3px;
  background: var(--indigo);
}
.hero-figure {
  position: relative;
  display: block;
  margin: 0;
}
.hero-image {
  width: 100%;
  height: 62vh;
  min-height: 320px;
  max-height: 620px;
  object-fit: cover;
  object-position: 60% 30%;
  filter: saturate(0.72) brightness(0.78) contrast(1.08);
}
.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 11, 14, 0.86) 0%, rgba(10, 11, 14, 0.1) 38%, rgba(10, 11, 14, 0.92) 100%),
    radial-gradient(120% 90% at 88% 96%, rgba(125, 18, 32, 0.34) 0%, rgba(10, 11, 14, 0) 58%);
  pointer-events: none;
  z-index: 2;
}
.hero-caption {
  position: absolute;
  left: 22px;
  bottom: 20px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-caption-line {
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.28em;
  color: #cfd4dc;
  padding-left: 14px;
  position: relative;
}
.hero-caption-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 1px;
  background: var(--blood-bright);
}
.hero-knot-mark {
  position: absolute;
  right: -40px;
  bottom: -30px;
  width: 230px;
  height: 230px;
  z-index: 3;
  border-radius: 50%;
  border: 2px solid var(--blood-bright);
  border-top-color: transparent;
  border-left-color: transparent;
  transform: rotate(-24deg);
  opacity: 0.85;
  box-shadow: 0 0 42px rgba(168, 27, 44, 0.36);
  pointer-events: none;
}
.hero-knot-mark::before, .hero-knot-mark::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid var(--blood-bright);
}
.hero-knot-mark::before {
  inset: 34px;
  border-bottom-color: transparent;
  border-right-color: transparent;
  transform: rotate(38deg);
  opacity: 0.7;
}
.hero-knot-mark::after {
  inset: 74px;
  border-top-color: transparent;
  border-left-color: transparent;
  transform: rotate(-56deg);
  opacity: 0.5;
}
.overview-panel {
  display: grid;
  grid-template-columns: minmax(0, 232px) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  background: linear-gradient(160deg, var(--ink-2) 0%, var(--indigo) 100%);
  border: 1px solid var(--line);
  border-top: 2px solid var(--blood);
  border-radius: 3px;
  padding: 20px;
}
.poster-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: sticky;
  top: 12px;
}
.poster-wrap {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--ink);
  padding: 5px;
  border-radius: 2px;
}
.poster-image {
  width: 100%;
  aspect-ratio: 2 / 3;
  height: auto;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.05);
}
.overview-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}
.movie-title {
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.16;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #e3e6eb;
}
.movie-tagline {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--blood-bright);
  border-left: 2px solid var(--blood);
  padding-left: 10px;
}
.movie-seo {
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--cold-2);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.cast-strip {
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}
.cast-heading, .details-heading, .synopsis-heading {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: #c4c9d1;
  margin-bottom: 8px;
  position: relative;
  padding-left: 12px;
}
.cast-heading::before, .details-heading::before, .synopsis-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px;
  height: 5px;
  background: var(--blood-bright);
  transform: translateY(-50%) rotate(45deg);
}
.cast-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.cast-item {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 5px 11px;
  background: rgba(19, 28, 46, 0.72);
  border: 1px solid var(--line);
  border-radius: 2px;
  min-width: 0;
}
.cast-name {
  font-size: 13px;
  color: #cfd4dc;
  letter-spacing: 0.04em;
}
.cast-role {
  font-size: 11px;
  color: var(--cold-3);
  letter-spacing: 0.02em;
}
.episode-status {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.status-chip {
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 3px 11px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(10, 11, 14, 0.6);
  color: var(--cold-1);
  white-space: nowrap;
}
.status-total {
  color: #cfd4dc;
}
.status-current {
  color: #e3b7be;
  border-color: var(--line-blood);
  background: rgba(74, 10, 20, 0.42);
}
.status-score {
  font-family: var(--serif);
  color: var(--blood-bright);
  border-color: var(--line-blood);
  background: rgba(10, 11, 14, 0.75);
}
.details-panel {
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}
.details-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 18px;
}
.details-row {
  display: flex;
  gap: 8px;
  font-size: 12.5px;
  padding: 3px 0;
  border-bottom: 1px dotted rgba(141, 148, 160, 0.14);
  min-width: 0;
}
.details-row dt {
  color: var(--cold-3);
  flex: 0 0 62px;
  letter-spacing: 0.04em;
}
.details-row dd {
  color: var(--cold-1);
  margin: 0;
  min-width: 0;
}
.synopsis-panel {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.synopsis-text {
  font-size: 13px;
  line-height: 1.82;
  color: var(--cold-1);
  text-indent: 2em;
  letter-spacing: 0.005em;
}
.player-shell {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
}
.player-frame {
  position: relative;
  width: 100%;
  min-width: 0;
  background: #000;
}
.player-frame video {
  display: block;
  width: 100%;
  background: #000;
}
.player-frame.is-theater {
  box-shadow: 0 0 0 1px var(--line-blood), 0 0 60px rgba(0, 0, 0, 0.9);
}
.player-frame.is-lights-off {
  filter: brightness(0.35);
  transition: filter 0.3s ease;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: linear-gradient(180deg, var(--indigo) 0%, var(--ink-2) 100%);
  border-top: 1px solid var(--line);
}
.ctrl-btn {
  background: rgba(10, 11, 14, 0.72);
  border: 1px solid var(--line);
  color: var(--cold-1);
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 2px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.18s, border-color 0.18s, background 0.18s;
}
.ctrl-btn:hover {
  color: #e3e6eb;
  border-color: var(--line-blood);
  background: rgba(74, 10, 20, 0.34);
}
.ctrl-progress, .ctrl-volume {
  -webkit-appearance: none;
  appearance: none;
  height: 3px;
  border-radius: 2px;
  background: var(--cold-4);
  cursor: pointer;
  flex: 1 1 120px;
  min-width: 80px;
}
.ctrl-progress::-webkit-slider-thumb, .ctrl-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--blood-bright);
  border: none;
  box-shadow: 0 0 6px rgba(168, 27, 44, 0.7);
}
.ctrl-progress::-moz-range-thumb, .ctrl-volume::-moz-range-thumb {
  width: 11px;
  height: 11px;
  border: none;
  border-radius: 50%;
  background: var(--blood-bright);
}
.ctrl-volume {
  flex: 0 1 84px;
}
.ctrl-speed {
  background: rgba(10, 11, 14, 0.72);
  border: 1px solid var(--line);
  color: var(--cold-1);
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 2px;
  cursor: pointer;
}
.play .ctrl-btn[data-player-action="play"] {
  color: var(--blood-bright);
  border-color: var(--line-blood);
}
.mute .ctrl-btn[data-player-action="mute"] {
  color: var(--blood-bright);
  border-color: var(--line-blood);
}
.theater .player-frame, .player-frame.is-theater {
  outline: 1px solid var(--line-blood);
}
.click .ctrl-btn {
  background: rgba(74, 10, 20, 0.5);
}
.input .ctrl-progress, .input .ctrl-volume {
  background: var(--blood-deep);
}
.change .player-controls {
  border-top-color: var(--line-blood);
}
.speed .ctrl-speed {
  border-color: var(--line-blood);
  color: #e3b7be;
}
.fullscreen .player-frame {
  background: #000;
}
.pip .player-frame {
  outline: 1px solid var(--blood);
}
.progress .ctrl-progress {
  background: linear-gradient(90deg, var(--blood) 0%, var(--cold-4) 0%);
}
.volume .ctrl-volume, .light .ctrl-btn[data-player-action="light"] {
  border-color: var(--line-blood);
  color: #e3b7be;
}
.timeupdate .ctrl-progress {
  box-shadow: 0 0 6px rgba(168, 27, 44, 0.32);
}
.section-heading {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #d3d7de;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.section-heading::before {
  content: "";
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  border: 1.5px solid var(--blood-bright);
  border-radius: 50%;
  border-right-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(-45deg);
}
.section-heading::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, var(--line-blood) 0%, rgba(141, 148, 160, 0.06) 100%);
}
.timeline-section {
  padding: 4px 0 2px;
}
.timeline-track {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 8px 2px 14px;
  scrollbar-width: thin;
  scrollbar-color: var(--blood-deep) transparent;
}
.timeline-track::-webkit-scrollbar {
  height: 5px;
}
.timeline-track::-webkit-scrollbar-thumb {
  background: var(--blood-deep);
  border-radius: 3px;
}
.timeline-list {
  display: flex;
  align-items: flex-start;
  gap: 0;
  min-width: max-content;
  position: relative;
  padding: 0 4px;
}
.timeline-node {
  position: relative;
  flex: 0 0 auto;
  width: 168px;
  padding: 30px 12px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--line-blood);
}
.timeline-node:first-child {
  border-top-color: transparent;
}
.timeline-node::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--line-blood) 0%, var(--line-blood) 100%);
}
.node-knot {
  position: absolute;
  top: -9px;
  left: 12px;
  width: 17px;
  height: 17px;
  background: var(--blood-deep);
  border: 1.5px solid var(--blood-bright);
  border-radius: 50% 50% 50% 4px;
  transform: rotate(45deg);
  box-shadow: 0 0 10px rgba(168, 27, 44, 0.45);
}
.node-knot::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--blood-bright);
  opacity: 0.55;
}
.node-time {
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--blood-bright);
}
.node-label {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--cold-1);
  letter-spacing: 0.01em;
}
.episodes-section {
  padding: 4px 0 2px;
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.episode-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 14px 12px 52px;
  background: linear-gradient(150deg, var(--ink-2) 0%, var(--indigo) 100%);
  border: 1px solid var(--line);
  border-left: 2px solid var(--cold-3);
  border-radius: 2px;
  min-width: 0;
}
.episode-card-active {
  background: linear-gradient(150deg, #1a0d13 0%, var(--indigo-2) 100%);
  border-left-color: var(--blood-bright);
  box-shadow: inset 0 0 0 1px rgba(168, 27, 44, 0.22);
}
.episode-ring {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 13px;
  color: var(--cold-1);
  border: 1.5px solid var(--cold-3);
  border-radius: 50%;
  border-right-color: transparent;
  transform: rotate(-32deg);
}
.episode-ring::after {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid var(--line);
  border-radius: 50%;
  border-bottom-color: transparent;
}
.episode-card-active .episode-ring {
  color: var(--blood-bright);
  border-color: var(--blood-bright);
  border-right-color: transparent;
  box-shadow: 0 0 10px rgba(168, 27, 44, 0.4);
}
.episode-title {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #d3d7de;
}
.episode-summary {
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--cold-2);
}
.episode-duration {
  align-self: flex-start;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--cold-3);
  border-top: 1px dotted rgba(141, 148, 160, 0.16);
  padding-top: 4px;
  margin-top: auto;
}
.cast-strip-section {
  padding: 4px 0 2px;
}
.cast-bar {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  align-items: start;
}
.cast-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 10px 6px;
  background: rgba(19, 28, 46, 0.44);
  border: 1px solid var(--line);
  border-radius: 2px;
  min-width: 0;
  text-align: center;
}
.cast-avatar {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 34%, rgba(141, 148, 160, 0.42) 0%, rgba(35, 39, 47, 0.9) 70%),
    var(--cold-4);
  border: 1px solid var(--cold-3);
  position: relative;
}
.cast-avatar::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -3px;
  width: 8px;
  height: 8px;
  transform: translateX(-50%) rotate(45deg);
  background: var(--blood-deep);
  border: 1px solid var(--blood-bright);
  border-radius: 50% 50% 50% 2px;
}
.cast-bar-name {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: #cfd4dc;
  white-space: nowrap;
}
.cast-bar-relation {
  font-size: 10.5px;
  line-height: 1.4;
  color: var(--cold-3);
  letter-spacing: 0.01em;
}
.cast-bar-item:hover {
  border-color: var(--line-blood);
}
.cast-bar-item:hover .cast-bar-name {
  color: #e3b7be;
}
.comments-section {
  padding: 4px 0 2px;
}
.comment-stack {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
  padding: 4px;
}
.comment-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 13px;
  background: linear-gradient(165deg, #14171f 0%, var(--indigo) 100%);
  border: 1px solid var(--line);
  border-radius: 1px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
  position: relative;
  min-width: 0;
}
.comment-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--blood-deep) 0%, rgba(125, 18, 32, 0.12) 70%, transparent 100%);
}
.comment-card:nth-child(4n + 1) {
  transform: rotate(-0.9deg);
}
.comment-card:nth-child(4n + 2) {
  transform: rotate(0.7deg) translateY(5px);
}
.comment-card:nth-child(4n + 3) {
  transform: rotate(-0.5deg) translateY(-3px);
}
.comment-card:nth-child(4n) {
  transform: rotate(1.1deg) translateY(3px);
}
.comment-nick {
  font-family: var(--serif);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: var(--blood-bright);
}
.comment-text {
  font-size: 12.5px;
  line-height: 1.72;
  color: var(--cold-1);
}
.recommend-region {
  padding: 6px 0 2px;
}
.recommend-grid {
  display: grid;
  gap: 10px;
}
.recommend-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.recommend-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
a.recommend-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--cold-1);
  text-decoration: none;
  min-width: 0;
  transition: border-color 0.2s, transform 0.2s;
}
a.recommend-card:hover {
  border-color: var(--line-blood);
  transform: translateY(-2px);
}
a.recommend-card img, [data-runtime="recommendation"] img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  background: var(--cold-4);
  border-radius: 1px;
  filter: saturate(0.78) brightness(0.86);
}
[data-runtime="recommendation"] [data-runtime="name"] {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #cfd4dc;
  line-height: 1.35;
}
[data-runtime="recommendation"] [data-runtime="blurb"] {
  font-size: 11.5px;
  line-height: 1.55;
  color: var(--cold-3);
}
.site-footer {
  margin-top: 30px;
  padding: 22px var(--pad) 30px;
  background: linear-gradient(180deg, var(--ink) 0%, #060709 100%);
  border-top: 1px solid var(--line);
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 62px;
  height: 3px;
  background: var(--blood-bright);
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.footer-disclaimer {
  font-size: 11.5px;
  line-height: 1.7;
  color: var(--cold-3);
  text-align: center;
  max-width: 760px;
}
.footer-nav {
  display: flex;
  gap: 18px;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-size: 12.5px;
  letter-spacing: 0.1em;
  color: var(--cold-2);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: #e3e6eb;
  border-bottom-color: var(--line-blood);
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 12px;
  padding-top: 10px;
  border-top: 1px dotted rgba(141, 148, 160, 0.14);
  width: 100%;
}
.friend-links-label {
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--cold-3);
}
a.runtime-friend-link {
  font-size: 11.5px;
  color: var(--cold-2);
  text-decoration: none;
  white-space: nowrap;
}
a.runtime-friend-link:hover {
  color: var(--blood-bright);
  text-decoration: underline;
}
@media (max-width: 1000px) {.overview-panel {
    grid-template-columns: minmax(0, 200px) minmax(0, 1fr);
    gap: 18px;
  }
.cast-bar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.comment-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.recommend-grid-4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }}
@media (max-width: 760px) {body {
    font-size: 13.5px;
  }
.page-main {
    padding: 0 12px 22px;
    gap: 12px;
  }
.header-inner {
    padding: 10px 12px;
  }
.hero-shell {
    margin: 12px 0 18px;
  }
.hero-image {
    height: 46vh;
    min-height: 260px;
  }
.hero-knot-mark {
    width: 160px;
    height: 160px;
    right: -32px;
    bottom: -26px;
  }
.hero-caption {
    left: 14px;
    bottom: 14px;
  }
.hero-caption-line {
    font-size: 13px;
    letter-spacing: 0.2em;
  }
.overview-panel {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    padding: 14px;
  }
.poster-column {
    position: static;
    max-width: 220px;
  }
.movie-title {
    font-size: 23px;
  }
.details-list {
    grid-template-columns: minmax(0, 1fr);
  }
.episode-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.cast-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.comment-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.recommend-grid-4, .recommend-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.player-controls {
    gap: 6px;
    padding: 8px 10px;
  }
.ctrl-progress {
    flex: 1 1 100%;
    order: -1;
  }
.ctrl-volume {
    flex: 0 1 68px;
  }
.ctrl-btn, .ctrl-speed {
    font-size: 11.5px;
    padding: 4px 9px;
  }}
@media (max-width: 480px) {.cast-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.comment-stack {
    grid-template-columns: minmax(0, 1fr);
  }
.recommend-grid-4, .recommend-grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }
.comment-card {
    transform: none !important;
  }
.timeline-node {
    width: 150px;
  }
.friend-links {
    gap: 5px 10px;
  }}

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}
