:root {
  --ink: #e8e6e1;
  --ink-dim: #a9a59d;
  --ink-faint: #74716a;
  --ground: #14171a;
  --ground-2: #1a1e22;
  --ground-3: #21262b;
  --panel: #1c2126;
  --line: #2e353c;
  --rust: #b4452c;
  --rust-bright: #d15438;
  --teal: #2f5a5e;
  --teal-dim: #234347;
  --maxw: 1180px;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Heiti SC", system-ui, -apple-system, sans-serif;
  font-size: 13px;
  line-height: 1.55;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
h1, h2, p, dl, dd, dt, ol, ul, li {
  margin: 0;
  padding: 0;
}
ol, ul {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
button, input {
  font: inherit;
  color: inherit;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(20, 23, 26, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.site-brand {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 2px 0;
  border-bottom: 2px solid var(--rust);
}
.site-brand:hover {
  color: var(--rust-bright);
}
.category-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 14px;
  min-width: 0;
}
.runtime-category {
  color: var(--ink-dim);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  white-space: nowrap;
  padding: 2px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.runtime-category:hover {
  color: var(--rust-bright);
  border-bottom-color: var(--rust);
}
.page-main {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 16px 40px;
}
.section-heading {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
  padding-left: 9px;
  border-left: 3px solid var(--rust);
  line-height: 1.3;
}
.panel-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--ink-faint);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 26px 0 22px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.hero-backdrop {
  position: relative;
  min-width: 0;
}
.hero-poster-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  background: var(--ground-3);
  border: 1px solid var(--line);
}
.hero-poster-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 23, 26, 0) 42%, rgba(20, 23, 26, 0.86) 100%),
    linear-gradient(100deg, rgba(47, 90, 94, 0.28) 0%, rgba(20, 23, 26, 0) 55%);
  pointer-events: none;
}
.hero-poster {
  width: 100%;
  aspect-ratio: 2 / 3;
  height: auto;
  object-fit: cover;
  filter: grayscale(0.35) contrast(1.08) brightness(0.82);
}
.hero-code-overlay {
  position: absolute;
  top: 10px;
  left: 12px;
  right: 12px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  z-index: 2;
  pointer-events: none;
}
.code-char {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(232, 230, 225, 0.45);
  border: 1px solid rgba(232, 230, 225, 0.22);
  padding: 1px 5px;
  line-height: 1.4;
  backdrop-filter: blur(2px);
}
.code-char:nth-child(3n) {
  color: rgba(209, 84, 56, 0.72);
  border-color: rgba(209, 84, 56, 0.4);
}
.hero-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-tagline {
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--teal);
  color: #6fa7aa;
  border-left: 2px solid var(--teal);
  padding-left: 8px;
}
.movie-title {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--ink);
}
.hero-player-wrap {
  position: relative;
  width: 100%;
  min-width: 0;
  background: #0d0f11;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.hero-player-wrap video {
  display: block;
  width: 100%;
  background: #000;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  padding: 6px 7px;
  background: var(--ground-2);
  border-top: 1px solid var(--line);
}
.player-btn {
  background: var(--ground-3);
  border: 1px solid var(--line);
  color: var(--ink-dim);
  font-size: 11px;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.12s ease, border-color 0.12s ease, background 0.12s ease;
}
.player-btn:hover {
  color: var(--ink);
  border-color: #465057;
}
.player-btn.is-active, .player-btn.is-playing {
  color: #fff;
  background: var(--rust);
  border-color: var(--rust-bright);
}
.player-range {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  height: 16px;
  cursor: pointer;
  flex: 1 1 80px;
  min-width: 56px;
}
.player-range[data-player-action="volume"] {
  flex: 0 1 66px;
}
.player-range::-webkit-slider-runnable-track {
  height: 3px;
  background: #39424a;
}
.player-range::-moz-range-track {
  height: 3px;
  background: #39424a;
}
.player-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 9px;
  height: 9px;
  margin-top: -3px;
  background: var(--rust-bright);
  border-radius: 0;
}
.player-range::-moz-range-thumb {
  width: 9px;
  height: 9px;
  border: 0;
  background: var(--rust-bright);
  border-radius: 0;
}
.player-theater {
  position: fixed;
  inset: 0;
  z-index: 90;
  width: 100%;
  max-width: none;
  margin: 0;
  border: 0;
  background: #000;
  justify-content: center;
}
.player-theater video {
  flex: 0 0 auto;
  max-height: calc(100vh - 44px);
  object-fit: contain;
}
.lights-off .page-main {
  filter: brightness(0.42) saturate(0.7);
  transition: filter 0.25s ease;
}
.lights-off .hero-player-wrap {
  filter: none;
}
.episode-status {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  padding: 6px 0 7px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.status-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-faint);
}
.status-current {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--rust-bright);
}
.status-total {
  font-size: 11px;
  color: var(--ink-dim);
}
.details-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 10px 12px;
}
.details-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3px 18px;
}
.detail-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  min-width: 0;
  padding: 2px 0;
  border-bottom: 1px dashed rgba(46, 53, 60, 0.7);
}
.detail-row dt {
  flex: 0 0 62px;
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.06em;
}
.detail-row dd {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 12px;
  color: var(--ink);
}
.synopsis-section {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.synopsis-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 22px;
}
.synopsis-para {
  font-size: 12px;
  line-height: 1.68;
  color: var(--ink-dim);
  text-indent: 1.4em;
}
.cast-section {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.cast-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  align-items: start;
}
.cast-card {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 9px;
  align-items: center;
  padding: 6px 8px;
  background: var(--ground-2);
  border: 1px solid var(--line);
}
.cast-avatar {
  grid-row: 1 / span 2;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  background: linear-gradient(150deg, var(--teal-dim), var(--ground-3));
  border: 1px solid var(--line);
  letter-spacing: 0;
}
.cast-name {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
  line-height: 1.3;
}
.cast-role {
  font-size: 11px;
  color: var(--ink-faint);
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.timeline-section {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-top: 16px;
}
.timeline-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px 20px;
  padding-left: 14px;
}
.timeline-list::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 5px;
  bottom: 5px;
  width: 1px;
  background: linear-gradient(180deg, var(--rust) 0%, var(--teal) 55%, var(--line) 100%);
}
.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: baseline;
  gap: 8px;
  padding: 3px 0 3px 2px;
  min-width: 0;
}
.timeline-node {
  position: absolute;
  left: -14px;
  top: 8px;
  width: 7px;
  height: 7px;
  background: var(--rust-bright);
  box-shadow: 0 0 0 3px rgba(180, 69, 44, 0.18);
}
.timeline-timecode {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--rust-bright);
  white-space: nowrap;
}
.timeline-label {
  font-size: 12px;
  color: var(--ink-dim);
  min-width: 0;
}
.episodes-section {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-top: 16px;
}
.episode-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px 20px;
  align-items: start;
}
.episode-item {
  display: grid;
  grid-template-columns: auto auto 1fr;
  grid-template-rows: auto auto;
  align-items: baseline;
  gap: 0 9px;
  padding: 6px 8px;
  background: var(--ground-2);
  border: 1px solid var(--line);
  border-left: 2px solid var(--line);
}
.episode-number {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
  white-space: nowrap;
}
.episode-title {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.episode-duration {
  justify-self: end;
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.episode-summary {
  grid-column: 1 / -1;
  margin-top: 3px;
  padding-left: 10px;
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--ink-dim);
  border-left: 1px solid var(--line);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.episode-item-current {
  background: #241a18;
  border-color: rgba(180, 69, 44, 0.5);
  border-left-color: var(--rust-bright);
}
.episode-item-current .episode-number, .episode-item-current .episode-title {
  color: var(--rust-bright);
}
.episode-item-current .episode-duration {
  color: var(--ink-dim);
}
.comments-section {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-top: 16px;
}
.comment-columns {
  columns: 2;
  column-gap: 18px;
}
.comment-card {
  break-inside: avoid;
  display: block;
  margin-bottom: 6px;
  padding: 7px 9px;
  background: var(--ground-2);
  border: 1px solid var(--line);
  border-top: 2px solid var(--teal-dim);
}
.comment-nickname {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #7fb0b3;
  margin-bottom: 2px;
}
.comment-text {
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--ink-dim);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.recommend-section {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-top: 16px;
}
.recommend-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  align-items: start;
}
.recommend-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--ground-2);
  border: 1px solid var(--line);
  padding: 6px;
  min-width: 0;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.recommend-card:hover {
  border-color: var(--rust);
  background: #201a18;
}
.recommend-card[data-runtime="recommendation"] img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  background: var(--ground-3);
}
.recommend-pic {
  filter: grayscale(0.3) brightness(0.88);
}
.recommend-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.03em;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.recommend-blurb {
  font-size: 11px;
  line-height: 1.5;
  color: var(--ink-faint);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.site-footer {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px 16px 30px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 22px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
}
.footer-nav a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding-bottom: 1px;
  border-bottom: 1px solid transparent;
}
a[data-contract="footer-home"] {
  color: var(--ink);
  text-decoration: none;
  border-bottom-color: var(--rust);
}
a[data-contract="footer-home"]:hover {
  color: var(--rust-bright);
}
a[data-contract="footer-sitemap"] {
  color: var(--ink-dim);
  text-decoration: none;
}
a[data-contract="footer-sitemap"]:hover {
  color: var(--ink);
  border-bottom-color: var(--line);
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 12px;
  min-width: 0;
}
.friend-links-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--ink-faint);
}
a.runtime-friend-link {
  font-size: 11px;
  color: #6d8b8d;
  text-decoration: none;
  border-bottom: 1px dotted rgba(109, 139, 141, 0.4);
  white-space: nowrap;
}
a.runtime-friend-link:hover {
  color: #9fc4c6;
  text-decoration: none;
  border-bottom-color: #9fc4c6;
}
.footer-disclaimer {
  flex: 1 1 100%;
  font-size: 11px;
  line-height: 1.65;
  color: var(--ink-faint);
  padding-top: 6px;
  border-top: 1px dashed rgba(46, 53, 60, 0.8);
}
@media (max-width: 1024px) {.hero-section {
    grid-template-columns: minmax(0, 0.6fr) minmax(0, 1fr);
    gap: 18px;
  }
.movie-title {
    font-size: 26px;
  }
.timeline-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.recommend-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.cast-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }}
@media (max-width: 820px) {.hero-section {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }
.hero-poster-wrap {
    max-width: 320px;
  }
.synopsis-body {
    grid-template-columns: minmax(0, 1fr);
  }
.details-list {
    grid-template-columns: minmax(0, 1fr);
  }
.episode-list {
    grid-template-columns: minmax(0, 1fr);
  }
.recommend-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }}
@media (max-width: 560px) {.page-main {
    padding: 0 12px 32px;
  }
.header-inner {
    padding: 7px 12px;
    flex-wrap: wrap;
    gap: 6px 12px;
  }
.movie-title {
    font-size: 22px;
  }
.hero-tagline {
    font-size: 11px;
  }
.cast-row {
    grid-template-columns: minmax(0, 1fr);
  }
.timeline-list {
    grid-template-columns: minmax(0, 1fr);
  }
.comment-columns {
    columns: 1;
  }
.recommend-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.player-range[data-player-action="volume"] {
    flex: 1 1 56px;
  }
.site-footer {
    padding: 14px 12px 26px;
  }}

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}
