:root {
  --abyss: #05080f;
  --abyss-2: #080d18;
  --deep-blue: #0b1a2e;
  --deep-blue-2: #0e2138;
  --steel: #16324f;
  --champagne: #d8c9a0;
  --gold: #b8934a;
  --gold-dim: #8a6d33;
  --gold-bright: #e6c877;
  --ink: #dce4ee;
  --ink-dim: #8fa0b8;
  --ink-faint: #5a6b83;
  --line: rgba(184, 147, 74, 0.28);
  --line-soft: rgba(143, 160, 184, 0.14);
  --font-serif: "Songti SC", "SimSun", "Noto Serif SC", "Source Han Serif SC", Georgia, serif;
  --font-sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", Helvetica, Arial, sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  background-color: var(--abyss);
  background-image:
    radial-gradient(1200px 780px at 78% -12%, rgba(22, 50, 79, 0.55), transparent 62%),
    radial-gradient(880px 620px at 8% 22%, rgba(11, 26, 46, 0.85), transparent 68%),
    linear-gradient(180deg, #05080f 0%, #060a13 46%, #04070d 100%);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.62;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
  border: 0;
}
ul, ol {
  list-style: none;
}
a {
  color: var(--champagne);
  text-decoration: none;
}
h1, h2, h3 {
  font-weight: 400;
  line-height: 1.3;
}
button, input {
  font: inherit;
  color: inherit;
}
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
}
::selection {
  background: rgba(184, 147, 74, 0.4);
  color: #fff;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(180deg, rgba(5, 8, 15, 0.96), rgba(5, 8, 15, 0.82));
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.header-bar {
  max-width: 1440px;
  margin: 0 auto;
  padding: 9px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 20px;
}
a[data-contract="site-name"].site-brand {
  font-family: var(--font-serif);
  font-size: 19px;
  letter-spacing: 0.34em;
  color: var(--gold-bright);
  text-decoration: none;
  text-shadow: 0 0 18px rgba(230, 200, 119, 0.28);
  white-space: nowrap;
}
a[data-contract="site-name"].site-brand:hover {
  color: #fff;
  text-decoration: none;
}
.header-categories {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 4px 16px;
  min-width: 0;
}
a.runtime-category {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--ink-dim);
  text-decoration: none;
  white-space: nowrap;
  padding: 2px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease;
}
a.runtime-category:hover {
  color: var(--gold-bright);
  text-decoration: none;
  border-bottom-color: var(--gold);
}
.page-main {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px 26px;
}
.hero-shell {
  position: relative;
  padding-top: 16px;
}
.hero-visual {
  position: relative;
  background:
    radial-gradient(140% 100% at 50% 0%, rgba(14, 33, 56, 0.9), rgba(5, 8, 15, 0.98) 72%),
    linear-gradient(180deg, #08111f, #05080f);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  padding: 26px 26px 22px;
  display: grid;
  grid-template-columns: minmax(0, 236px) minmax(0, 1fr);
  grid-template-areas:
    "poster title"
    "poster seo";
  align-items: start;
  column-gap: 30px;
  row-gap: 12px;
  min-height: 0;
}
.poster-frame {
  grid-area: poster;
  width: 100%;
  max-width: 236px;
  aspect-ratio: 2 / 3;
  margin: 0;
  position: relative;
  border: 1px solid var(--line);
  background: var(--abyss-2);
  align-self: start;
}
.poster-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.06) brightness(0.96);
}
.hero-title-block {
  grid-area: title;
  align-self: end;
  position: relative;
  z-index: 3;
  padding-top: 34px;
}
.movie-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 4.4vw, 52px);
  font-weight: 400;
  letter-spacing: 0.16em;
  color: #f3ead4;
  text-shadow: 0 0 26px rgba(230, 200, 119, 0.32), 0 2px 14px rgba(0, 0, 0, 0.7);
}
.movie-tagline {
  margin-top: 10px;
  font-size: 12.5px;
  letter-spacing: 0.22em;
  color: var(--champagne);
  opacity: 0.86;
}
.movie-seo {
  grid-area: seo;
  align-self: start;
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--ink-faint);
  text-transform: uppercase;
}
.hero-vessel {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.hull-light {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 244, 214, 0.95) 0%, rgba(230, 200, 119, 0.5) 34%, rgba(184, 147, 74, 0) 72%);
  filter: blur(0.6px);
  animation: hullPulse 5.6s ease-in-out infinite;
}
.hull-light-fore {
  width: 120px;
  height: 120px;
  top: 34%;
  left: 30%;
  opacity: 0.85;
}
.hull-light-mid {
  width: 168px;
  height: 168px;
  top: 46%;
  left: 48%;
  opacity: 0.7;
  animation-delay: 1.4s;
}
.hull-light-aft {
  width: 104px;
  height: 104px;
  top: 60%;
  left: 70%;
  opacity: 0.6;
  animation-delay: 2.6s;
}
@keyframes hullPulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 0.95; transform: scale(1.08); }
}
.bokeh {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 42% 38%, rgba(255, 250, 233, 0.9), rgba(216, 201, 160, 0.34) 42%, rgba(216, 201, 160, 0) 70%);
  filter: blur(3px);
  opacity: 0.5;
  animation: bokehDrift 14s ease-in-out infinite;
}
.bokeh-a {
  width: 74px;
  height: 74px;
  top: 12%;
  left: 42%;
}
.bokeh-b {
  width: 46px;
  height: 46px;
  top: 26%;
  left: 8%;
  opacity: 0.38;
  animation-delay: 2s;
}
.bokeh-c {
  width: 96px;
  height: 96px;
  top: 66%;
  left: 22%;
  opacity: 0.3;
  animation-delay: 4.5s;
}
.bokeh-d {
  width: 58px;
  height: 58px;
  top: 18%;
  right: 12%;
  left: auto;
  opacity: 0.42;
  animation-delay: 6.2s;
}
@keyframes bokehDrift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(6px, -8px, 0) scale(1.1); }
}
.hero-player-slot {
  position: relative;
  margin-top: 12px;
  width: 100%;
  max-width: none;
  min-width: 0;
  border: 1px solid var(--line-soft);
  background: #03060b;
  padding: 0;
}
.hero-player-slot video {
  display: block;
  width: 100%;
  max-width: 100%;
  background: #000;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  padding: 8px 10px;
  border-top: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(11, 26, 46, 0.55), rgba(4, 7, 13, 0.9));
}
.ctrl-btn {
  appearance: none;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink-dim);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.16s ease, border-color 0.16s ease, background-color 0.16s ease;
}
.ctrl-btn:hover {
  color: var(--gold-bright);
  border-color: var(--gold);
  background: rgba(184, 147, 74, 0.08);
}
.ctrl-range {
  height: 3px;
  background: rgba(143, 160, 184, 0.22);
  cursor: pointer;
  border: 0;
  outline: none;
}
.ctrl-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold-bright);
  border: 0;
  box-shadow: 0 0 8px rgba(230, 200, 119, 0.7);
}
.ctrl-range::-moz-range-thumb {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold-bright);
  border: 0;
}
.ctrl-progress {
  flex: 1 1 160px;
  min-width: 120px;
}
.ctrl-volume {
  flex: 0 1 96px;
  min-width: 72px;
}
.hero-player-slot.play .ctrl-btn[data-player-action="play"], .hero-player-slot.is-playing .ctrl-btn[data-player-action="play"] {
  color: var(--gold-bright);
  border-color: var(--gold);
}
.hero-player-slot.mute .ctrl-btn[data-player-action="mute"], .hero-player-slot.is-muted .ctrl-btn[data-player-action="mute"] {
  color: #e08a6a;
  border-color: rgba(224, 138, 106, 0.6);
}
.hero-player-slot.speed .ctrl-btn[data-player-action="speed"], .hero-player-slot.is-speed-alt .ctrl-btn[data-player-action="speed"] {
  color: var(--gold-bright);
  border-color: var(--gold);
}
.hero-player-slot.pip .ctrl-btn[data-player-action="pip"], .hero-player-slot.is-pip .ctrl-btn[data-player-action="pip"] {
  color: var(--gold-bright);
  border-color: var(--gold);
}
.hero-player-slot.fullscreen .ctrl-btn[data-player-action="fullscreen"], .hero-player-slot.is-fullscreen .ctrl-btn[data-player-action="fullscreen"] {
  color: var(--gold-bright);
  border-color: var(--gold);
}
.hero-player-slot.theater .ctrl-btn[data-player-action="theater"], .hero-player-slot.is-theater .ctrl-btn[data-player-action="theater"] {
  color: var(--gold-bright);
  border-color: var(--gold);
}
.hero-player-slot.light .ctrl-btn[data-player-action="light"], .hero-player-slot.is-lights-off .ctrl-btn[data-player-action="light"] {
  color: var(--gold-bright);
  border-color: var(--gold);
}
.hero-player-slot.progress .ctrl-progress {
  background: rgba(230, 200, 119, 0.4);
}
.hero-player-slot.timeupdate .ctrl-progress, .hero-player-slot.volume .ctrl-volume, .hero-player-slot.input .ctrl-range {
  accent-color: var(--gold-bright);
}
.hero-player-slot.is-theater, .theater-mode .hero-player-slot {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(184, 147, 74, 0.35), 0 0 40px rgba(184, 147, 74, 0.12);
}
.hero-player-slot.is-fullscreen {
  background: #000;
  padding: 0;
  border: 0;
}
.hero-player-slot.is-fullscreen video {
  height: calc(100vh - 42px);
  object-fit: contain;
}
.hero-player-slot.is-fullscreen .player-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(3, 6, 11, 0.86);
  border-top: 1px solid var(--line);
}
.hero-player-slot.is-lights-off {
  border-color: var(--gold-dim);
}
body.lights-off, body.lights-off .site-header {
  background-color: #010204;
}
body.lights-off .hero-visual {
  filter: brightness(0.72);
}
body.theater-mode .hero-visual {
  opacity: 0.5;
}
.overview-body {
  margin-top: 14px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
  grid-template-areas:
    "details status"
    "synopsis synopsis"
    "cast cast";
  gap: 14px 22px;
  align-items: start;
}
.block-heading {
  font-family: var(--font-serif);
  font-size: 14px;
  letter-spacing: 0.28em;
  color: var(--gold);
  padding-bottom: 6px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.block-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 42px;
  height: 1px;
  background: var(--gold-bright);
}
.details-block {
  grid-area: details;
  min-width: 0;
}
.details-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0;
  border-top: 1px solid var(--line-soft);
}
.detail-cell {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 7px 12px 7px 0;
  border-bottom: 1px solid var(--line-soft);
  min-width: 0;
}
.detail-label {
  flex: 0 0 auto;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-faint);
}
.detail-value {
  flex: 1 1 auto;
  min-width: 0;
  font-family: var(--font-serif);
  font-size: 13.5px;
  color: var(--ink);
  letter-spacing: 0.04em;
  word-break: break-word;
}
.episode-status-block {
  grid-area: status;
  min-width: 0;
  padding-left: 18px;
  border-left: 1px solid var(--line-soft);
}
.status-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px solid var(--line-soft);
}
.status-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-faint);
}
.status-value {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--gold-bright);
  letter-spacing: 0.06em;
}
.status-note {
  margin-top: 10px;
  font-size: 12px;
  color: var(--ink-dim);
  line-height: 1.7;
}
.synopsis-block {
  grid-area: synopsis;
  min-width: 0;
}
.synopsis-text {
  font-size: 13px;
  line-height: 1.86;
  color: var(--ink-dim);
  text-indent: 2em;
  margin-bottom: 6px;
}
.synopsis-text:last-child {
  margin-bottom: 0;
}
.cast-block {
  grid-area: cast;
  min-width: 0;
}
.cast-strip {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dim) transparent;
}
.cast-strip::-webkit-scrollbar {
  height: 5px;
}
.cast-strip::-webkit-scrollbar-track {
  background: rgba(143, 160, 184, 0.1);
}
.cast-strip::-webkit-scrollbar-thumb {
  background: var(--gold-dim);
}
.cast-item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 9px;
  padding-right: 14px;
  border-right: 1px solid var(--line-soft);
}
.cast-item:last-child {
  border-right: 0;
  padding-right: 0;
}
.cast-media {
  margin: 0;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  background: var(--abyss-2);
}
.cast-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.95);
}
.cast-name {
  font-family: var(--font-serif);
  font-size: 13.5px;
  letter-spacing: 0.14em;
  color: var(--ink);
  white-space: nowrap;
}
.timeline-section {
  margin-top: 20px;
  min-width: 0;
}
.timeline-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0 26px;
  border-top: 1px solid var(--line-soft);
}
.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 52px 14px minmax(0, 1fr);
  align-items: center;
  column-gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line-soft);
  min-width: 0;
}
.timeline-item::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 62px;
  width: 1px;
  background: linear-gradient(180deg, rgba(184, 147, 74, 0.55), rgba(184, 147, 74, 0.12));
}
.timeline-time {
  font-family: var(--font-serif);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-align: right;
}
.timeline-node {
  position: relative;
  z-index: 1;
  width: 7px;
  height: 7px;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--abyss);
  border: 1px solid var(--gold-bright);
  box-shadow: 0 0 10px rgba(230, 200, 119, 0.45);
}
.timeline-label {
  font-size: 12.5px;
  color: var(--ink-dim);
  letter-spacing: 0.06em;
  min-width: 0;
  overflow-wrap: break-word;
}
.episodes-section {
  margin-top: 20px;
  min-width: 0;
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 0;
  border-top: 1px solid var(--line-soft);
  border-left: 1px solid var(--line-soft);
}
.episode-cell {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas:
    "number title"
    "summary summary"
    "duration badge";
  align-items: baseline;
  column-gap: 10px;
  row-gap: 3px;
  padding: 10px 12px 11px;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  min-width: 0;
}
.episode-number {
  grid-area: number;
  font-family: var(--font-serif);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  color: var(--gold);
  white-space: nowrap;
}
.episode-title {
  grid-area: title;
  font-family: var(--font-serif);
  font-size: 14.5px;
  letter-spacing: 0.1em;
  color: var(--ink);
  min-width: 0;
  overflow-wrap: break-word;
}
.episode-summary {
  grid-area: summary;
  font-size: 12px;
  line-height: 1.66;
  color: var(--ink-faint);
  overflow-wrap: break-word;
}
.episode-duration {
  grid-area: duration;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-faint);
  white-space: nowrap;
}
.episode-badge {
  grid-area: badge;
  justify-self: end;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: var(--gold-bright);
  border: 1px solid var(--gold);
  padding: 0 7px;
  line-height: 1.6;
  white-space: nowrap;
}
.episode-cell-active {
  background: linear-gradient(180deg, rgba(184, 147, 74, 0.1), rgba(184, 147, 74, 0.02));
  outline: 1px solid var(--gold);
  outline-offset: -1px;
}
.episode-cell-active .episode-title {
  color: var(--gold-bright);
}
.episode-cell-active .episode-summary {
  color: var(--ink-dim);
}
.episode-cell-active .episode-number {
  color: var(--gold-bright);
}
.comments-section {
  margin-top: 20px;
  min-width: 0;
}
.comment-list {
  border-top: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 0 26px;
}
.comment-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
  min-width: 0;
}
.comment-media {
  margin: 0;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line-soft);
  background: var(--abyss-2);
}
.comment-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) brightness(0.92);
}
.comment-body {
  min-width: 0;
  flex: 1 1 auto;
}
.comment-meta {
  margin-bottom: 2px;
}
.comment-nickname {
  font-family: var(--font-serif);
  font-size: 12.5px;
  letter-spacing: 0.12em;
  color: var(--gold);
}
.comment-text {
  font-size: 12.5px;
  line-height: 1.72;
  color: var(--ink-dim);
  overflow-wrap: break-word;
}
.recommend-region {
  margin-top: 22px;
  min-width: 0;
}
.recommend-heading {
  font-family: var(--font-serif);
  font-size: 14px;
  letter-spacing: 0.24em;
  color: var(--gold);
  padding-bottom: 6px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.recommend-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 42px;
  height: 1px;
  background: var(--gold-bright);
}
.recommend-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
a.recommend-item {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 10px;
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(11, 26, 46, 0.42), rgba(5, 8, 15, 0.6));
  color: var(--ink-dim);
  text-decoration: none;
  align-self: start;
  min-width: 0;
  transition: border-color 0.18s ease, background-color 0.18s ease;
}
a.recommend-item:hover {
  border-color: var(--gold);
  text-decoration: none;
  background: linear-gradient(180deg, rgba(14, 33, 56, 0.6), rgba(5, 8, 15, 0.75));
}
[data-runtime="recommendation"] img {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--line-soft);
  filter: saturate(0.88) brightness(0.94);
}
a.recommend-item [data-runtime="name"] {
  font-family: var(--font-serif);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--ink);
  overflow-wrap: break-word;
}
a.recommend-item [data-runtime="blurb"] {
  font-size: 11.5px;
  line-height: 1.66;
  color: var(--ink-faint);
  overflow-wrap: break-word;
}
.site-footer {
  margin-top: 26px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(6, 10, 19, 0.9), rgba(3, 5, 10, 1));
}
.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 16px 20px 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 10px 26px;
  align-items: start;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
}
a[data-contract="footer-home"].footer-link, a[data-contract="footer-sitemap"].footer-link {
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--champagne);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}
a[data-contract="footer-home"].footer-link:hover, a[data-contract="footer-sitemap"].footer-link:hover {
  color: var(--gold-bright);
  text-decoration: none;
  border-bottom-color: var(--gold);
}
.footer-disclaimer {
  grid-column: 1 / -1;
  font-size: 11.5px;
  line-height: 1.74;
  color: var(--ink-faint);
  max-width: 900px;
}
.footer-friends {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 14px;
  padding-top: 8px;
  border-top: 1px solid var(--line-soft);
}
.friends-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gold-dim);
  white-space: nowrap;
}
a.runtime-friend-link {
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  white-space: nowrap;
}
a.runtime-friend-link:hover {
  color: var(--champagne);
  text-decoration: none;
  border-bottom-color: var(--line);
}
@media (max-width: 1024px) {.overview-body {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
.details-row {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }}
@media (max-width: 860px) {.hero-visual {
    grid-template-columns: minmax(0, 180px) minmax(0, 1fr);
    column-gap: 20px;
  }
.poster-frame {
    max-width: 180px;
  }
.overview-body {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "details"
      "status"
      "synopsis"
      "cast";
    gap: 16px;
  }
.episode-status-block {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line-soft);
    padding-top: 12px;
  }
.recommend-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.footer-inner {
    grid-template-columns: minmax(0, 1fr);
  }}
