:root {
  --iron: #1a1c1e;
  --iron-2: #23262a;
  --iron-3: #2e3238;
  --steel: #565d66;
  --steel-2: #7d858f;
  --ash: #a8aeb6;
  --bone: #d8dade;
  --blood: #8c1f24;
  --blood-2: #b3282e;
  --blood-glow: #c9302f;
  --line: rgba(140, 150, 160, 0.18);
  --line-strong: rgba(140, 150, 160, 0.32);
  --font: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Source Han Sans SC", "Noto Sans CJK SC", system-ui, sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  font-family: var(--font);
  background: var(--iron);
  color: var(--bone);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol, dl {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
button, input {
  font: inherit;
  color: inherit;
}
h1, h2, h3 {
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.3;
}
.page-shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px 48px;
  position: relative;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(180deg, rgba(20, 22, 24, 0.98), rgba(20, 22, 24, 0.92));
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
  margin: 0 -20px 0;
  padding: 0 20px;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 52px;
  max-width: 1200px;
  margin: 0 auto;
}
a[data-contract="site-name"] {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--bone);
  text-decoration: none;
  position: relative;
  padding-left: 14px;
  white-space: nowrap;
}
a[data-contract="site-name"]::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 16px;
  background: var(--blood-2);
}
.category-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 4px 14px;
  min-width: 0;
}
.runtime-category, a.runtime-category {
  color: var(--ash);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.06em;
  white-space: nowrap;
  padding: 3px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease;
}
a.runtime-category:hover {
  color: var(--bone);
  border-bottom-color: var(--blood-2);
}
.main-content {
  display: block;
}
.hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 0;
  margin-top: 28px;
  position: relative;
  isolation: isolate;
}
.hero-panel::after {
  content: "";
  position: absolute;
  inset: -10% -6% auto auto;
  width: 60%;
  height: 130%;
  background: linear-gradient(112deg, transparent 44%, rgba(201, 48, 47, 0.14) 47%, transparent 52%);
  pointer-events: none;
  z-index: 3;
  mix-blend-mode: screen;
}
.hero-visual {
  position: relative;
  min-width: 0;
}
.poster-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0;
  border: 1px solid var(--line-strong);
  background: #0f1112;
}
.poster-img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
  filter: grayscale(0.35) contrast(1.08) brightness(0.82);
}
.poster-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(140, 31, 36, 0.22) 0%, transparent 46%);
  pointer-events: none;
}
.player-wrap {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(62%, 480px);
  min-width: 300px;
  background: #0b0c0d;
  border: 1px solid var(--line-strong);
  box-shadow: -18px -18px 40px rgba(0, 0, 0, 0.55);
  z-index: 4;
}
.player-wrap video {
  display: block;
  width: 100%;
  background: #000;
  object-fit: cover;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 7px 8px;
  background: linear-gradient(180deg, #191c1f, #101214);
  border-top: 1px solid var(--line);
}
.player-btn {
  background: var(--iron-3);
  border: 1px solid var(--line-strong);
  color: var(--ash);
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 3px 9px;
  cursor: pointer;
  transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease;
  white-space: nowrap;
}
.player-btn:hover {
  background: var(--blood);
  border-color: var(--blood-2);
  color: #fff;
}
.player-btn-play {
  background: var(--blood);
  border-color: var(--blood-2);
  color: #fff;
  font-weight: 600;
}
.player-range {
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: var(--iron-3);
  border: none;
  cursor: pointer;
  min-width: 0;
}
.player-range-progress {
  flex: 1 1 90px;
}
.player-range-volume {
  flex: 0 1 66px;
}
.player-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--blood-glow);
  border: 1px solid #efefef;
  cursor: pointer;
}
.player-range::-moz-range-thumb {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--blood-glow);
  border: 1px solid #efefef;
  cursor: pointer;
}
.player-range::-moz-range-track {
  height: 4px;
  background: var(--iron-3);
}
.player-wrap.player-theater {
  position: relative;
  width: 100%;
  max-width: none;
  right: auto;
  bottom: auto;
  box-shadow: none;
  margin-top: 16px;
}
.player-lights-off {
  background: #000;
}
.player-lights-off .player-controls {
  background: rgba(0, 0, 0, 0.86);
}
.hero-copy {
  position: relative;
  z-index: 5;
  padding: 8px 0 0 26px;
  min-width: 0;
}
.movie-title {
  font-size: 40px;
  line-height: 1.12;
  letter-spacing: 0.06em;
  color: var(--bone);
  font-weight: 700;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.7);
  margin-bottom: 10px;
  border-left: 3px solid var(--blood-2);
  padding-left: 14px;
}
.movie-tagline {
  font-size: 15px;
  color: var(--blood-glow);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  font-weight: 500;
}
.movie-seo {
  font-size: 13px;
  line-height: 1.78;
  color: var(--steel-2);
  font-weight: 300;
  margin-bottom: 18px;
  padding-left: 17px;
  border-left: 1px solid var(--line);
}
.episode-status {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.status-chip {
  display: inline-block;
  padding: 3px 11px;
  font-size: 12px;
  letter-spacing: 0.08em;
  border: 1px solid var(--line-strong);
  color: var(--ash);
  background: var(--iron-2);
}
.status-chip-current {
  background: var(--blood);
  border-color: var(--blood-2);
  color: #fff;
  font-weight: 600;
}
.status-chip-total {
  color: var(--steel-2);
}
.block-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--bone);
  margin-bottom: 10px;
}
.block-heading::before {
  content: "";
  width: 14px;
  height: 2px;
  background: var(--blood-2);
  flex: none;
}
.block-heading::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
  min-width: 20px;
}
.details-block {
  margin-bottom: 20px;
}
.details-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 18px;
  border-top: 1px solid var(--line);
}
.detail-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 5px 0;
  border-bottom: 1px solid var(--line);
  min-width: 0;
}
.detail-key {
  flex: none;
  width: 64px;
  color: var(--steel);
  font-size: 12px;
  letter-spacing: 0.08em;
}
.detail-value {
  flex: 1;
  min-width: 0;
  color: var(--bone);
  font-size: 13px;
  font-weight: 500;
  overflow-wrap: break-word;
}
.cast-block {
  margin-bottom: 20px;
}
.cast-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(112px, 1fr));
  gap: 6px 10px;
}
.cast-card {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 8px;
  background: var(--iron-2);
  border: 1px solid var(--line);
  min-width: 0;
  transition: border-color 0.16s ease, background 0.16s ease;
}
.cast-card:hover {
  border-color: var(--blood);
  background: var(--iron-3);
}
.cast-avatar {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, #4a5158 0%, #16181a 68%);
  border: 1px solid var(--line-strong);
  position: relative;
  overflow: hidden;
}
.cast-avatar::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #2a2e32;
}
.cast-name {
  font-size: 12.5px;
  color: var(--ash);
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.synopsis-section {
  margin-bottom: 8px;
}
.synopsis-body {
  border-left: 1px solid var(--line);
  padding-left: 14px;
}
.synopsis-paragraph {
  font-size: 13px;
  line-height: 1.8;
  color: var(--steel-2);
  font-weight: 300;
  margin-bottom: 8px;
}
.synopsis-paragraph:last-child {
  margin-bottom: 0;
}
.timeline-section {
  margin-top: 56px;
  margin-bottom: 46px;
}
.timeline-list {
  position: relative;
  border-top: 1px solid var(--line);
  padding-top: 6px;
}
.timeline-item {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.timeline-timecode {
  flex: none;
  width: 76px;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--steel);
  font-variant-numeric: tabular-nums;
}
.timeline-marker {
  flex: none;
  width: 14px;
  height: 14px;
  margin-right: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 36%, #3a3f45 0%, #0d0e10 70%);
  box-shadow: inset 0 0 0 2px var(--iron), 0 0 0 1px var(--line-strong), 0 0 6px rgba(0, 0, 0, 0.9);
  position: relative;
}
.timeline-marker::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--blood);
  opacity: 0.55;
}
.timeline-label {
  font-size: 13.5px;
  letter-spacing: 0.1em;
  color: var(--ash);
  font-weight: 500;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: 76px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--line);
}
.timeline-item:hover .timeline-label {
  color: var(--bone);
}
.timeline-item:hover .timeline-marker::after {
  background: var(--blood-glow);
  opacity: 1;
}
.episodes-section {
  margin-bottom: 44px;
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}
.episode-card {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 9px 10px 8px;
  background: var(--iron-2);
  border: 1px solid var(--line);
  min-width: 0;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
.episode-card:hover {
  border-color: var(--blood-2);
  background: var(--iron-3);
  box-shadow: 0 0 0 1px var(--blood), 0 4px 16px rgba(140, 31, 36, 0.28);
}
.episode-card-active {
  border-color: var(--blood-2);
  background: linear-gradient(180deg, rgba(140, 31, 36, 0.24), var(--iron-2));
}
.episode-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--bone);
  line-height: 1.4;
}
.episode-summary {
  font-size: 11.5px;
  line-height: 1.58;
  color: var(--steel-2);
  font-weight: 300;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.episode-duration {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--steel);
  font-variant-numeric: tabular-nums;
  border-top: 1px solid var(--line);
  padding-top: 5px;
}
.comments-section {
  margin-bottom: 44px;
}
.comments-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0 28px;
}
.comments-col {
  min-width: 0;
}
.comments-col-heading {
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--blood-glow);
  font-weight: 600;
  margin-bottom: 8px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--line-strong);
}
.comment-list {
  display: flex;
  flex-direction: column;
}
.comment-item {
  padding: 8px 0;
  border-bottom: 1px dashed var(--line-strong);
  min-width: 0;
}
.comment-item:last-child {
  border-bottom: none;
}
.comment-nickname {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--bone);
  margin-bottom: 3px;
}
.comment-nickname::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-right: 6px;
  vertical-align: 2px;
  background: var(--blood-2);
  transform: rotate(45deg);
}
.comment-text {
  font-size: 12.5px;
  line-height: 1.72;
  color: var(--steel-2);
  font-weight: 300;
}
.rec-section {
  margin-bottom: 30px;
}
.rec-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--bone);
  margin-bottom: 10px;
}
.rec-title::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--blood-2);
  flex: none;
}
.rec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
}
a.rec-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  background: var(--iron-2);
  border: 1px solid var(--line);
  color: var(--bone);
  text-decoration: none;
  min-width: 0;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}
