:root {
  --iron: #1a1c1d;
  --iron-2: #222527;
  --iron-3: #2b2f31;
  --iron-line: #3a3f42;
  --fire: #e8560f;
  --fire-hot: #ff7a1f;
  --rust: #8a4a22;
  --rust-2: #6d3a1a;
  --ash: #9aa0a2;
  --ash-2: #c9cfd1;
  --bone: #e6e2db;
  --dim: #7d8386;
  --font: "PingFang SC", "Microsoft YaHei", "Heiti SC", "Noto Sans CJK SC", "Source Han Sans SC", sans-serif;
  --mono: "SF Mono", "Consolas", "Menlo", "Roboto Mono", monospace;
  --gap: 6px;
  --pad: 10px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
}
body {
  background: var(--iron);
  color: var(--ash-2);
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}
img, video {
  display: block;
  max-width: 100%;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
button, input, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
h1, h2, h3 {
  font-weight: 800;
  line-height: 1.15;
}
::selection {
  background: var(--fire);
  color: #14110e;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #141617;
  border-bottom: 2px solid var(--rust-2);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: var(--pad) 14px;
  max-width: 1440px;
  margin: 0 auto;
}
a[data-contract="site-name"] {
  color: var(--fire-hot);
  text-decoration: none;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.14em;
  white-space: nowrap;
  text-shadow: 0 1px 0 #000, 0 0 12px rgba(232, 86, 15, 0.35);
}
.category-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  flex: 1 1 auto;
  min-width: 0;
}
a.runtime-category {
  display: inline-block;
  color: var(--ash);
  text-decoration: none;
  white-space: nowrap;
  font-size: 12px;
  padding: 2px 8px;
  border: 1px solid var(--iron-line);
  border-left: 3px solid var(--rust);
  background: var(--iron-2);
}
a.runtime-category:hover {
  color: var(--bone);
  border-left-color: var(--fire);
  background: var(--iron-3);
}
.page-main {
  display: block;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 8px 8px;
}
.section-heading {
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--fire-hot);
  text-transform: none;
  padding: 6px 8px;
  margin-bottom: 6px;
  background: linear-gradient(90deg, var(--iron-3), transparent 70%);
  border-left: 4px solid var(--fire);
}
.movie-overview {
  display: block;
  background: var(--iron-2);
  border: 1px solid var(--iron-line);
  border-top: 3px solid var(--rust);
  padding: 8px;
  margin-top: 8px;
}
.overview-top {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: 8px;
  align-items: start;
}
.poster-column {
  align-self: start;
}
.poster-frame {
  position: relative;
  background: #0e0f10;
  border: 1px solid var(--iron-line);
  overflow: hidden;
}
.poster-img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  filter: contrast(1.08) saturate(0.92) brightness(0.94);
}
.poster-caption {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 4px 8px;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--bone);
  background: linear-gradient(0deg, rgba(12, 8, 4, 0.92), rgba(12, 8, 4, 0));
  border-top: 1px solid rgba(232, 86, 15, 0.5);
}
.overview-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.movie-title {
  font-size: clamp(30px, 5.4vw, 62px);
  letter-spacing: 0.06em;
  color: var(--bone);
  line-height: 1;
  text-shadow:
    0 0 1px #000,
    1px 0 0 rgba(232, 86, 15, 0.9),
    -1px 0 0 rgba(232, 86, 15, 0.5),
    0 2px 0 #4a1d05,
    0 0 18px rgba(232, 86, 15, 0.5);
}
.movie-tagline {
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--ash);
  border-left: 3px solid var(--fire);
  padding-left: 8px;
}
.player-shell {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 480px;
  width: 100%;
  border: 1px solid var(--iron-line);
  background: #0d0e0f;
}
.player-video {
  display: block;
  width: 100%;
  background: #000;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  padding: 5px 6px;
  background: var(--iron-3);
  border-top: 1px solid var(--rust-2);
}
.ctrl-btn {
  appearance: none;
  border: 1px solid var(--iron-line);
  border-left: 3px solid var(--rust);
  background: #1c1f21;
  color: var(--ash-2);
  font-size: 12px;
  padding: 3px 8px;
  cursor: pointer;
  white-space: nowrap;
}
.ctrl-btn:hover {
  color: var(--bone);
  border-left-color: var(--fire-hot);
  background: #26292c;
}
.ctrl-btn.is-playing, .ctrl-btn.is-active {
  color: #14110e;
  background: var(--fire);
  border-color: var(--fire-hot);
  border-left-color: #ffd08a;
}
.ctrl-btn.is-muted {
  color: var(--fire-hot);
  border-left-color: var(--fire-hot);
}
.ctrl-progress {
  flex: 1 1 160px;
  min-width: 90px;
  height: 8px;
  appearance: none;
  background: #101213;
  border: 1px solid var(--iron-line);
  cursor: pointer;
}
.ctrl-progress::-webkit-slider-thumb {
  appearance: none;
  width: 6px;
  height: 16px;
  background: var(--fire-hot);
  border: none;
}
.ctrl-progress::-moz-range-thumb {
  width: 6px;
  height: 16px;
  border: none;
  border-radius: 0;
  background: var(--fire-hot);
}
.ctrl-volume {
  flex: 0 1 90px;
  min-width: 60px;
  height: 8px;
  appearance: none;
  background: #101213;
  border: 1px solid var(--iron-line);
  cursor: pointer;
}
.ctrl-volume::-webkit-slider-thumb {
  appearance: none;
  width: 6px;
  height: 16px;
  background: var(--rust);
  border: none;
}
.ctrl-volume::-moz-range-thumb {
  width: 6px;
  height: 16px;
  border: none;
  border-radius: 0;
  background: var(--rust);
}
.ctrl-speed {
  appearance: none;
  background: #1c1f21;
  border: 1px solid var(--iron-line);
  border-left: 3px solid var(--rust);
  color: var(--ash-2);
  font-family: var(--mono);
  font-size: 12px;
  padding: 3px 6px;
  cursor: pointer;
}
.ctrl-speed.is-changed {
  border-left-color: var(--fire-hot);
  color: var(--fire-hot);
}
.episode-status {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 5px 8px;
  background: #191c1d;
  border: 1px solid var(--iron-line);
  border-left: 4px solid var(--fire);
  font-family: var(--mono);
}
.status-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--dim);
  font-family: var(--font);
}
.status-current {
  font-size: 15px;
  font-weight: 700;
  color: var(--fire-hot);
}
.status-divider {
  color: var(--iron-line);
}
.status-total {
  font-size: 12px;
  color: var(--ash);
}
.cast-section {
  margin-top: 8px;
}
.cast-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 4px;
}
.cast-card {
  position: relative;
  background: #111314;
  border: 1px solid var(--iron-line);
  overflow: hidden;
  align-self: start;
}
.cast-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: grayscale(0.7) contrast(1.1) brightness(0.86);
}
.cast-name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  padding: 3px 6px;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--bone);
  background: linear-gradient(0deg, rgba(10, 7, 4, 0.94), rgba(10, 7, 4, 0.05));
  border-top: 2px solid var(--rust);
}
.cast-card:hover .cast-photo {
  filter: grayscale(0.15) contrast(1.08) brightness(1);
}
.cast-card:hover .cast-name {
  border-top-color: var(--fire-hot);
  color: #fff;
}
.synopsis-section {
  margin-top: 8px;
}
.synopsis-body {
  columns: 2;
  column-gap: 10px;
  column-rule: 1px solid var(--iron-line);
}
.synopsis-para {
  break-inside: avoid;
  font-size: 13.5px;
  line-height: 1.62;
  color: var(--ash-2);
  padding: 6px 0 6px 9px;
  border-left: 2px solid var(--rust-2);
  margin-bottom: 6px;
  background: rgba(255, 255, 255, 0.014);
}
.synopsis-para:first-child {
  border-left-color: var(--fire);
}
.details-section {
  margin-top: 8px;
}
.details-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 3px;
}
.detail-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 4px 7px;
  background: #1b1e20;
  border: 1px solid var(--iron-line);
  border-left: 3px solid var(--rust-2);
}
.detail-key {
  font-size: 11px;
  color: var(--dim);
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.detail-value {
  font-size: 12.5px;
  color: var(--bone);
  font-family: var(--mono);
  min-width: 0;
}
.timeline-section {
  margin-top: 10px;
  padding: 8px;
  background: var(--iron-2);
  border: 1px solid var(--iron-line);
}
.timeline-track {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 4px;
  position: relative;
  padding-top: 12px;
}
.timeline-track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 4px;
  height: 8px;
  background:
    repeating-linear-gradient(
      90deg,
      var(--rust-2) 0 3px,
      transparent 3px 9px
    ),
    linear-gradient(180deg, #3b3f41, #232628);
  border-top: 1px solid #4c5154;
  border-bottom: 1px solid #101213;
}
.timeline-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: var(--rust-2);
  border: 1px solid #4b2a13;
  border-top: 3px solid var(--rust);
  padding: 5px 3px;
  min-height: 0;
  align-self: start;
}
.node-timecode {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  color: #ffc99a;
  letter-spacing: 0.04em;
}
.node-label {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: #f0e2d6;
  line-height: 1.25;
}
.episodes-section {
  margin-top: 10px;
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
}
.episode-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 7px 8px 7px 10px;
  background: #1b1e20;
  border: 1px solid var(--iron-line);
  border-top: 3px solid var(--rust-2);
  align-self: start;
  overflow: hidden;
}
.ep-number {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--fire);
}
.ep-title {
  font-size: 15px;
  letter-spacing: 0.06em;
  color: var(--bone);
}
.ep-duration {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--dim);
}
.ep-summary {
  font-size: 12px;
  line-height: 1.5;
  color: var(--ash);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.28s ease, opacity 0.28s ease, margin 0.28s ease;
}
.episode-card:hover, .episode-card:focus-within {
  border-top-color: var(--fire);
  background: #23272a;
}
.episode-card:hover .ep-summary, .episode-card:focus-within .ep-summary {
  max-height: 130px;
  opacity: 1;
  margin-top: 3px;
}
.episode-card:hover .ep-duration, .episode-card:focus-within .ep-duration {
  color: var(--ash-2);
}
.comments-section {
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid var(--iron-line);
}
.comment-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  align-items: start;
}
.comment-column {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.comment-column:nth-child(2) {
  margin-top: 14px;
}
.comment-item {
  padding: 6px 8px;
  background: #1b1e20;
  border: 1px solid var(--iron-line);
  border-left: 3px solid var(--rust-2);
}
.comment-nickname {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #cf6a22;
  font-weight: 700;
}
.comment-text {
  font-size: 12.5px;
  line-height: 1.55;
  color: #b9bfc1;
  margin-top: 2px;
}
.recommend-region {
  margin-top: 10px;
  padding: 8px;
  background: var(--iron-2);
  border: 1px solid var(--iron-line);
  border-top: 3px solid var(--rust-2);
}
.recommend-heading {
  font-size: 12.5px;
  letter-spacing: 0.18em;
  color: var(--fire-hot);
  padding-bottom: 5px;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--iron-line);
}
.recommend-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
}
.recommend-item {
  min-width: 0;
}
a.recommend-link {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 7px;
  row-gap: 1px;
  align-items: start;
  padding: 4px;
  background: #1b1e20;
  border: 1px solid var(--iron-line);
  border-left: 3px solid var(--rust-2);
  color: var(--ash);
  text-decoration: none;
}
a.recommend-link:hover {
  background: #24282a;
  border-left-color: var(--fire);
}
[data-runtime="recommendation"] img {
  grid-row: 1 / span 2;
  width: 100%;
  height: 100%;
  max-height: 72px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: grayscale(0.5) brightness(0.9);
}
.recommend-name {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--bone);
  line-height: 1.3;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.recommend-blurb {
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--dim);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
a.recommend-link:hover .recommend-blurb {
  color: var(--ash);
}
.site-footer {
  margin-top: 10px;
  background: #121415;
  border-top: 3px solid var(--rust-2);
}
.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 10px 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-size: 12px;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border: 1px solid var(--iron-line);
  border-left: 3px solid var(--rust);
  background: var(--iron-2);
  text-decoration: none;
}
a[data-contract="footer-home"] {
  color: var(--fire-hot);
}
a[data-contract="footer-home"]:hover {
  background: var(--iron-3);
  color: #fff;
}
a[data-contract="footer-sitemap"] {
  color: var(--ash);
}
a[data-contract="footer-sitemap"]:hover {
  background: var(--iron-3);
  color: var(--bone);
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  padding-top: 6px;
  border-top: 1px solid var(--iron-line);
}
.friend-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--dim);
  margin-right: 4px;
}
a.runtime-friend-link {
  font-size: 11.5px;
  color: var(--ash);
  text-decoration: none;
  padding: 1px 6px;
  background: #191c1d;
  border: 1px solid var(--iron-line);
}
a.runtime-friend-link:hover {
  color: var(--fire-hot);
  border-color: var(--rust);
}
.footer-disclaimer {
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--dim);
  border-top: 1px dashed var(--iron-line);
  padding-top: 7px;
}
.is-dim .page-main {
  filter: brightness(0.55) contrast(1.05);
}
.is-theater .player-shell {
  border-color: var(--fire);
}
.player-shell.is-theater {
  box-shadow: 0 0 0 1px var(--fire), 0 0 28px rgba(232, 86, 15, 0.35);
}
.change, .click, .input, .progress, .speed, .timeupdate, .volume, .player, .play, .pause, .mute, .fullscreen, .pip, .theater, .light {
  
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
  outline: 2px solid var(--fire-hot);
  outline-offset: 1px;
}
@media (max-width: 1080px) {.overview-top {
    grid-template-columns: minmax(200px, 260px) minmax(0, 1fr);
  }
.details-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.cast-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }}
@media (max-width: 860px) {.overview-top {
    grid-template-columns: minmax(0, 1fr);
  }
.poster-column {
    max-width: 340px;
  }
.episode-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.timeline-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 8px;
  }
.synopsis-body {
    columns: 1;
    column-rule: none;
  }
.recommend-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }}
@media (max-width: 620px) {body {
    font-size: 13.5px;
  }
.header-inner {
    padding: 8px 10px;
    gap: 8px;
  }
.page-main {
    padding: 0 6px 6px;
  }
.player-shell {
    min-width: 0;
  }
.player-controls {
    gap: 3px;
  }
.ctrl-btn {
    font-size: 11px;
    padding: 3px 6px;
  }
.ctrl-progress {
    flex: 1 1 100%;
  }
.cast-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.details-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.episode-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.ep-summary {
    max-height: none;
    opacity: 1;
    margin-top: 3px;
  }
.timeline-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.comment-columns {
    grid-template-columns: minmax(0, 1fr);
  }
.comment-column:nth-child(2) {
    margin-top: 0;
  }
.recommend-list {
    grid-template-columns: minmax(0, 1fr);
  }
.movie-title {
    font-size: clamp(26px, 10vw, 40px);
  }}
@media (max-width: 400px) {.details-list {
    grid-template-columns: minmax(0, 1fr);
  }
.cast-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.timeline-track {
    grid-template-columns: minmax(0, 1fr);
  }
.node-label {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
  }}

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}
