:root {
  --c-deep-red: #5c1a1e;
  --c-wine: #7a2229;
  --c-rust: #8f3a33;
  --c-slate: #3d4a58;
  --c-slate-light: #6b7a8a;
  --c-cream: #ece5d8;
  --c-cream-dim: #d8cfbf;
  --c-ink: #1a1614;
  --c-ink-soft: #2e2823;
  --c-line: #4a3f38;
  --c-line-dim: #6a5c52;
  --c-highlight: #c9a24b;
  --c-bg: #17120f;
  --c-surface: #1f1815;
  --c-surface-2: #251d19;
  --f-narrow: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --f-body: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --gap-tight: 6px;
  --gap-sm: 10px;
  --gap-md: 16px;
  --gap-lg: 28px;
  --radius: 2px;
  --page-max: 1180px;
  --side-pad: 20px;
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  background-color: var(--c-bg);
  background-image:
    radial-gradient(ellipse 120% 60% at 78% -6%, rgba(122, 34, 41, 0.42) 0%, rgba(122, 34, 41, 0) 62%),
    linear-gradient(178deg, #1b1411 0%, #17120f 46%, #14100e 100%);
  color: var(--c-cream-dim);
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.62;
  letter-spacing: 0.01em;
  min-height: 100vh;
  overflow-x: hidden;
}
body.lights-off {
  background-image: linear-gradient(178deg, #0b0908 0%, #090706 60%, #060504 100%);
}
body.lights-off .player-shell {
  box-shadow: 0 0 0 1px rgba(201, 162, 75, 0.28), 0 0 42px rgba(201, 162, 75, 0.09);
}
img, video {
  display: block;
  max-width: 100%;
}
ul, ol, li {
  list-style: none;
}
h1, h2, h3 {
  font-family: var(--f-narrow);
  font-weight: 500;
  line-height: 1.28;
  color: var(--c-cream);
}
a {
  color: inherit;
  text-decoration: none;
}
button, input, select {
  font: inherit;
  color: inherit;
}
:focus-visible {
  outline: 1px solid var(--c-highlight);
  outline-offset: 2px;
}
a[data-contract="site-name"] {
  color: var(--c-cream);
  text-decoration: none;
  letter-spacing: 0.24em;
  font-weight: 500;
  font-size: 13px;
  white-space: nowrap;
}
a[data-contract="site-name"]:hover {
  color: var(--c-highlight);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
a.runtime-category {
  color: var(--c-cream-dim);
  text-decoration: none;
  white-space: nowrap;
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  transition: color 0.16s ease, border-color 0.16s ease, background-color 0.16s ease;
}
a.runtime-category:hover {
  color: var(--c-cream);
  border-color: var(--c-rust);
  background-color: rgba(122, 34, 41, 0.26);
}
a[data-runtime="recommendation"] {
  color: var(--c-cream-dim);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
}
a[data-runtime="recommendation"]:hover {
  color: var(--c-cream);
  text-decoration: none;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  color: var(--c-slate-light);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.08em;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: var(--c-cream);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
a.runtime-friend-link {
  color: var(--c-slate-light);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
a.runtime-friend-link:hover {
  color: var(--c-cream-dim);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap-sm);
  padding: 9px var(--side-pad);
  border-bottom: 1px solid var(--c-line);
  background-color: rgba(23, 18, 15, 0.9);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.brand {
  flex: 0 0 auto;
}
.categories-bar {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.categories-bar::-webkit-scrollbar {
  display: none;
}
.page-main {
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--side-pad) 26px;
}
.hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 240px) minmax(0, 1fr);
  gap: var(--gap-lg);
  align-items: start;
  padding: 26px 0 30px;
  border-bottom: 1px solid var(--c-line);
}
.hero-poster-wrap {
  position: relative;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background-color: var(--c-surface-2);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(74, 63, 56, 0.8);
}
.hero-poster-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(122, 34, 41, 0.22) 0%, rgba(23, 18, 15, 0) 42%, rgba(23, 18, 15, 0.58) 100%);
  pointer-events: none;
}
.hero-poster {
  width: 100%;
  aspect-ratio: 2 / 3;
  height: auto;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.06) brightness(0.94);
}
.hero-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  align-self: start;
}
.hero-title {
  font-size: 27px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--c-cream);
  max-width: 22ch;
}
.hero-tagline {
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--c-rust);
  padding-left: 11px;
  border-left: 2px solid var(--c-wine);
  line-height: 1.5;
  max-width: 34ch;
}
.hero-seo {
  font-size: 12.5px;
  line-height: 1.72;
  color: var(--c-slate-light);
  max-width: 62ch;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--c-line);
}
.cast-block {
  display: flex;
  flex-direction: column;
  gap: var(--gap-tight);
}
.cast-heading, .synopsis-heading, .details-heading, .timeline-heading, .episodes-heading, .comments-heading, .recommend-heading {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--c-cream);
  text-transform: none;
  padding-left: 9px;
  border-left: 2px solid var(--c-wine);
  line-height: 1.3;
}
.cast-list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 8px 10px;
  padding-top: 2px;
}
.cast-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 54px;
  font-size: 10.5px;
  letter-spacing: 0.02em;
  color: var(--c-cream-dim);
  text-align: center;
  line-height: 1.3;
}
.cast-item::before {
  content: "";
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 30%, rgba(236, 229, 216, 0.22) 0%, rgba(236, 229, 216, 0) 58%),
    linear-gradient(160deg, var(--c-slate) 0%, #29323c 52%, var(--c-deep-red) 100%);
  box-shadow: inset 0 0 0 1px rgba(74, 63, 56, 0.9);
}
.episode-status-block {
  padding: 7px 10px;
  background-color: rgba(92, 26, 30, 0.24);
  border-left: 2px solid var(--c-rust);
  border-radius: var(--radius);
  align-self: start;
}
.episode-status-text {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--c-cream);
}
.synopsis-block {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.synopsis-para {
  font-size: 12.5px;
  line-height: 1.74;
  color: var(--c-slate-light);
  max-width: 68ch;
  text-indent: 0;
}
.details-block {
  display: flex;
  flex-direction: column;
  gap: var(--gap-tight);
  padding-top: 10px;
  border-top: 1px solid var(--c-line);
}
.details-list {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr) max-content minmax(0, 1fr);
  gap: 3px 14px;
  align-items: baseline;
}
.details-key {
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--c-line-dim);
  white-space: nowrap;
}
.details-value {
  font-size: 12.5px;
  color: var(--c-cream-dim);
  margin: 0;
  overflow-wrap: anywhere;
}
.player-section {
  padding: 20px 0 22px;
  border-bottom: 1px solid var(--c-line);
}
.player-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background-color: #0d0a09;
  box-shadow: 0 0 0 1px rgba(74, 63, 56, 0.85);
  transition: box-shadow 0.2s ease;
}
.player-shell video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #000;
  object-fit: contain;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  background-color: var(--c-surface);
  border-top: 1px solid var(--c-line);
}
.ctrl-btn {
  appearance: none;
  border: 1px solid var(--c-line);
  background-color: transparent;
  color: var(--c-cream-dim);
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 4px 9px;
  border-radius: var(--radius);
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.16s ease, border-color 0.16s ease, background-color 0.16s ease;
}
.ctrl-btn:hover {
  color: var(--c-cream);
  border-color: var(--c-rust);
  background-color: rgba(122, 34, 41, 0.22);
}
.ctrl-btn.is-active {
  color: var(--c-ink);
  background-color: var(--c-highlight);
  border-color: var(--c-highlight);
}
.ctrl-progress {
  appearance: none;
  -webkit-appearance: none;
  flex: 1 1 min(240px, 100%);
  min-width: 120px;
  height: 4px;
  border-radius: var(--radius);
  background: linear-gradient(90deg, var(--c-wine) 0%, var(--c-line) 0%);
  background-color: var(--c-line);
  cursor: pointer;
  accent-color: var(--c-rust);
}
.ctrl-progress::-webkit-slider-thumb, .ctrl-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--c-cream);
  border: 1px solid var(--c-wine);
  cursor: pointer;
}
.ctrl-progress::-moz-range-thumb, .ctrl-volume::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border: 1px solid var(--c-wine);
  border-radius: 50%;
  background-color: var(--c-cream);
  cursor: pointer;
}
.ctrl-volume {
  appearance: none;
  -webkit-appearance: none;
  flex: 0 1 88px;
  min-width: 60px;
  height: 4px;
  border-radius: var(--radius);
  background-color: var(--c-line);
  cursor: pointer;
  accent-color: var(--c-rust);
}
.ctrl-speed {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid var(--c-line);
  background-color: transparent;
  color: var(--c-cream-dim);
  font-size: 11px;
  padding: 4px 6px;
  border-radius: var(--radius);
  cursor: pointer;
}
.ctrl-speed:hover {
  color: var(--c-cream);
  border-color: var(--c-rust);
}
.timeline-section {
  padding: 22px 0 20px;
  border-bottom: 1px solid var(--c-line);
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.timeline-track {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  align-items: start;
  position: relative;
}
.timeline-node {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 15px 10px 2px 0;
  min-width: 0;
}
.timeline-node::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--c-surface);
  border: 1px solid var(--c-line-dim);
  z-index: 2;
}
.timeline-node::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  right: 0;
  height: 1px;
  background-color: var(--c-line);
  z-index: 1;
}
.timeline-node:last-child::after {
  right: 100%;
}
.timeline-node-current::before {
  background-color: var(--c-highlight);
  border-color: var(--c-highlight);
  box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.16);
}
.timeline-node-current::after {
  background: linear-gradient(90deg, var(--c-highlight) 0%, var(--c-line) 100%);
}
.timeline-timecode {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--c-line-dim);
  white-space: nowrap;
}
.timeline-node-current .timeline-timecode {
  color: var(--c-highlight);
}
.timeline-label {
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--c-slate-light);
  overflow-wrap: anywhere;
}
.timeline-node-current .timeline-label {
  color: var(--c-cream);
}
.episodes-section {
  padding: 22px 0 20px;
  border-bottom: 1px solid var(--c-line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.episodes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 22px;
  align-items: start;
}
.episode-card {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 9px 0 10px;
  border-top: 1px solid var(--c-line);
  min-width: 0;
}
.episode-number {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--c-rust);
}
.episode-title {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--c-cream);
}
.episode-summary {
  font-size: 12px;
  line-height: 1.62;
  color: var(--c-slate-light);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  overflow: hidden;
  margin-top: 1px;
}
.episode-duration {
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--c-line-dim);
  margin-top: 3px;
}
.episode-card-final {
  border-top-color: var(--c-rust);
}
.episode-card-final .episode-number {
  color: var(--c-highlight);
}
.episode-card-final .episode-title {
  color: var(--c-highlight);
}
.comments-section {
  padding: 20px 0 18px;
  border-bottom: 1px solid var(--c-line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.comments-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 24px;
  align-items: start;
}
.comment-item {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 8px 0 9px;
  border-top: 1px solid var(--c-line);
  min-width: 0;
}
.comment-nickname {
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--c-cream);
  font-weight: 500;
}
.comment-text {
  font-size: 12px;
  line-height: 1.66;
  color: var(--c-slate-light);
  margin: 0;
  overflow-wrap: anywhere;
}
.recommend-section {
  padding: 16px 0 12px;
  border-bottom: 1px solid var(--c-line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.recommend-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.recommend-item {
  display: flex;
  align-items: stretch;
  border-top: 1px solid var(--c-line);
}
.recommend-item:first-child {
  border-top: none;
}
.recommend-item a[data-runtime="recommendation"] {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 4px 12px;
  width: 100%;
  padding: 7px 0;
  min-width: 0;
}
[data-runtime="recommendation"] img {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
[data-runtime="recommendation"] [data-runtime="name"] {
  font-size: 12.5px;
  letter-spacing: 0.03em;
  color: var(--c-cream-dim);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}
[data-runtime="recommendation"] [data-runtime="blurb"] {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--c-line-dim);
  white-space: nowrap;
  justify-self: end;
}
.recommend-item a[data-runtime="recommendation"]:hover [data-runtime="name"] {
  color: var(--c-highlight);
}
.recommend-section-2 .recommend-heading {
  border-left-color: var(--c-slate);
}
.recommend-section-3 .recommend-heading {
  border-left-color: var(--c-highlight);
}
.site-footer {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 16px var(--side-pad) 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--c-line);
}
.footer-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 14px;
}
.friend-links-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--c-line-dim);
  white-space: nowrap;
}
.footer-disclaimer {
  font-size: 11px;
  line-height: 1.7;
  color: #6a5c52;
  max-width: 74ch;
  padding-top: 6px;
  border-top: 1px solid rgba(74, 63, 56, 0.55);
}
@media (max-width: 900px) {.hero-panel {
    grid-template-columns: minmax(0, 200px) minmax(0, 1fr);
    gap: 20px;
  }
.hero-title {
    font-size: 23px;
  }
.details-list {
    grid-template-columns: max-content minmax(0, 1fr);
  }
.timeline-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.timeline-node:nth-child(3)::after, .timeline-node:nth-child(6)::after {
    right: 100%;
  }}