a.rec-item:hover {
  border-color: var(--blood-2);
  background: var(--iron-3);
  transform: translateY(-2px);
}
[data-runtime="recommendation"] img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  display: block;
  background: #0e1011;
  filter: grayscale(0.25) brightness(0.86);
}
.rec-name {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--bone);
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.rec-blurb {
  font-size: 11.5px;
  line-height: 1.56;
  color: var(--steel-2);
  font-weight: 300;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.rec-section-1 .rec-grid, .rec-section-2 .rec-grid {
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}
.rec-section-3 .rec-grid, .rec-section-4 .rec-grid {
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
}
.site-footer {
  margin-top: 40px;
  border-top: 1px solid var(--line);
  background: #141618;
  margin-left: -20px;
  margin-right: -20px;
  padding: 22px 20px 28px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-disclaimer {
  font-size: 11.5px;
  line-height: 1.72;
  color: var(--steel);
  font-weight: 300;
  max-width: 720px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  color: var(--ash);
  text-decoration: none;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  border-bottom: 1px solid transparent;
  transition: color 0.16s ease, border-color 0.16s ease;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: var(--blood-glow);
  border-bottom-color: var(--blood-2);
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 14px;
  padding-top: 10px;
  border-top: 1px dashed var(--line);
}
.friend-links-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--steel);
  font-weight: 600;
  white-space: nowrap;
}
a.runtime-friend-link {
  color: var(--steel-2);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: color 0.16s ease;
}
a.runtime-friend-link:hover {
  color: var(--blood-glow);
  text-decoration: underline;
}
@media (max-width: 1080px) {.episode-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
.movie-title {
    font-size: 34px;
  }}
