*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body, h1, h2, h3, p, ul, ol, li, dl, dt, dd {
  margin: 0;
  padding: 0;
}
ul, ol {
  list-style: none;
}
img, video {
  display: block;
  max-width: 100%;
}
button, input, select {
  font: inherit;
  color: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
:root {
  --bg: #0a0c12;
  --bg-soft: #10131c;
  --bg-panel: #0d1017;
  --bg-elev: #141824;
  --ink: #ece7de;
  --ink-dim: #9ba0ad;
  --ink-faint: #6b7180;
  --line: #232838;
  --wine: #6e1526;
  --wine-bright: #a01f36;
  --wine-deep: #3d0c16;
  --cool: #3b5a86;
  --cool-bright: #5d8bc4;
  --cool-deep: #14202f;
  --card: #161a26;
  --mono: "SFMono-Regular", "Roboto Mono", "Courier New", monospace;
}
html {
  background: var(--bg);
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.45;
  letter-spacing: 0.01em;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(10, 12, 18, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
a[data-contract="site-name"] {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--ink);
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  padding-right: 14px;
  border-right: 1px solid var(--line);
}
a[data-contract="site-name"]:hover {
  color: var(--cool-bright);
}
.categories-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 4px;
  min-width: 0;
  flex: 1 1 240px;
}
a.runtime-category {
  display: inline-block;
  white-space: nowrap;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-dim);
  text-decoration: none;
  padding: 3px 9px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--bg-soft);
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
a.runtime-category:hover, a.runtime-category:focus-visible {
  color: var(--ink);
  border-color: var(--wine-bright);
  background: var(--wine-deep);
}
.page-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px 40px;
}
.page-main > section + section {
  border-top: 1px solid var(--line);
  margin-top: 22px;
  padding-top: 18px;
}
.section-heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--ink-dim);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-heading::before {
  content: "";
  width: 3px;
  height: 11px;
  background: var(--wine-bright);
  flex: none;
}
.hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  padding: 24px 0 4px;
}
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.poster-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--cool-deep);
  border: 1px solid var(--line);
}
.poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.06) brightness(0.92);
}
.monitor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  padding: 4px;
  background: #05070c;
  border: 1px solid var(--line);
}
.monitor-cell {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(160deg, #16202f 0%, #0b1220 60%, #060a12 100%);
  border: 1px solid #1a2233;
  overflow: hidden;
}
.monitor-cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(120, 160, 210, 0.07) 0px,
    rgba(120, 160, 210, 0.07) 1px,
    transparent 1px,
    transparent 3px
  );
}
.monitor-cell-focus {
  background: linear-gradient(150deg, #3a0e1a 0%, #1c0a12 55%, #0a0e18 100%);
  border-color: var(--wine);
  box-shadow: 0 0 0 1px rgba(160, 31, 54, 0.5), 0 0 12px rgba(160, 31, 54, 0.35);
}
.monitor-cell-focus::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 58%;
  width: 36%;
  height: 30%;
  transform: translate(-50%, 0);
  border-radius: 50% 50% 12% 12%;
  background: rgba(220, 190, 180, 0.16);
}
.hero-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.movie-title {
  font-size: 27px;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.15;
  color: var(--ink);
}
.movie-tagline {
  font-size: 13px;
  color: var(--cool-bright);
  letter-spacing: 0.12em;
  border-left: 2px solid var(--wine-bright);
  padding-left: 9px;
}
.player-shell {
  position: relative;
  width: 100%;
  max-width: 100%;
  background: #04060a;
  border: 1px solid var(--line);
}
.player-shell video {
  display: block;
  width: 100%;
  background: #000;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 6px;
  padding: 6px 8px;
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
}
.ctrl-btn {
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--ink);
  background: #1d2230;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 3px 9px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.ctrl-btn:hover {
  background: #262d3e;
  border-color: #333c52;
}
.ctrl-btn.is-active, .ctrl-btn.is-playing {
  background: var(--wine);
  border-color: var(--wine-bright);
  color: #f6ecec;
}
.ctrl-play {
  font-weight: 700;
  color: var(--ink);
}
.ctrl-theater, .ctrl-light {
  color: var(--ink-dim);
}
.ctrl-progress {
  -webkit-appearance: none;
  appearance: none;
  flex: 1 1 140px;
  min-width: 90px;
  height: 3px;
  background: #2a3145;
  border-radius: 2px;
  cursor: pointer;
}
.ctrl-progress::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--wine-bright);
  border: none;
}
.ctrl-progress::-moz-range-thumb {
  width: 11px;
  height: 11px;
  border: none;
  border-radius: 50%;
  background: var(--wine-bright);
}
.ctrl-volume {
  -webkit-appearance: none;
  appearance: none;
  flex: 0 1 70px;
  width: 70px;
  height: 3px;
  background: #2a3145;
  border-radius: 2px;
  cursor: pointer;
}
.ctrl-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cool-bright);
  border: none;
}
.ctrl-volume::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
  background: var(--cool-bright);
}
.ctrl-speed {
  font-size: 11px;
  background: #1d2230;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 3px 4px;
  cursor: pointer;
}
.player-shell.theater-mode {
  max-width: 100%;
  box-shadow: 0 0 0 1px var(--wine-bright), 0 12px 34px rgba(0, 0, 0, 0.6);
}
.player-shell.lights-off {
  background: #000;
}
.player-shell.lights-off .player-controls {
  background: #05070c;
  border-top-color: #12161f;
}
.cast-section {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.cast-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 8px 12px;
  align-items: start;
}
.cast-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 9px;
  row-gap: 1px;
  align-items: center;
}
.cast-avatar {
  grid-row: 1 / span 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, #4a5872 0%, #1a2233 58%, #0c111c 100%);
  border: 1px solid #2c354a;
  flex: none;
}
.cast-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.04em;
  align-self: end;
}
.cast-note {
  font-size: 11px;
  color: var(--ink-faint);
  line-height: 1.3;
  align-self: start;
}
.synopsis-section {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.synopsis-body {
  columns: 2;
  column-gap: 26px;
  column-rule: 1px solid var(--line);
}
.synopsis-para {
  font-size: 12.5px;
  line-height: 1.62;
  color: #c8c3ba;
  margin-bottom: 9px;
  break-inside: avoid;
}
.synopsis-para:last-child {
  margin-bottom: 0;
}
.episode-status {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.episode-status .section-heading {
  margin-bottom: 2px;
}
.status-line {
  font-size: 12.5px;
  color: var(--ink-dim);
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.status-line::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--wine-bright);
  box-shadow: 0 0 8px rgba(160, 31, 54, 0.9);
  flex: none;
}
.details-section {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.detail-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0 24px;
  align-content: start;
}
.detail-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 3px 0;
  border-bottom: 1px dotted #202634;
}
.detail-key {
  font-size: 11.5px;
  color: var(--ink-faint);
  letter-spacing: 0.1em;
  flex: none;
}
.detail-val {
  font-size: 12.5px;
  color: var(--ink);
  text-align: right;
  letter-spacing: 0.02em;
}
.timeline-section {
  padding-bottom: 4px;
}
.timeline-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0;
  align-items: start;
}
.timeline-track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 7px;
  height: 1px;
  background: linear-gradient(to right, transparent, #3a4356 8%, #3a4356 92%, transparent);
  z-index: 0;
}
.timeline-node {
  position: relative;
  padding: 26px 12px 6px 0;
  z-index: 1;
}
.timeline-dot {
  position: absolute;
  top: 3px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--wine-bright);
  box-shadow: 0 0 0 3px rgba(110, 21, 38, 0.28), 0 0 10px rgba(160, 31, 54, 0.7);
  background-image: radial-gradient(circle at 30% 30%, #e07a8a 0%, var(--wine-bright) 45%, var(--wine-deep) 100%);
}
.timeline-timecode {
  display: block;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  color: var(--cool-bright);
  margin-bottom: 2px;
}
.timeline-label {
  display: block;
  font-size: 12px;
  color: #c2bdb4;
  line-height: 1.4;
  border-left: 1px solid var(--line);
  padding-left: 8px;
  transition: color 0.15s, border-color 0.15s;
}
.timeline-node:hover .timeline-label {
  color: var(--ink);
  border-left-color: var(--wine-bright);
}
.timeline-node:hover {
  background: linear-gradient(180deg, rgba(160, 31, 54, 0.06), transparent 70%);
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.episode-card {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 8px;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  transition: border-color 0.15s, background 0.15s;
}
.episode-card:hover {
  border-color: var(--wine);
  background: #12141d;
}
.episode-thumb {
  width: 88px;
  aspect-ratio: 16 / 9;
  background: linear-gradient(145deg, #1b2434 0%, #0d1220 62%, #090c14 100%);
  border: 1px solid #1f2736;
  position: relative;
  overflow: hidden;
}
.episode-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(120, 160, 210, 0.06) 0px,
    rgba(120, 160, 210, 0.06) 1px,
    transparent 1px,
    transparent 3px
  );
}
.episode-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.episode-title {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.04em;
}
.episode-summary {
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--ink-faint);
}
.episode-duration {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--wine-bright);
  letter-spacing: 0.06em;
  margin-top: 1px;
}
.comments-masonry {
  columns: 2;
  column-gap: 10px;
}
.comment-card {
  break-inside: avoid;
  display: block;
  padding: 8px 10px;
  margin-bottom: 10px;
  background: #1a1c22;
  border-left: 2px solid #2b2f38;
}
.comment-card:nth-child(3n) {
  background: #17191f;
}
.comment-card:nth-child(3n + 1) {
  margin-top: 14px;
}
.comment-text {
  font-size: 12px;
  line-height: 1.55;
  color: #b9b6b0;
  margin-bottom: 5px;
}
.comment-nickname {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
  text-align: right;
}
.comment-nickname::before {
  content: "— ";
  color: #3a3f4a;
}
.recommend-region {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.recommend-region + .recommend-region {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.recommend-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--ink-dim);
  text-align: right;
  padding-right: 2px;
}
.recommend-title::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 1px;
  background: var(--wine-bright);
  vertical-align: middle;
  margin-left: 8px;
}
.recommend-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
  gap: 6px;
}
a.recommend-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 6px;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  min-width: 0;
  transition: border-color 0.15s, background 0.15s;
}
a.recommend-item:hover {
  border-color: var(--cool-bright);
  background: #121826;
}
[data-runtime="recommendation"] img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  background: #0c1018;
  border: 1px solid #1c2331;
}
[data-runtime="recommendation"] [data-runtime="name"] {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.03em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
[data-runtime="recommendation"] [data-runtime="blurb"] {
  font-size: 10.5px;
  line-height: 1.35;
  color: var(--ink-faint);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
  margin-top: 30px;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--ink-dim);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: var(--cool-bright);
  border-bottom-color: var(--cool-bright);
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 5px 12px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}
.friend-links-label {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: var(--ink-faint);
  text-transform: uppercase;
  flex: none;
}
a.runtime-friend-link {
  font-size: 11.5px;
  color: #7f8797;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s;
}
a.runtime-friend-link:hover {
  color: var(--wine-bright);
  text-decoration: underline;
}
.footer-disclaimer {
  font-size: 10.5px;
  line-height: 1.5;
  color: #565c69;
  letter-spacing: 0.02em;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}
