:root {
  --brass: #a8763e;
  --brass-deep: #6e4a24;
  --brass-bright: #c9964f;
  --rose-dark: #7d3b41;
  --rose-deep: #5a262c;
  --vinyl: #2b2723;
  --warm-grey: #3a3631;
  --warm-grey-2: #4b453e;
  --warm-grey-3: #5d564d;
  --pale: #d8cfc2;
  --pale-dim: #b3a99b;
  --cold-light: #e8e2d6;
  --line: rgba(200, 176, 138, 0.22);
  --line-strong: rgba(200, 176, 138, 0.4);
  --bg: #1c1916;
  --bg-2: #23201c;
  --bg-3: #2a2621;
  --font: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Heiti SC", "Noto Sans CJK SC", sans-serif;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--pale);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, p, ul, ol, dl, dd, dt {
  margin: 0;
  padding: 0;
}
ul, ol {
  list-style: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button, input, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
button {
  cursor: pointer;
  border: none;
  background: none;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(28, 25, 22, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 8px 16px;
}
a[data-contract="site-name"] {
  color: var(--brass-bright);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.14em;
  white-space: nowrap;
}
a[data-contract="site-name"]:hover, a[data-contract="site-name"]:focus-visible {
  color: var(--cold-light);
}
.categories-shell {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 6px;
  min-width: 0;
  flex: 1 1 auto;
}
a.runtime-category {
  display: inline-block;
  padding: 2px 9px;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--pale-dim);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.06em;
  white-space: nowrap;
  line-height: 1.6;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
a.runtime-category:hover, a.runtime-category:focus-visible {
  color: var(--brass-bright);
  border-color: var(--line-strong);
  background: rgba(168, 118, 62, 0.1);
}
.page-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px 40px;
}
.group-heading {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--brass-bright);
  text-transform: uppercase;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 10px;
}
.showcase-shell {
  margin-top: 16px;
  background: linear-gradient(160deg, var(--bg-2) 0%, var(--bg) 62%, #221a18 100%);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 16px;
  position: relative;
  overflow: hidden;
}
.showcase-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 22%, rgba(232, 226, 214, 0.09), transparent 46%);
  pointer-events: none;
}
.showcase-head {
  display: grid;
  grid-template-columns: 232px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  position: relative;
}
.poster-frame {
  position: sticky;
  top: 56px;
  width: 100%;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid var(--line-strong);
  background: var(--warm-grey);
  box-shadow: 0 12px 26px -14px rgba(0, 0, 0, 0.85);
}
.poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.06) brightness(0.94);
}
.showcase-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.movie-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.25;
  color: var(--cold-light);
}
.movie-tagline {
  font-size: 12px;
  color: var(--brass-bright);
  letter-spacing: 0.08em;
  padding-left: 9px;
  border-left: 2px solid var(--brass);
}
.movie-seo {
  font-size: 12px;
  line-height: 1.65;
  color: var(--pale-dim);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.player-frame {
  width: 100%;
  max-width: 100%;
  position: relative;
  background: #0f0d0b;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  overflow: hidden;
}
.player-frame video {
  display: block;
  width: 100%;
  background: #0f0d0b;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 6px;
  padding: 7px 8px;
  background: linear-gradient(180deg, #262220 0%, #1a1715 100%);
  border-top: 1px solid var(--line);
}
.ctrl-btn {
  padding: 3px 9px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--pale-dim);
  background: var(--warm-grey);
  border: 1px solid var(--line);
  border-radius: 2px;
  line-height: 1.5;
  white-space: nowrap;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.ctrl-btn:hover, .ctrl-btn:focus-visible {
  color: var(--brass-bright);
  border-color: var(--line-strong);
  background: var(--warm-grey-2);
}
.ctrl-btn.is-playing, .ctrl-btn.is-active {
  color: var(--bg);
  background: var(--brass);
  border-color: var(--brass-bright);
}
.ctrl-btn.is-muted {
  color: var(--rose-dark);
  border-color: var(--rose-dark);
}
.ctrl-progress {
  flex: 1 1 120px;
  min-width: 80px;
  height: 4px;
  margin: 0 2px;
  accent-color: var(--brass);
  background: transparent;
}
.ctrl-volume {
  flex: 0 1 72px;
  min-width: 52px;
  height: 4px;
  accent-color: var(--rose-dark);
  background: transparent;
}
.ctrl-speed {
  padding: 2px 4px;
  font-size: 11px;
  color: var(--pale-dim);
  background: var(--warm-grey);
  border: 1px solid var(--line);
  border-radius: 2px;
}
.cast-shell {
  padding-top: 10px;
  border-top: 1px dashed var(--line);
}
.cast-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
}
.cast-card {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 4px 9px 4px 4px;
  background: rgba(75, 69, 62, 0.32);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.cast-avatar {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--brass) 0%, var(--brass-deep) 55%, var(--vinyl) 100%);
  box-shadow: inset 0 0 0 1px rgba(232, 226, 214, 0.18);
}
.cast-name {
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--pale);
  white-space: nowrap;
}
.synopsis-shell {
  padding-top: 10px;
  border-top: 1px dashed var(--line);
}
.synopsis-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 16px;
}
.synopsis-para {
  font-size: 12px;
  line-height: 1.62;
  color: var(--pale-dim);
  padding-left: 8px;
  border-left: 1px solid var(--line);
}
.episode-status {
  padding-top: 10px;
  border-top: 1px dashed var(--line);
}
.status-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
}
.status-current {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--rose-dark);
  background: rgba(125, 59, 65, 0.14);
  border: 1px solid rgba(125, 59, 65, 0.5);
  border-radius: 2px;
  padding: 2px 9px;
}
.status-total {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--pale-dim);
}
.details-shell {
  padding-top: 10px;
  border-top: 1px dashed var(--line);
}
.details-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 18px;
}
.detail-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 4px 0;
  border-bottom: 1px solid rgba(200, 176, 138, 0.1);
  font-size: 12px;
}
.detail-key {
  flex: 0 0 4.5em;
  color: var(--warm-grey-3);
  letter-spacing: 0.1em;
}
.detail-value {
  flex: 1 1 auto;
  min-width: 0;
  color: var(--pale);
}
.timeline-shell {
  margin-top: 22px;
}
.timeline-track {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0 14px;
  padding: 12px 0 2px;
  position: relative;
}
.timeline-track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 30px;
  height: 1px;
  background: linear-gradient(90deg, rgba(168, 118, 62, 0.15), var(--line-strong) 45%, rgba(125, 59, 65, 0.65));
}
.timeline-node {
  position: relative;
  padding-top: 34px;
  min-width: 0;
}
.timeline-node::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, var(--warm-grey-2) 0%, var(--vinyl) 70%);
  border: 1px solid var(--line-strong);
  box-shadow: 0 0 0 3px var(--bg), 0 0 10px -2px rgba(232, 226, 214, 0.25);
  z-index: 1;
}
.timeline-node::after {
  content: "";
  position: absolute;
  top: 26px;
  left: 22px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brass);
  z-index: 2;
}
.node-timecode {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--brass-bright);
}
.node-label {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  line-height: 1.45;
  color: var(--pale-dim);
}
.episodes-shell {
  margin-top: 22px;
}
.episodes-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 18px;
  align-items: start;
}
.episode-column {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.episode-card {
  display: flex;
  gap: 9px;
  padding: 8px 10px;
  background: rgba(42, 38, 33, 0.55);
  border: 1px solid rgba(200, 176, 138, 0.14);
  border-radius: 2px;
  transition: border-color 0.15s, background 0.15s;
}
.episode-card:hover {
  border-color: var(--line-strong);
  background: var(--bg-3);
}
.episode-number {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--bg);
  background: var(--brass);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.35);
}
.episode-text {
  min-width: 0;
  flex: 1 1 auto;
}
.episode-title {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--cold-light);
  line-height: 1.35;
}
.episode-summary {
  margin-top: 2px;
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--pale-dim);
}
.episode-meta {
  margin-top: 3px;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--warm-grey-3);
}
.episode-card.is-current {
  background: linear-gradient(120deg, rgba(125, 59, 65, 0.24), rgba(42, 38, 33, 0.6));
  border-color: rgba(125, 59, 65, 0.62);
}
.episode-card.is-current .episode-number {
  background: var(--rose-dark);
  color: var(--cold-light);
}
.episode-card.is-current .episode-title {
  color: var(--brass-bright);
}
.comments-shell {
  margin-top: 22px;
}
.comment-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  align-items: start;
}
.comment-note {
  padding: 8px 10px;
  background: rgba(75, 69, 62, 0.34);
  border: 1px solid var(--line);
  border-left: 2px solid var(--brass-deep);
  border-radius: 2px;
  transform: rotate(-0.4deg);
  transition: transform 0.15s, border-color 0.15s;
}
.comment-note:nth-child(2n) {
  transform: rotate(0.5deg);
  border-left-color: var(--rose-dark);
}
.comment-note:nth-child(3n) {
  transform: rotate(-0.7deg);
}
.comment-note:hover {
  transform: rotate(0deg);
  border-color: var(--line-strong);
}
.comment-nick {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--brass-bright);
  margin-bottom: 3px;
}
.comment-text {
  font-size: 11.5px;
  line-height: 1.55;
  color: var(--pale-dim);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(180deg, #000 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 60%, transparent 100%);
}
.rec-region {
  margin-top: 22px;
}
.rec-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-bright);
  padding-bottom: 5px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 10px;
}
.rec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  align-items: start;
}
a.rec-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 10px;
  background: rgba(42, 38, 33, 0.55);
  border: 1px solid rgba(200, 176, 138, 0.14);
  border-radius: 2px;
  color: var(--pale);
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}
a.rec-card:hover, a.rec-card:focus-visible {
  border-color: var(--brass);
  background: var(--bg-3);
}
[data-runtime="recommendation"] img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  border-radius: 2px;
  border: 1px solid var(--line);
  filter: saturate(0.8) contrast(1.04) brightness(0.9);
}
.rec-name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--cold-light);
  line-height: 1.35;
}
.rec-blurb {
  font-size: 11px;
  line-height: 1.5;
  color: var(--pale-dim);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.site-footer {
  margin-top: 34px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg-2), #17140f);
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 16px 26px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 16px 28px;
  align-items: start;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  color: var(--brass-bright);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.1em;
  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, a[data-contract="footer-home"]:focus-visible, a[data-contract="footer-sitemap"]:focus-visible {
  color: var(--cold-light);
  border-bottom-color: var(--line-strong);
}
.friend-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--warm-grey-3);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.friend-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
}
a.runtime-friend-link {
  color: var(--pale-dim);
  text-decoration: none;
  font-size: 11.5px;
  white-space: nowrap;
  transition: color 0.15s;
}
a.runtime-friend-link:hover, a.runtime-friend-link:focus-visible {
  color: var(--rose-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-disclaimer {
  grid-column: 1 / -1;
  font-size: 10.5px;
  line-height: 1.6;
  color: var(--warm-grey-3);
  padding-top: 12px;
  border-top: 1px solid rgba(200, 176, 138, 0.12);
}
body.lights-off {
  background: #0b0a09;
}
body.lights-off .page-main, body.lights-off .site-header, body.lights-off .site-footer {
  opacity: 0.32;
  transition: opacity 0.3s;
}
body.lights-off .player-frame {
  opacity: 1;
}
.showcase-shell.theater-mode {
  background: #100e0c;
}
.showcase-shell.theater-mode .showcase-head {
  grid-template-columns: minmax(0, 1fr);
}
.showcase-shell.theater-mode .poster-frame {
  display: none;
}
.player-frame:fullscreen {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0;
}
.player-frame:fullscreen video {
  height: calc(100% - 42px);
  object-fit: contain;
}
@media (max-width: 960px) {.showcase-head {
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 14px;
  }
.poster-frame {
    position: static;
  }
.comment-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.rec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.footer-inner {
    grid-template-columns: minmax(0, 1fr);
  }}
@media (max-width: 720px) {body {
    font-size: 12.5px;
  }
.header-inner {
    flex-wrap: wrap;
    gap: 6px 12px;
    padding: 7px 12px;
  }
.page-main {
    padding: 0 12px 32px;
  }
.showcase-shell {
    padding: 12px;
    margin-top: 12px;
  }
.showcase-head {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }
.poster-frame {
    max-width: 210px;
  }
.movie-title {
    font-size: 19px;
  }
.synopsis-body {
    grid-template-columns: minmax(0, 1fr);
    gap: 5px;
  }
.details-list {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }
.timeline-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
    padding-top: 4px;
  }
.timeline-track::before {
    display: none;
  }
.timeline-node {
    padding-top: 26px;
  }
.timeline-node::before {
    top: 12px;
  }
.timeline-node::after {
    top: 20px;
  }
.episodes-columns {
    grid-template-columns: minmax(0, 1fr);
    gap: 6px;
  }
.comment-stack {
    grid-template-columns: minmax(0, 1fr);
  }
.comment-note, .comment-note:nth-child(2n), .comment-note:nth-child(3n) {
    transform: none;
  }
.rec-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.footer-inner {
    padding: 16px 12px 24px;
    gap: 14px;
  }
.player-controls {
    gap: 4px 5px;
    padding: 6px;
  }
.ctrl-btn {
    padding: 3px 7px;
    font-size: 10.5px;
  }}
@media (max-width: 420px) {.cast-card {
    padding-right: 7px;
  }
.cast-name {
    font-size: 11.5px;
  }
.node-label {
    font-size: 11.5px;
  }
.episode-summary {
    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}