@media (max-width: 900px) {.hero-panel {
    grid-template-columns: minmax(0, 1fr);
  }
.hero-copy {
    padding: 22px 0 0;
  }
.poster-wrap {
    max-width: 360px;
  }
.player-wrap {
    width: min(70%, 420px);
  }
.timeline-section {
    margin-top: 40px;
  }}
@media (max-width: 720px) {.page-shell {
    padding: 0 14px 40px;
  }
.site-header {
    margin: 0 -14px;
    padding: 0 14px;
  }
.site-footer {
    margin-left: -14px;
    margin-right: -14px;
    padding: 20px 14px 26px;
  }
.header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 8px 0;
  }
.category-bar {
    justify-content: flex-start;
  }
.hero-panel {
    margin-top: 18px;
  }
.poster-wrap {
    max-width: 300px;
  }
.player-wrap {
    position: relative;
    width: 100%;
    min-width: 0;
    right: auto;
    bottom: auto;
    margin-top: 14px;
    box-shadow: none;
  }
.movie-title {
    font-size: 27px;
  }
.movie-tagline {
    font-size: 13.5px;
  }
.episode-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.comments-columns {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px 0;
  }
.details-list {
    grid-template-columns: minmax(0, 1fr);
  }
.timeline-timecode {
    width: 66px;
  }
.timeline-item::before {
    left: 66px;
  }
.timeline-marker {
    margin-right: 12px;
  }
.rec-grid, .rec-section-1 .rec-grid, .rec-section-2 .rec-grid, .rec-section-3 .rec-grid, .rec-section-4 .rec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }}
@media (max-width: 420px) {.episode-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.rec-grid, .rec-section-1 .rec-grid, .rec-section-2 .rec-grid, .rec-section-3 .rec-grid, .rec-section-4 .rec-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.movie-title {
    font-size: 23px;
  }
.poster-wrap {
    max-width: 100%;
  }
.player-btn {
    padding: 3px 7px;
    font-size: 11px;
  }}

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}