@media (max-width: 620px) {body {
    font-size: 13.5px;
  }
.header-bar {
    padding: 8px 14px;
    gap: 6px 12px;
  }
a[data-contract="site-name"].site-brand {
    font-size: 16px;
    letter-spacing: 0.24em;
  }
.header-categories {
    justify-content: flex-start;
    gap: 2px 12px;
  }
.page-main {
    padding: 0 14px 22px;
  }
.hero-visual {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "poster"
      "title"
      "seo";
    row-gap: 14px;
    padding: 18px 16px 16px;
  }
.poster-frame {
    width: 100%;
    max-width: 210px;
  }
.hero-title-block {
    padding-top: 0;
  }
.movie-title {
    font-size: clamp(24px, 8vw, 34px);
    letter-spacing: 0.1em;
  }
.movie-tagline {
    font-size: 11.5px;
    letter-spacing: 0.16em;
  }
.player-controls {
    gap: 6px;
    padding: 8px;
  }
.ctrl-btn {
    font-size: 11px;
    padding: 4px 8px;
  }
.ctrl-progress {
    flex: 1 1 100%;
    min-width: 0;
    order: -1;
  }
.ctrl-volume {
    flex: 1 1 84px;
    min-width: 60px;
  }
.details-row {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  }
.timeline-list {
    grid-template-columns: minmax(0, 1fr);
  }
.episode-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.comment-list {
    grid-template-columns: minmax(0, 1fr);
  }
.recommend-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.footer-inner {
    padding: 14px 14px 20px;
  }}
@media (max-width: 420px) {.ctrl-btn[data-player-action="pip"], .ctrl-btn[data-player-action="theater"] {
    font-size: 10.5px;
    padding: 4px 6px;
  }
.cast-media {
    width: 40px;
    height: 40px;
  }}
@media (prefers-reduced-motion: reduce) {.hull-light, .bokeh {
    animation: 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}
