:root {
  --bg: #0d1117;
  --bg-2: #111823;
  --panel: #141b26;
  --panel-2: #171f2b;
  --line: #2a1c22;
  --line-2: #26303d;
  --red: #8b1e2d;
  --red-bright: #b3283c;
  --steel: #6f8296;
  --steel-2: #93a4b8;
  --text: #c9d2dd;
  --text-dim: #7f8c9b;
  --text-faint: #5c6875;
  --mono: ui-monospace, "SF Mono", "Cascadia Mono", "Roboto Mono", Menlo, Consolas, monospace;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: 0.01em;
  background-image:
    linear-gradient(180deg, rgba(139, 30, 45, 0.05) 0%, rgba(13, 17, 23, 0) 320px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.012) 0px, rgba(255, 255, 255, 0.012) 1px, transparent 1px, transparent 3px);
  min-height: 100vh;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: var(--steel-2);
  text-decoration: none;
  transition: color 0.15s ease, border-color 0.15s ease;
}
a:hover {
  color: var(--red-bright);
}
button, input, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
ul, ol {
  list-style: none;
}
h1, h2 {
  font-weight: 500;
  line-height: 1.3;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(13, 17, 23, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
a[data-contract="site-name"] {
  color: #dbe3ec;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-decoration: none;
  padding-right: 18px;
  border-right: 1px solid var(--line-2);
  white-space: nowrap;
  font-family: var(--mono);
}
a[data-contract="site-name"]:hover {
  color: var(--red-bright);
  text-decoration: none;
}
.categories-strip {
  display: flex;
  align-items: center;
  gap: 4px 14px;
  flex-wrap: wrap;
  flex: 1 1 auto;
  min-width: 0;
  font-size: 12px;
}
a.runtime-category {
  color: var(--steel);
  text-decoration: none;
  white-space: nowrap;
  padding: 2px 0;
  border-bottom: 1px solid transparent;
  letter-spacing: 0.06em;
}
a.runtime-category:hover {
  color: var(--red-bright);
  border-bottom-color: var(--red);
  text-decoration: none;
}
.page-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px 48px;
}
.section-heading {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--steel-2);
  text-transform: uppercase;
  padding-bottom: 7px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-heading::after {
  content: "";
  flex: 0 0 26px;
  height: 1px;
  background: var(--red);
  margin-left: auto;
}
.movie-overview {
  padding-top: 22px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.overview-head {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}
.poster-wrap {
  width: 168px;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border: 1px solid var(--line-2);
  background: var(--panel);
  position: relative;
  align-self: start;
}
.poster-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(139, 30, 45, 0.16), rgba(13, 17, 23, 0) 55%);
  pointer-events: none;
}
.poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.05) hue-rotate(-6deg);
}
.overview-info {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding-top: 2px;
  min-width: 0;
}
.movie-title {
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #e4eaf2;
  line-height: 1.25;
}
.movie-tagline {
  font-size: 13px;
  font-weight: 300;
  font-style: normal;
  color: var(--red-bright);
  letter-spacing: 0.16em;
  padding-left: 11px;
  border-left: 2px solid var(--red);
  line-height: 1.4;
}
.movie-seo {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.72;
  max-width: 62ch;
  padding-top: 4px;
  border-top: 1px solid var(--line-2);
  margin-top: 2px;
}
.player-wrap {
  width: 100%;
  max-width: 100%;
  background: #05080c;
  border: 1px solid var(--line-2);
  display: flex;
  flex-direction: column;
}
.player-wrap video {
  display: block;
  width: 100%;
  background: #000;
}
.player-controls {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  padding: 8px 10px;
  background: var(--panel-2);
  border-top: 1px solid var(--line-2);
}
.ctrl-btn {
  background: transparent;
  border: 1px solid var(--line-2);
  color: var(--steel-2);
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 4px 9px;
  cursor: pointer;
  line-height: 1.4;
  white-space: nowrap;
  transition: all 0.15s ease;
}
.ctrl-btn:hover {
  border-color: var(--red);
  color: #e4eaf2;
}
.ctrl-btn.is-playing, .ctrl-btn.is-active {
  border-color: var(--red);
  color: var(--red-bright);
  background: rgba(139, 30, 45, 0.12);
}
.ctrl-btn.is-muted {
  border-color: var(--red);
  color: var(--red-bright);
}
.ctrl-progress {
  flex: 1 1 160px;
  min-width: 100px;
  height: 3px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--line-2);
  cursor: pointer;
  outline: none;
  margin: 0 4px;
}
.ctrl-progress::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red-bright);
  cursor: pointer;
}
.ctrl-progress::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
  background: var(--red-bright);
  cursor: pointer;
}
.ctrl-volume {
  flex: 0 0 64px;
  width: 64px;
  height: 3px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--line-2);
  cursor: pointer;
  outline: none;
}
.ctrl-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--steel-2);
  cursor: pointer;
}
.ctrl-volume::-moz-range-thumb {
  width: 9px;
  height: 9px;
  border: none;
  border-radius: 50%;
  background: var(--steel-2);
  cursor: pointer;
}
.ctrl-speed {
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  color: var(--steel-2);
  font-size: 11px;
  padding: 4px 5px;
  cursor: pointer;
  outline: none;
  font-family: var(--mono);
}
.episode-status {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 7px 0;
}
.status-line {
  font-size: 12px;
  color: var(--text-dim);
  font-family: var(--mono);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.status-line::before {
  content: "";
  flex: 0 0 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 6px var(--red-bright);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.details-panel {
  margin-top: 2px;
}
.details-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 12px;
}
.details-row {
  border-bottom: 1px solid var(--line);
}
.details-row:last-child {
  border-bottom: none;
}
.details-key {
  text-align: left;
  font-weight: 400;
  color: var(--text-faint);
  padding: 6px 8px 6px 0;
  width: 11%;
  white-space: nowrap;
  letter-spacing: 0.08em;
  vertical-align: top;
}
.details-value {
  text-align: left;
  color: var(--text);
  padding: 6px 18px 6px 0;
  vertical-align: top;
  font-size: 12.5px;
}
.details-value:last-child {
  padding-right: 0;
}
.cast-panel {
  margin-top: 30px;
}
.cast-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}
.cast-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 76px;
}
.cast-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(140deg, #2c3a4a, #1a222d 60%, #25161c);
  border: 1px solid var(--line-2);
  display: block;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.cast-avatar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 35% 30%, rgba(147, 164, 184, 0.22), transparent 62%);
}
.cast-item:hover .cast-avatar {
  border-color: var(--red);
}
.cast-name {
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
  letter-spacing: 0.04em;
  line-height: 1.35;
}
.cast-item:hover .cast-name {
  color: var(--text);
}
.synopsis-panel {
  margin-top: 30px;
}
.synopsis-body {
  columns: 2;
  column-gap: 34px;
  column-rule: 1px solid var(--line-2);
}
.synopsis-para {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.78;
  margin-bottom: 11px;
  break-inside: avoid;
}
.synopsis-para:last-child {
  margin-bottom: 0;
}
.timeline-panel {
  margin-top: 34px;
}
.timeline-list {
  position: relative;
  padding-left: 6px;
}
.timeline-list::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: var(--line-2);
}
.timeline-node {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 16px;
  align-items: baseline;
  padding: 7px 0 7px 20px;
  cursor: pointer;
  transition: background 0.15s ease;
}
.timeline-node::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 14px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--steel);
  transition: all 0.18s ease;
}
.timeline-node:hover::before {
  border-color: var(--red-bright);
}
.timeline-node.is-active::before {
  background: var(--red-bright);
  border-color: var(--red-bright);
  box-shadow: 0 0 0 3px rgba(139, 30, 45, 0.18);
}
.timeline-timecode {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--steel);
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.timeline-node.is-active .timeline-timecode {
  color: var(--red-bright);
}
.timeline-label {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 74ch;
}
.timeline-node.is-active .timeline-label {
  color: #dbe3ec;
}
.episodes-panel {
  margin-top: 34px;
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-2);
  border: 1px solid var(--line-2);
}
.episode-cell {
  background: var(--bg-2);
}
.episode-cell.is-current {
  background: rgba(139, 30, 45, 0.09);
}
.episode-cell.is-open {
  background: var(--panel);
}
.episode-detail {
  height: 100%;
}
.episode-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 10px;
  padding: 11px 12px;
  cursor: pointer;
  list-style: none;
  transition: background 0.15s ease;
}
.episode-summary::-webkit-details-marker {
  display: none;
}
.episode-summary:hover {
  background: rgba(147, 164, 184, 0.05);
}
.episode-number {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--red-bright);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.episode-title {
  font-size: 14px;
  color: #dbe3ec;
  letter-spacing: 0.06em;
  flex: 1 1 auto;
}
.episode-duration {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-faint);
  white-space: nowrap;
}
.episode-abstract {
  font-size: 12.5px;
  color: var(--text-dim);
  line-height: 1.68;
  padding: 0 12px 12px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
  margin: 0 12px 0;
  padding-left: 0;
  padding-right: 0;
}
.comments-panel {
  margin-top: 34px;
}
.comments-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  align-items: start;
}
.comments-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.comments-col:nth-child(2) {
  margin-top: 26px;
}
.comment-bubble {
  background: var(--panel);
  border-left: 2px solid var(--line-2);
  padding: 9px 13px;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.comment-bubble:hover {
  border-left-color: var(--red);
  background: var(--panel-2);
}
.comment-nickname {
  display: block;
  font-size: 11px;
  color: var(--steel);
  letter-spacing: 0.1em;
  font-family: var(--mono);
  margin-bottom: 4px;
}
.comment-text {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.68;
}
.recommend-region {
  margin-top: 34px;
}
.recommend-region[data-recommendation-region] {
  display: block;
}
.recommend-heading {
  font-size: 13px;
  font-weight: 600;
  color: #dbe3ec;
  letter-spacing: 0.14em;
  padding-bottom: 8px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.recommend-heading::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 40px;
  height: 1px;
  background: var(--red);
}
.recommend-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.recommend-item {
  min-width: 0;
}
a.recommend-link {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: var(--text);
  text-decoration: none;
  background: var(--panel);
  border: 1px solid var(--line-2);
  padding: 8px;
  height: 100%;
  transition: border-color 0.18s ease, background 0.18s ease;
}
a.recommend-link:hover {
  border-color: var(--red);
  background: var(--panel-2);
  text-decoration: none;
  color: #e4eaf2;
}
a[data-runtime="recommendation"] img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.04) hue-rotate(-6deg);
  display: block;
  background: var(--bg-2);
}
.recommend-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
.recommend-name {
  font-size: 13px;
  font-weight: 600;
  color: #dbe3ec;
  letter-spacing: 0.04em;
  line-height: 1.4;
  display: block;
}
.recommend-blurb {
  font-size: 12px;
  color: var(--text-faint);
  line-height: 1.55;
  display: block;
}
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  margin-top: 20px;
  padding: 20px 20px 28px;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
}
.footer-disclaimer {
  font-size: 11.5px;
  color: var(--text-faint);
  line-height: 1.7;
  margin-bottom: 14px;
  max-width: 80ch;
}
.footer-friends {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 5px 14px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.friends-label {
  font-size: 11px;
  color: var(--steel);
  letter-spacing: 0.16em;
  font-family: var(--mono);
  white-space: nowrap;
}
a.runtime-friend-link {
  font-size: 11.5px;
  color: var(--text-faint);
  text-decoration: none;
  white-space: nowrap;
  padding: 1px 0;
  border-bottom: 1px solid transparent;
}
a.runtime-friend-link:hover {
  color: var(--red-bright);
  border-bottom-color: var(--line);
  text-decoration: none;
}
.footer-links {
  display: flex;
  gap: 20px;
  align-items: center;
}
a.footer-link, a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-size: 12px;
  color: var(--steel);
  text-decoration: none;
  letter-spacing: 0.08em;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover, a.footer-link:hover {
  color: var(--red-bright);
  border-bottom-color: var(--red);
  text-decoration: none;
}
.movie-overview.is-theater .player-wrap {
  max-width: 100%;
  border-color: var(--red);
  box-shadow: 0 0 0 1px rgba(139, 30, 45, 0.35);
}
.movie-overview.is-lights-off .player-wrap {
  background: #000;
}
.movie-overview.is-lights-off .poster-wrap, .movie-overview.is-lights-off .overview-info {
  opacity: 0.35;
  transition: opacity 0.4s ease;
}
@media (max-width: 900px) {.header-inner {
    padding: 9px 16px;
    gap: 14px;
  }
.page-main {
    padding: 0 16px 40px;
  }
.site-footer {
    padding: 18px 16px 24px;
  }
.overview-head {
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 16px;
  }
.poster-wrap {
    width: 140px;
  }
.movie-title {
    font-size: 21px;
  }
.synopsis-body {
    columns: 1;
    column-rule: none;
  }
.episode-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.recommend-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }}
@media (max-width: 640px) {.header-inner {
    padding: 8px 13px;
    gap: 10px;
  }
a[data-contract="site-name"] {
    font-size: 13px;
    padding-right: 12px;
  }
.categories-strip {
    gap: 3px 11px;
    font-size: 11px;
  }
.page-main {
    padding: 0 13px 32px;
  }
.site-footer {
    padding: 16px 13px 22px;
  }
.overview-head {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 13px;
  }
.poster-wrap {
    width: 112px;
  }
.movie-title {
    font-size: 18px;
  }
.movie-tagline {
    font-size: 12px;
    letter-spacing: 0.1em;
  }
.movie-seo {
    font-size: 12.5px;
  }
.player-controls {
    gap: 5px;
    padding: 7px 8px;
  }
.ctrl-btn {
    font-size: 10.5px;
    padding: 3px 7px;
  }
.ctrl-progress {
    flex-basis: 100%;
    order: 10;
    margin: 4px 0 2px;
  }
.ctrl-volume {
    flex-basis: 54px;
    width: 54px;
  }
.details-table {
    font-size: 11.5px;
  }
.details-key {
    width: 13%;
    padding: 5px 6px 5px 0;
  }
.details-value {
    padding: 5px 10px 5px 0;
    font-size: 12px;
  }
.episode-grid {
    grid-template-columns: 1fr;
  }
.comments-columns {
    grid-template-columns: 1fr;
    gap: 12px;
  }
.comments-col:nth-child(2) {
    margin-top: 0;
  }
.recommend-list {
    grid-template-columns: 1fr;
  }
.cast-list {
    gap: 9px 13px;
  }
.cast-item {
    width: 64px;
  }
.cast-avatar {
    width: 48px;
    height: 48px;
  }
.timeline-node {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 11px;
    padding-left: 18px;
  }
.footer-friends {
    gap: 4px 11px;
  }}
@media (max-width: 380px) {.overview-head {
    grid-template-columns: 1fr;
  }
.poster-wrap {
    width: 132px;
  }
.movie-title {
    font-size: 17px;
  }}

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}
