:root {
  --bg: #0e1218;
  --bg-soft: #141a22;
  --bg-panel: #171e27;
  --bg-panel-2: #1b232e;
  --line: #26303c;
  --line-soft: #1f2833;
  --text: #cdd6e0;
  --text-dim: #8b96a4;
  --text-mute: #66707d;
  --wine: #6e2233;
  --wine-soft: #8a2d42;
  --wine-glow: #b03a55;
  --steel: #4a5a6e;
  --highlight: #dfe8f2;
  --font: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", "Source Han Sans SC", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, p, ol, ul, dl, dd, dt {
  margin: 0;
  padding: 0;
}
ol, ul { list-style: none; }
img, video { max-width: 100%; display: block; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 13px;
  line-height: 1.45;
  letter-spacing: 0.01em;
  font-stretch: condensed;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3 { font-weight: 700; line-height: 1.2; letter-spacing: 0.02em; }
a { color: var(--text-dim); text-decoration: none; }
a:hover { color: var(--highlight); }
a[data-contract="site-name"] {
  color: var(--highlight);
  text-decoration: none;
  letter-spacing: 0.14em;
  font-weight: 700;
}
a[data-contract="site-name"]:hover { color: var(--wine-glow); text-decoration: none; }
a.runtime-category {
  color: var(--text-dim);
  text-decoration: none;
  white-space: nowrap;
  font-size: 12px;
  padding: 3px 9px;
  border: 1px solid var(--line);
  border-radius: 2px;
  transition: color .15s, border-color .15s, background .15s;
  display: inline-block;
  line-height: 1.3;
}
a.runtime-category:hover {
  color: var(--highlight);
  border-color: var(--wine-soft);
  background: rgba(110, 34, 51, 0.18);
  text-decoration: none;
}
a.tag-card {
  color: var(--text);
  text-decoration: none;
  display: block;
}
a.tag-card:hover { color: var(--highlight); text-decoration: none; }
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.06em;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: var(--wine-glow);
  text-decoration: underline;
  text-underline-offset: 3px;
}
a.runtime-friend-link {
  color: var(--text-mute);
  text-decoration: none;
  font-size: 11px;
  padding: 2px 8px;
  border: 1px solid var(--line-soft);
  border-radius: 2px;
  white-space: nowrap;
  transition: color .15s, border-color .15s;
}
a.runtime-friend-link:hover {
  color: var(--text);
  border-color: var(--steel);
  text-decoration: none;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(14, 18, 24, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.brand {
  font-size: 15px;
  flex: 0 0 auto;
}
.category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
}
.page-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px 40px;
}
.hero-watch {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  grid-template-areas:
    "figure player"
    "rail rail";
  gap: 14px;
  padding: 18px 0 20px;
  border-bottom: 1px solid var(--line);
}
.hero-figure {
  grid-area: figure;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  min-height: 0;
  align-self: start;
}
.hero-backdrop {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,18,24,0.05) 30%, rgba(14,18,24,0.85) 100%);
  pointer-events: none;
}
.hero-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.35) contrast(1.05) brightness(0.82);
}
.hero-maid-silhouette {
  position: absolute;
  bottom: 0;
  right: -6%;
  width: 52%;
  height: 78%;
  background: radial-gradient(60% 70% at 60% 30%, rgba(223,232,242,0.16), rgba(110,34,51,0.24) 55%, transparent 78%);
  filter: blur(14px);
  pointer-events: none;
  z-index: 1;
}
.hero-maid-silhouette::before {
  content: "";
  position: absolute;
  inset: 12% 18% 0 14%;
  border-left: 1px solid rgba(223,232,242,0.28);
  border-top: 1px solid rgba(223,232,242,0.22);
  border-radius: 60% 40% 0 0 / 30% 30% 0 0;
  box-shadow: -1px -1px 12px rgba(223,232,242,0.18);
}
.hero-caption {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  padding: 12px 14px;
  border-left: 3px solid var(--wine);
  background: linear-gradient(90deg, rgba(14,18,24,0.9), rgba(14,18,24,0));
  width: 100%;
}
.hero-kicker {
  font-size: 12px;
  letter-spacing: 0.4em;
  color: var(--highlight);
  text-transform: none;
  font-weight: 700;
}
.player-shell {
  grid-area: player;
  position: relative;
  align-self: start;
  border: 1px solid var(--line);
  background: #05070a;
  width: 100%;
  min-width: 0;
}
.player-shell video {
  display: block;
  width: 100%;
  background: #000;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  padding: 7px 8px;
  background: var(--bg-panel);
  border-top: 1px solid var(--line);
}
.control-btn {
  font-family: var(--font);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  background: var(--bg-panel-2);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 4px 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: color .15s, border-color .15s, background .15s;
}
.control-btn:hover {
  color: var(--highlight);
  border-color: var(--steel);
}
.control-btn.is-active {
  color: var(--highlight);
  border-color: var(--wine-soft);
  background: rgba(110, 34, 51, 0.28);
}
.control-progress {
  flex: 1 1 140px;
  min-width: 90px;
  height: 4px;
  accent-color: var(--wine-glow);
  cursor: pointer;
}
.control-volume {
  flex: 0 1 80px;
  min-width: 60px;
  height: 4px;
  accent-color: var(--steel);
  cursor: pointer;
}
.player-shell.is-theater {
  box-shadow: 0 0 0 2px var(--wine-soft) inset;
}
.player-shell.is-lights-off {
  background: #000;
}
.player-shell.is-lights-off .player-controls {
  background: #0a0d11;
  border-top-color: #1a2029;
}
.timeline-rail {
  grid-area: rail;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 10px 0 12px;
  background: linear-gradient(180deg, rgba(23,30,39,0.6), rgba(14,18,24,0));
}
.rail-title {
  font-size: 12px;
  letter-spacing: 0.28em;
  color: var(--text-dim);
  font-weight: 700;
  margin-bottom: 8px;
  padding-left: 2px;
}
.rail-track {
  display: flex;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: thin;
  scrollbar-color: var(--steel) transparent;
}
.rail-track::-webkit-scrollbar { height: 5px; }
.rail-track::-webkit-scrollbar-thumb { background: var(--steel); border-radius: 3px; }
.rail-track::-webkit-scrollbar-track { background: var(--line-soft); }
.rail-node {
  flex: 0 0 auto;
  position: relative;
  min-width: 132px;
  max-width: 168px;
  padding: 10px 12px 6px 14px;
  border-left: 1px solid var(--line);
}
.rail-node::before {
  content: "";
  position: absolute;
  left: -3px;
  top: 14px;
  width: 5px;
  height: 5px;
  background: var(--wine-glow);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--wine-glow);
}
.rail-node:first-child { border-left-color: transparent; }
.rail-node:first-child::before { background: var(--highlight); box-shadow: 0 0 6px var(--highlight); }
.rail-time {
  display: block;
  font-size: 11px;
  color: var(--wine-glow);
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 3px;
}
.rail-label {
  display: block;
  font-size: 11px;
  color: var(--text-dim);
  line-height: 1.35;
}
.episode-grid {
  padding: 22px 0 20px;
  border-bottom: 1px solid var(--line);
}
.grid-head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 12px;
}
.grid-title {
  font-size: 16px;
  letter-spacing: 0.14em;
  color: var(--highlight);
}
.grid-sub {
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.08em;
}
.episode-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.episode-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 9px 10px 10px;
  background: var(--bg-panel);
  border: 1px solid var(--line-soft);
  border-left: 2px solid var(--line);
  min-width: 0;
  transition: border-color .15s, background .15s;
}
.episode-card:hover {
  border-left-color: var(--wine-soft);
  background: var(--bg-panel-2);
}
.episode-card-current {
  border-left-color: var(--wine-glow);
  background: linear-gradient(180deg, rgba(110,34,51,0.22), rgba(23,30,39,0.9));
  box-shadow: 0 0 0 1px rgba(176,58,85,0.4);
}
.episode-card-current .episode-number { color: var(--highlight); }
.episode-number {
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--wine-glow);
  font-weight: 700;
}
.episode-title {
  font-size: 13px;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.episode-summary {
  font-size: 11px;
  line-height: 1.4;
  color: var(--text-mute);
  flex: 1 1 auto;
}
.episode-duration {
  font-size: 10px;
  color: var(--steel);
  letter-spacing: 0.06em;
  align-self: flex-start;
}
.movie-zone {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 20px;
  padding: 22px 0 20px;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.poster-column { align-self: start; min-width: 0; }
.poster-frame {
  position: relative;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  overflow: hidden;
}
.poster-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 40px rgba(0,0,0,0.6);
  pointer-events: none;
}
.poster-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  filter: grayscale(0.2) contrast(1.05) brightness(0.88);
}
.info-column {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.title-block {
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}
.movie-title {
  font-size: 24px;
  letter-spacing: 0.06em;
  color: var(--highlight);
  margin-bottom: 6px;
}
.movie-tagline {
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--wine-glow);
  font-weight: 700;
}
.block-heading {
  font-size: 12px;
  letter-spacing: 0.24em;
  color: var(--text-dim);
  font-weight: 700;
  margin-bottom: 8px;
  padding-left: 8px;
  border-left: 2px solid var(--wine);
  line-height: 1;
}
.cast-strip { min-width: 0; }
.cast-list {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: thin;
  scrollbar-color: var(--steel) transparent;
}
.cast-list::-webkit-scrollbar { height: 4px; }
.cast-list::-webkit-scrollbar-thumb { background: var(--steel); border-radius: 3px; }
.cast-list::-webkit-scrollbar-track { background: var(--line-soft); }
.cast-item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  width: 68px;
  text-align: center;
}
.cast-avatar {
  display: block;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 30%, rgba(223,232,242,0.22), transparent 60%),
    linear-gradient(160deg, var(--steel), var(--bg-panel-2) 70%);
  border: 1px solid var(--line);
  box-shadow: 0 0 0 1px rgba(110,34,51,0.35) inset, 0 0 8px rgba(0,0,0,0.5);
}
.cast-name {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.synopsis-block {
  border-top: 1px solid var(--line-soft);
  padding-top: 12px;
}
.synopsis-lead {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 8px;
  padding-left: 8px;
  border-left: 2px solid var(--line);
}
.synopsis-para {
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-dim);
  margin-bottom: 6px;
}
.episode-status {
  border-top: 1px solid var(--line-soft);
  padding-top: 12px;
}
.status-line {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
}
.status-current {
  color: var(--highlight);
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border: 1px solid var(--wine-soft);
  background: rgba(110,34,51,0.2);
  border-radius: 2px;
}
.status-total {
  color: var(--text-mute);
  letter-spacing: 0.06em;
}
.details-block {
  border-top: 1px solid var(--line-soft);
  padding-top: 12px;
}
.detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 16px;
}
.detail-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 5px 0;
  border-bottom: 1px dotted var(--line-soft);
  min-width: 0;
}
.detail-key {
  flex: 0 0 auto;
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.1em;
  min-width: 48px;
}
.detail-value {
  flex: 1 1 auto;
  font-size: 12px;
  color: var(--text);
  min-width: 0;
  word-break: break-word;
}
.comments-zone {
  padding: 22px 0 20px;
  border-bottom: 1px solid var(--line);
}
.zone-heading {
  font-size: 15px;
  letter-spacing: 0.16em;
  color: var(--highlight);
  margin-bottom: 12px;
}
.comment-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: start;
}
.comment-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.comment-note {
  position: relative;
  padding: 9px 11px 10px;
  background: var(--bg-panel);
  border: 1px solid var(--line-soft);
  border-bottom: 2px solid var(--wine);
  min-width: 0;
  transform: rotate(-0.25deg);
}
.comment-column .comment-note:nth-child(even) { transform: rotate(0.3deg); }
.comment-text {
  font-size: 12px;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 6px;
  word-break: break-word;
}
.comment-author {
  font-size: 11px;
  color: var(--wine-glow);
  letter-spacing: 0.08em;
  text-align: right;
}
.comment-author::before { content: "— "; color: var(--text-mute); }
.recommend-region {
  padding: 18px 0 16px;
  border-bottom: 1px solid var(--line-soft);
}
.recommend-region:last-of-type { border-bottom: none; }
.region-heading {
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 10px;
  padding-left: 8px;
  border-left: 2px solid var(--wine);
}
.tag-wall {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}
.tag-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: var(--bg-panel);
  border: 1px solid var(--line-soft);
  min-width: 0;
  transition: border-color .15s, transform .15s;
}
.tag-card:hover {
  border-color: var(--steel);
  transform: translateY(-2px);
}
[data-runtime="recommendation"] img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  filter: grayscale(0.25) brightness(0.85);
  border: 1px solid var(--line-soft);
}
.tag-name {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
  line-height: 1.3;
}
.tag-blurb {
  font-size: 10.5px;
  line-height: 1.35;
  color: var(--text-mute);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
  padding: 18px 20px 22px;
}
.footer-top {
  max-width: 1280px;
  margin: 0 auto 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  gap: 14px;
  flex: 0 0 auto;
}
.footer-disclaimer {
  flex: 1 1 320px;
  font-size: 11px;
  line-height: 1.5;
  color: var(--text-mute);
  max-width: 720px;
}
.friend-links {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
.friend-links-label {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.16em;
  margin-right: 4px;
  flex: 0 0 auto;
}
@media (max-width: 1080px) {.hero-watch {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "player"
      "figure"
      "rail";
  }
.hero-figure { max-width: 420px; }
.episode-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.tag-wall { grid-template-columns: repeat(4, minmax(0, 1fr)); }}
@media (max-width: 860px) {.movie-zone {
    grid-template-columns: 1fr;
    gap: 16px;
  }
.poster-column { max-width: 240px; }
.episode-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.tag-wall { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.comment-columns { grid-template-columns: 1fr; }
.detail-list { grid-template-columns: 1fr; }}
@media (max-width: 620px) {body { font-size: 12.5px; }
.page-main { padding: 0 12px 28px; }
.header-inner { padding: 8px 12px; gap: 10px; }
.site-footer { padding: 16px 12px 20px; }
.hero-watch { gap: 10px; padding: 12px 0 14px; }
.hero-figure { max-width: none; }
.movie-title { font-size: 19px; }
.episode-cards { grid-template-columns: 1fr; }
.tag-wall { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.rail-node { min-width: 118px; }
.player-controls { gap: 4px; }
.control-btn { font-size: 10.5px; padding: 4px 6px; }
.control-progress { flex-basis: 100%; }
.footer-top { flex-direction: column; gap: 10px; }
.footer-disclaimer { flex-basis: auto; }}
@media (max-width: 380px) {.tag-wall { grid-template-columns: 1fr; }
.cast-item { width: 60px; }
.cast-avatar { width: 46px; height: 46px; }}

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}
