:root {
  --ink: #0a1417;
  --ink-2: #0f1e22;
  --ink-3: #163036;
  --tile: #1b3a40;
  --fog: #2c5560;
  --fog-soft: #3d6b74;
  --mist: #6f98a0;
  --pale: #9fbcc2;
  --white: #f4f8f8;
  --white-dim: #d7e4e6;
  --accent: #7fb3b8;
  --line: rgba(159, 188, 194, 0.22);
  --line-strong: rgba(159, 188, 194, 0.4);
  --serif: "Songti SC", "STSong", "SimSun", "Noto Serif CJK SC", Georgia, serif;
  --sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", system-ui, sans-serif;
  --r-card: 3px;
  --r-pill: 2px;
  --gap: 12px;
  --pad: 14px;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  background-color: var(--ink);
  background-image:
    radial-gradient(120% 80% at 70% -10%, rgba(61, 107, 116, 0.45) 0%, rgba(10, 20, 23, 0) 60%),
    radial-gradient(90% 60% at 10% 10%, rgba(44, 85, 96, 0.35) 0%, rgba(10, 20, 23, 0) 55%),
    linear-gradient(180deg, #0d1c20 0%, #0a1417 40%, #081013 100%);
  background-attachment: fixed;
  color: var(--pale);
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.01em;
}
img, video {
  display: block;
  max-width: 100%;
}
ul, ol, dl, dd, h1, h2, h3, p {
  margin: 0;
  padding: 0;
}
ul, ol {
  list-style: none;
}
a {
  color: var(--mist);
  text-decoration: none;
}
button, input {
  font: inherit;
  color: inherit;
}
h1, h2, h3 {
  font-weight: 500;
  line-height: 1.25;
}
::selection {
  background: rgba(127, 179, 184, 0.35);
  color: var(--white);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(180deg, rgba(10, 20, 23, 0.92) 0%, rgba(10, 20, 23, 0.78) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 14px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 9px 16px;
}
a[data-contract="site-name"] {
  color: var(--white);
  text-decoration: none;
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.14em;
  white-space: nowrap;
}
a[data-contract="site-name"]:hover {
  color: var(--white-dim);
}
.category-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 12px;
  min-width: 0;
}
a.runtime-category {
  color: var(--mist);
  text-decoration: none;
  white-space: nowrap;
  font-size: 12px;
  letter-spacing: 0.06em;
  padding-bottom: 1px;
  border-bottom: 1px solid transparent;
}
a.runtime-category:hover {
  color: var(--white);
  border-bottom-color: var(--line-strong);
}
.page-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px 34px;
}
.section-heading {
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.18em;
  color: var(--white-dim);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 12px;
}
.movie-overview {
  display: block;
  padding-top: 18px;
}
.hero-prop {
  display: grid;
  grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.hero-prop::before {
  content: "";
  position: absolute;
  inset: -40px -18vw auto -18vw;
  height: 420px;
  z-index: -1;
  background:
    radial-gradient(60% 70% at 30% 20%, rgba(61, 107, 116, 0.5) 0%, rgba(10, 20, 23, 0) 70%),
    linear-gradient(180deg, rgba(44, 85, 96, 0.35) 0%, rgba(10, 20, 23, 0) 100%);
  pointer-events: none;
}
.poster-shell {
  position: relative;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--ink-3);
  aspect-ratio: 2 / 3;
  box-shadow: 0 18px 40px -22px rgba(0, 0, 0, 0.9);
}
.poster-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.04) brightness(0.96);
}
.hero-titles {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.movie-title {
  font-family: var(--serif);
  font-size: clamp(22px, 3.4vw, 34px);
  letter-spacing: 0.08em;
  color: var(--white);
  line-height: 1.2;
}
.movie-tagline {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--fog-soft);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.player-shell {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  background: #06100f;
  padding: 6px;
  min-width: 0;
}
.player-shell.player-theater {
  border-color: var(--line-strong);
  box-shadow: 0 0 0 1px rgba(127, 179, 184, 0.25), 0 24px 60px -30px #000;
}
.player-shell.player-lights-off {
  background: #000;
}
.movie-player {
  display: block;
  width: 100%;
  background: #000;
  border-radius: 2px;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
}
.player-btn {
  appearance: none;
  background: rgba(27, 58, 64, 0.6);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  color: var(--pale);
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 3px 9px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.player-btn:hover {
  background: rgba(61, 107, 116, 0.7);
  color: var(--white);
}
.player-btn.is-active {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}
.player-range {
  appearance: none;
  -webkit-appearance: none;
  height: 3px;
  background: rgba(159, 188, 194, 0.28);
  border-radius: 2px;
  cursor: pointer;
}
.player-progress {
  flex: 1 1 140px;
  min-width: 90px;
}
.player-volume {
  flex: 0 1 82px;
  min-width: 60px;
}
.player-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--white);
  border: none;
}
.player-range::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
  background: var(--white);
}
.player-shell.player-muted .player-volume {
  opacity: 0.55;
}
.episode-status {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.status-line {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--white-dim);
  display: inline-block;
  padding: 2px 10px;
  border-left: 2px solid var(--white);
  background: rgba(27, 58, 64, 0.35);
}
.cast-strip {
  padding: 16px 0 0;
}
.cast-rail {
  display: flex;
  gap: var(--gap);
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}
.cast-card {
  flex: 0 0 auto;
  width: 172px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  background: linear-gradient(160deg, rgba(27, 58, 64, 0.5) 0%, rgba(15, 30, 34, 0.6) 100%);
}
.cast-card::before {
  content: "";
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 34%, rgba(244, 248, 248, 0.22) 0%, rgba(244, 248, 248, 0) 60%),
    linear-gradient(160deg, #23494f 0%, #0d1c20 100%);
  border: 1px solid var(--line-strong);
}
.cast-name {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--white);
}
.cast-note {
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--mist);
}
.synopsis-block {
  padding: 18px 0 0;
}
.synopsis-para {
  font-size: 12.5px;
  line-height: 1.75;
  color: var(--pale);
  max-width: 74ch;
}
.synopsis-para + .synopsis-para {
  margin-top: 8px;
}
.details-card {
  margin-top: 18px;
  padding: var(--pad);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  background: linear-gradient(180deg, rgba(22, 48, 54, 0.55) 0%, rgba(10, 20, 23, 0.6) 100%);
}
.details-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1px 0;
}
.detail-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 5px 10px 5px 0;
  border-bottom: 1px solid var(--line);
  min-width: 0;
}
.detail-key {
  flex: 0 0 auto;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--fog-soft);
}
.detail-value {
  font-size: 12.5px;
  color: var(--white-dim);
  min-width: 0;
  word-break: break-word;
}
.timeline-section {
  margin-top: 26px;
}
.timeline-rail {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 4px 0 12px;
  -webkit-overflow-scrolling: touch;
  position: relative;
}
.timeline-node {
  flex: 0 0 auto;
  width: 190px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 14px 0 0;
  position: relative;
}
.timeline-node::after {
  content: "";
  position: absolute;
  top: 19px;
  left: 40px;
  right: 0;
  height: 1px;
  background: var(--line);
}
.timeline-node:last-child::after {
  display: none;
}
.timeline-thumb {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(circle at 36% 32%, rgba(244, 248, 248, 0.24) 0%, rgba(244, 248, 248, 0) 58%),
    linear-gradient(150deg, #24505a 0%, #0b171a 100%);
  position: relative;
  z-index: 1;
}
.timeline-time {
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--white);
}
.timeline-label {
  font-size: 11.5px;
  line-height: 1.55;
  color: var(--pale);
}
.episodes-section {
  margin-top: 26px;
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  overflow: hidden;
}
.episode-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 11px 12px 12px;
  background: linear-gradient(180deg, rgba(22, 48, 54, 0.5) 0%, rgba(10, 20, 23, 0.72) 100%);
  min-width: 0;
}
.episode-number {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--fog-soft);
}
.episode-title {
  font-family: var(--serif);
  font-size: 13.5px;
  letter-spacing: 0.06em;
  color: var(--white);
}
.episode-hook {
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--pale);
  flex: 1 1 auto;
}
.episode-duration {
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--mist);
  padding-top: 4px;
  border-top: 1px solid var(--line);
}
.comments-section {
  margin-top: 26px;
}
.comment-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
}
.comment-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 11px 14px 11px 0;
  border-bottom: 1px solid var(--line);
  min-width: 0;
}
.comment-avatar {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-top: 2px;
  background:
    radial-gradient(circle at 36% 32%, rgba(244, 248, 248, 0.2) 0%, rgba(244, 248, 248, 0) 60%),
    linear-gradient(150deg, #22484f 0%, #0c191c 100%);
  border: 1px solid var(--line);
}
.comment-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.comment-nick {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--fog-soft);
}
.comment-text {
  font-size: 12px;
  line-height: 1.65;
  color: var(--white-dim);
}
.recommend-region {
  margin-top: 26px;
}
.region-heading {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--white-dim);
  text-align: left;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 11px;
}
.recommend-grid {
  display: grid;
  gap: 10px;
  align-items: start;
}
.recommend-grid-2x2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.recommend-grid-3x2 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
a.recommend-card {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  background: linear-gradient(180deg, rgba(27, 58, 64, 0.42) 0%, rgba(10, 20, 23, 0.66) 100%);
  color: inherit;
  text-decoration: none;
  min-width: 0;
  transition: border-color 0.15s ease, background 0.15s ease;
}
a.recommend-card:hover {
  border-color: var(--line-strong);
  background: linear-gradient(180deg, rgba(44, 85, 96, 0.5) 0%, rgba(10, 20, 23, 0.7) 100%);
}
.recommend-media {
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 2px;
  background: var(--ink-3);
}
[data-runtime="recommendation"] img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  display: block;
  filter: saturate(0.85) contrast(1.03) brightness(0.95);
}
.recommend-name {
  font-family: var(--serif);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--white);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.recommend-blurb {
  font-size: 11px;
  line-height: 1.55;
  color: var(--mist);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.site-footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(10, 20, 23, 0.4) 0%, rgba(6, 13, 15, 0.9) 100%);
}
.footer-top {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 16px 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 18px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  color: var(--white-dim);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.1em;
  border-bottom: 1px solid transparent;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: var(--white);
  border-bottom-color: var(--line-strong);
}
.footer-disclaimer {
  font-size: 11px;
  line-height: 1.6;
  color: var(--fog-soft);
  max-width: 82ch;
}
.friend-links {
  max-width: 1180px;
  margin: 0 auto;
  padding: 8px 16px 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 14px;
  border-top: 1px solid var(--line);
  margin-top: 6px;
}
.friend-links-label {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--fog-soft);
  white-space: nowrap;
}
a.runtime-friend-link {
  color: var(--mist);
  text-decoration: none;
  font-size: 11.5px;
  white-space: nowrap;
}
a.runtime-friend-link:hover {
  color: var(--white);
  text-decoration: underline;
}
@media (max-width: 960px) {.hero-prop {
    grid-template-columns: minmax(0, 210px) minmax(0, 1fr);
    gap: 16px;
  }
.episode-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.comment-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.recommend-grid-3x2 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }}
@media (max-width: 720px) {.hero-prop {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }
.poster-shell {
    max-width: 220px;
  }
.episode-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.comment-stack {
    grid-template-columns: minmax(0, 1fr);
  }
.recommend-grid-2x2, .recommend-grid-3x2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.cast-card {
    width: 156px;
  }
.timeline-node {
    width: 168px;
  }}
@media (max-width: 480px) {.page-main {
    padding: 0 12px 26px;
  }
.header-inner {
    padding: 8px 12px;
  }
.recommend-grid-2x2, .recommend-grid-3x2 {
    grid-template-columns: minmax(0, 1fr);
  }
.episode-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.details-list {
    grid-template-columns: minmax(0, 1fr);
  }
.footer-top, .friend-links {
    padding-left: 12px;
    padding-right: 12px;
  }}

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}