@media (max-width: 900px) {.hero-panel {
    grid-template-columns: minmax(0, 240px) minmax(0, 1fr);
    gap: 20px;
  }
.movie-title {
    font-size: 23px;
  }
.synopsis-body {
    columns: 1;
    column-rule: none;
  }}
@media (max-width: 720px) {.hero-panel {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    padding-top: 16px;
  }
.hero-visual {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
  }
.poster-wrap {
    flex: 0 0 46%;
    max-width: 200px;
  }
.monitor-grid {
    flex: 1 1 auto;
    align-self: flex-start;
    min-width: 0;
  }
.episode-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.comments-masonry {
    columns: 1;
  }
.comment-card:nth-child(3n + 1) {
    margin-top: 0;
  }
.detail-list {
    grid-template-columns: minmax(0, 1fr);
  }}
@media (max-width: 560px) {body {
    font-size: 12.5px;
  }
.header-inner {
    gap: 10px;
    padding: 8px 12px;
  }
a[data-contract="site-name"] {
    border-right: none;
    padding-right: 0;
  }
.page-main {
    padding-left: 12px;
    padding-right: 12px;
  }
.hero-visual {
    flex-direction: column;
  }
.poster-wrap {
    flex: none;
    max-width: 210px;
    width: 60%;
  }
.movie-title {
    font-size: 20px;
  }
.ctrl-progress {
    flex: 1 1 100%;
    order: 12;
  }
.ctrl-volume {
    flex: 0 1 56px;
    width: 56px;
  }
.cast-list {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
.timeline-track {
    grid-template-columns: minmax(0, 1fr);
  }
.timeline-track::before {
    left: 4px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 1px;
    height: auto;
    background: linear-gradient(to bottom, transparent, #3a4356 6%, #3a4356 94%, transparent);
  }
.timeline-node {
    padding: 4px 0 12px 18px;
  }
.timeline-dot {
    top: 8px;
    left: 0;
  }
.recommend-title {
    text-align: left;
  }
.recommend-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }}
@media (max-width: 420px) {.episode-card {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 8px;
  }
.episode-thumb {
    width: 72px;
  }
.recommend-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }}

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}