@media (max-width: 720px) {:root {
    --side-pad: 14px;
  }
.hero-panel {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    padding: 18px 0 22px;
  }
.hero-poster-wrap {
    max-width: 210px;
  }
.hero-title {
    font-size: 21px;
  }
.episodes-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }
.comments-list {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }
.timeline-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.timeline-node:nth-child(3)::after {
    right: 0;
  }
.timeline-node:nth-child(2n)::after {
    right: 100%;
  }
.timeline-node:nth-child(5)::after {
    right: 0;
  }
.player-controls {
    gap: 5px;
    padding: 7px 8px;
  }
.ctrl-progress {
    flex: 1 1 100%;
    order: -1;
  }
.ctrl-volume {
    flex: 1 1 70px;
  }
.recommend-item a[data-runtime="recommendation"] {
    grid-template-columns: minmax(0, 1fr);
    gap: 1px;
  }
[data-runtime="recommendation"] [data-runtime="blurb"] {
    justify-self: start;
    white-space: normal;
  }}
@media (max-width: 420px) {.site-header {
    padding: 8px 12px;
  }
.hero-poster-wrap {
    max-width: 170px;
  }
.cast-list {
    gap: 6px 8px;
  }
.cast-item {
    width: 48px;
    font-size: 10px;
  }
.cast-item::before {
    width: 34px;
    height: 34px;
  }
.hero-title {
    font-size: 19px;
  }
.timeline-track {
    grid-template-columns: minmax(0, 1fr);
  }
.timeline-node::after {
    right: 100%;
  }
.ctrl-btn {
    padding: 4px 7px;
    font-size: 10.5px;
  }}

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}
