:root {
  --ink: #0b0f0c;
  --ink-2: #101711;
  --ink-3: #16201a;
  --moss: #16301f;
  --moss-2: #1d3d28;
  --moss-deep: #0d1a12;
  --gold: #c9a34a;
  --gold-2: #e3c477;
  --gold-dim: #8d7233;
  --amber: #e8a94b;
  --neon: #a8326e;
  --neon-2: #d94f9a;
  --paper: #ece4d2;
  --paper-dim: #b7ab93;
  --line: rgba(201, 163, 74, 0.28);
  --line-soft: rgba(201, 163, 74, 0.13);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
  --serif: "Songti SC", "STSong", "SimSun", "Times New Roman", serif;
  --sans: "Helvetica Neue", "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", sans-serif;
  --sans-narrow: "Arial Narrow", "Helvetica Neue", "PingFang SC", "Microsoft YaHei", sans-serif;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  background:
    radial-gradient(1200px 700px at 78% -10%, rgba(168, 50, 110, 0.16), transparent 62%),
    radial-gradient(900px 620px at 12% 8%, rgba(201, 163, 74, 0.10), transparent 60%),
    linear-gradient(180deg, #0a0e0b 0%, #0c1310 38%, #0a0f0c 100%);
  color: var(--paper);
  font-family: var(--sans-narrow);
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  min-height: 100vh;
}
img {
  display: block;
  max-width: 100%;
}
video {
  display: block;
}
h2, h3, p, dl, dd, dt, ol, ul {
  margin: 0;
  padding: 0;
}
ol, ul {
  list-style: none;
}
a {
  color: var(--gold-2);
  text-decoration: none;
}
button, input {
  font: inherit;
  color: inherit;
}
button {
  cursor: pointer;
}
::selection {
  background: rgba(168, 50, 110, 0.5);
  color: #fff;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 8px clamp(10px, 2.4vw, 26px);
  background: linear-gradient(180deg, rgba(8, 12, 9, 0.96), rgba(8, 12, 9, 0.78));
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.site-brand, a[data-contract="site-name"] {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.14em;
  color: var(--gold-2);
  text-decoration: none;
  text-shadow: 0 0 12px rgba(201, 163, 74, 0.4);
  border-left: 3px solid var(--neon);
  padding-left: 9px;
  white-space: nowrap;
}
a[data-contract="site-name"]:hover, a[data-contract="site-name"]:focus-visible {
  color: #fff;
  text-decoration: none;
}
.category-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  min-width: 0;
  flex: 1 1 auto;
}
a.runtime-category {
  display: inline-block;
  padding: 3px 9px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--paper-dim);
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid var(--line-soft);
  background: rgba(22, 48, 31, 0.42);
  transition: color 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}
a.runtime-category:hover, a.runtime-category:focus-visible {
  color: var(--gold-2);
  border-color: var(--line);
  background: rgba(29, 61, 40, 0.7);
  text-decoration: none;
}
.page-main {
  display: block;
  padding: 10px clamp(10px, 2.4vw, 26px) 22px;
  max-width: 1400px;
  margin: 0 auto;
}
.section-heading {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.16em;
  color: var(--gold-2);
  margin: 0 0 8px;
  padding-left: 9px;
  border-left: 3px solid var(--neon);
  line-height: 1.2;
}
.player-shell {
  position: relative;
  margin: 4px 0 14px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(13, 26, 18, 0.9), rgba(9, 14, 11, 0.95));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.player-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(168, 50, 110, 0.07));
}
.player-frame {
  position: relative;
  width: 100%;
  min-width: 0;
  background: #05080a;
}
.player-frame video {
  display: block;
  width: 100%;
  height: auto;
  background: #05080a;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 7px 9px;
  border-top: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(16, 23, 17, 0.92), rgba(10, 15, 12, 0.96));
}
.player-controls button {
  padding: 4px 9px;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--paper-dim);
  background: rgba(29, 61, 40, 0.5);
  border: 1px solid var(--line-soft);
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.player-controls button:hover, .player-controls button:focus-visible {
  color: var(--gold-2);
  border-color: var(--line);
  background: rgba(22, 48, 31, 0.85);
}
.ctrl-progress {
  flex: 1 1 140px;
  min-width: 110px;
  height: 4px;
  margin: 0 4px;
  -webkit-appearance: none;
  appearance: none;
  background: linear-gradient(90deg, var(--neon) 0%, var(--gold) 60%, rgba(201, 163, 74, 0.2) 100%);
  border: none;
  cursor: pointer;
}
.ctrl-progress::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 8px rgba(201, 163, 74, 0.85);
}
.ctrl-progress::-moz-range-thumb {
  width: 11px;
  height: 11px;
  border: none;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 8px rgba(201, 163, 74, 0.85);
}
.ctrl-volume {
  flex: 0 1 76px;
  min-width: 54px;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(183, 171, 147, 0.28);
  border: none;
  cursor: pointer;
}
.ctrl-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--paper-dim);
}
.ctrl-volume::-moz-range-thumb {
  width: 9px;
  height: 9px;
  border: none;
  border-radius: 50%;
  background: var(--paper-dim);
}
.ctrl-play.play, .ctrl-play.pause, .ctrl-play.is-playing {
  color: var(--gold-2);
  border-color: var(--line);
}
.ctrl-mute.mute, .ctrl-mute.is-muted {
  color: var(--neon-2);
  border-color: rgba(217, 79, 154, 0.5);
}
.player-controls button.is-active, .player-controls button.click, .player-controls button.input, .player-controls button.progress, .player-controls button.speed, .player-controls button.volume, .player-controls button.fullscreen, .player-controls button.pip, .player-controls button.light, .player-controls button.theater {
  color: var(--gold-2);
  border-color: var(--line);
  background: rgba(168, 50, 110, 0.22);
}
.player-shell.theater-mode {
  margin-left: calc(-1 * clamp(10px, 2.4vw, 26px));
  margin-right: calc(-1 * clamp(10px, 2.4vw, 26px));
  border-left: none;
  border-right: none;
}
.player-shell.lights-off {
  background: #000;
  box-shadow: 0 0 0 1px rgba(168, 50, 110, 0.35), 0 22px 60px rgba(0, 0, 0, 0.9);
}
.player-shell.lights-off .player-controls {
  background: #050806;
  opacity: 0.7;
}
.player-shell.player .player-frame, .player-shell.timeupdate .player-frame {
  outline: 1px solid rgba(201, 163, 74, 0.2);
}
.player-shell.fullscreen .player-frame, .player-shell .fullscreen {
  background: #000;
}
.movie-overview {
  margin: 0 0 14px;
  padding: 12px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(22, 48, 31, 0.72) 0%, rgba(13, 26, 18, 0.9) 46%, rgba(10, 15, 12, 0.96) 100%);
  box-shadow: var(--shadow);
}
.overview-header {
  display: grid;
  grid-template-columns: minmax(150px, 220px) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}
.poster-wrap {
  position: relative;
  align-self: start;
  width: 100%;
  border: 1px solid var(--line);
  background: #070c09;
  overflow: hidden;
}
.poster-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(200deg, rgba(232, 169, 75, 0.14) 0%, transparent 42%, rgba(168, 50, 110, 0.16) 100%);
}
.overview-poster {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  height: auto;
  object-fit: cover;
}
.overview-headline {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
}
.overview-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(20px, 3.4vw, 30px);
  line-height: 1.1;
  letter-spacing: 0.06em;
  color: var(--paper);
  text-shadow: 0 0 18px rgba(232, 169, 75, 0.28);
}
.overview-tagline {
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--gold-2);
  letter-spacing: 0.04em;
  border-left: 2px solid var(--neon);
  padding-left: 8px;
}
.episode-status {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  font-size: 12px;
  color: var(--paper-dim);
  padding: 4px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.status-label {
  color: var(--amber);
  letter-spacing: 0.05em;
}
.status-sep {
  color: var(--gold-dim);
}
.status-total {
  color: var(--paper-dim);
}
.overview-details {
  min-width: 0;
}
.detail-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2px 14px;
}
.detail-row {
  display: flex;
  align-items: baseline;
  gap: 7px;
  padding: 2px 0;
  border-bottom: 1px dotted rgba(201, 163, 74, 0.16);
  min-width: 0;
}
.detail-row dt {
  flex: 0 0 auto;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gold-dim);
}
.detail-row dd {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 12px;
  color: var(--paper);
  overflow-wrap: anywhere;
}
.overview-body {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: 14px;
  margin-top: 13px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  align-items: start;
}
.synopsis-block, .cast-block {
  min-width: 0;
}
.synopsis-para {
  font-size: 12.5px;
  line-height: 1.62;
  color: #cfc6b1;
  text-align: justify;
  margin-bottom: 6px;
}
.synopsis-para:last-child {
  margin-bottom: 0;
}
.cast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(64px, 1fr));
  gap: 8px 6px;
}
.cast-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  min-width: 0;
  text-align: center;
}
.cast-avatar {
  display: block;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 30%, rgba(232, 169, 75, 0.55), transparent 58%),
    linear-gradient(150deg, #2a4633 0%, #16261b 55%, #0d150f 100%);
  border: 1px solid var(--gold-dim);
  box-shadow: inset 0 -6px 12px rgba(0, 0, 0, 0.55), 0 0 10px rgba(201, 163, 74, 0.18);
}
.cast-name {
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--paper-dim);
  overflow-wrap: anywhere;
}
.timeline-section {
  margin: 0 0 14px;
  padding: 12px;
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(13, 26, 18, 0.55), rgba(10, 15, 12, 0.4));
}
.timeline-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0 16px;
  padding-left: 16px;
}
.timeline-track::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold-dim) 12%, var(--gold-dim) 88%, transparent);
  opacity: 0.65;
}
.timeline-node {
  position: relative;
  display: grid;
  grid-template-columns: auto auto;
  grid-template-areas:
    "dot time"
    "dot label";
  align-items: start;
  gap: 1px 8px;
  padding: 6px 0 6px 0;
  min-width: 0;
}
.node-dot {
  grid-area: dot;
  position: relative;
  width: 9px;
  height: 9px;
  margin-top: 4px;
  margin-left: -16px;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 10px rgba(232, 169, 75, 0.85), 0 0 22px rgba(168, 50, 110, 0.4);
}
.node-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(201, 163, 74, 0.32);
}
.node-time {
  grid-area: time;
  font-family: var(--sans-narrow);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--amber);
}
.node-label {
  grid-area: label;
  font-size: 12px;
  line-height: 1.45;
  color: #cfc6b1;
  overflow-wrap: anywhere;
}
.episodes-section {
  margin: 0 0 14px;
}
.episode-scroller {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 2px 10px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
.episode-scroller::-webkit-scrollbar {
  height: 7px;
}
.episode-scroller::-webkit-scrollbar-track {
  background: rgba(22, 48, 31, 0.4);
}
.episode-scroller::-webkit-scrollbar-thumb {
  background: var(--gold-dim);
}
.episode-track {
  display: flex;
  gap: 8px;
  align-items: stretch;
  min-width: 0;
}
.episode-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 0 0 auto;
  width: min(78vw, 268px);
  padding: 10px 11px 11px;
  scroll-snap-align: start;
  border: 1px solid var(--line-soft);
  border-top: 2px solid var(--gold-dim);
  background: linear-gradient(165deg, rgba(29, 61, 40, 0.6), rgba(11, 17, 13, 0.92));
  transition: border-color 0.16s ease, transform 0.16s ease;
}
.episode-card:hover {
  border-color: var(--line);
  transform: translateY(-2px);
}
.episode-number {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--neon-2);
}
.episode-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.1em;
  color: var(--gold-2);
  line-height: 1.15;
}
.episode-summary {
  flex: 1 1 auto;
  font-size: 12px;
  line-height: 1.55;
  color: #c4baa4;
  text-align: justify;
}
.episode-duration {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--paper-dim);
  padding-top: 5px;
  border-top: 1px dotted rgba(201, 163, 74, 0.22);
}
.comments-section {
  margin: 0 0 14px;
}
.comment-masonry {
  columns: 2;
  column-gap: 8px;
}
.comment-card {
  break-inside: avoid;
  display: block;
  margin-bottom: 8px;
  padding: 9px 10px;
  border: 1px solid var(--line-soft);
  border-left: 2px solid var(--neon);
  background: linear-gradient(150deg, rgba(22, 48, 31, 0.5), rgba(10, 15, 12, 0.8));
}
.comment-nick {
  display: block;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--gold-2);
  margin-bottom: 4px;
}
.comment-nick::before {
  content: "— ";
  color: var(--gold-dim);
}
.comment-text {
  font-size: 12px;
  line-height: 1.6;
  color: #c9bfa9;
  text-align: justify;
}
.recommend-region {
  margin: 0 0 14px;
}
.recommend-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  align-items: start;
}
a.recommend-card, .recommend-card {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
  padding: 6px;
  color: var(--paper);
  text-decoration: none;
  border: 1px solid var(--line-soft);
  background: linear-gradient(170deg, rgba(29, 61, 40, 0.5), rgba(10, 15, 12, 0.9));
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}
a.recommend-card:hover, a.recommend-card:focus-visible {
  color: var(--paper);
  text-decoration: none;
  border-color: var(--line);
  box-shadow: 0 0 0 1px rgba(168, 50, 110, 0.35), 0 8px 20px rgba(0, 0, 0, 0.5);
  transform: translateY(-2px);
}
[data-runtime="recommendation"] img, .recommend-poster {
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 2 / 3;
  height: auto;
  object-fit: cover;
  background: #070c09;
  border: 1px solid rgba(201, 163, 74, 0.16);
}
.recommend-name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--gold-2);
  line-height: 1.25;
  overflow-wrap: anywhere;
}
.recommend-blurb {
  font-size: 11.5px;
  line-height: 1.5;
  color: #b3a892;
  overflow-wrap: anywhere;
}
.site-footer {
  margin-top: 18px;
  padding: 14px clamp(10px, 2.4vw, 26px) 20px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(9, 14, 11, 0.7), rgba(6, 9, 7, 0.98));
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 10px 18px;
  align-items: start;
}
.footer-disclaimer {
  grid-column: 1;
  font-size: 11.5px;
  line-height: 1.6;
  color: #8f866f;
}
.footer-nav {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  justify-content: flex-start;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--gold-2);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
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: #fff;
  text-decoration: none;
  border-bottom-color: var(--neon);
}
.friend-links {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 10px;
  padding-top: 9px;
  border-top: 1px solid var(--line-soft);
}
.friend-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--gold-dim);
}
a.runtime-friend-link {
  font-size: 11.5px;
  color: #9d9versión;
  color: #9d947e;
  text-decoration: none;
  border-bottom: 1px dotted rgba(201, 163, 74, 0.3);
}
a.runtime-friend-link:hover, a.runtime-friend-link:focus-visible {
  color: var(--gold-2);
  text-decoration: none;
  border-bottom-color: var(--neon);
}
@media (max-width: 980px) {.overview-body {
    grid-template-columns: minmax(0, 1fr);
  }
.recommend-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }}
@media (max-width: 720px) {.overview-header {
    grid-template-columns: minmax(120px, 40%) minmax(0, 1fr);
    gap: 10px;
  }
.recommend-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.site-footer {
    grid-template-columns: minmax(0, 1fr);
  }
.footer-nav {
    grid-column: 1;
  }}
@media (max-width: 560px) {body {
    font-size: 12.5px;
  }
.overview-header {
    grid-template-columns: minmax(0, 1fr);
  }
.poster-wrap {
    max-width: 200px;
  }
.comment-masonry {
    columns: 1;
  }
.recommend-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.episode-card {
    width: min(86vw, 250px);
  }
.player-controls button {
    padding: 4px 7px;
    font-size: 11px;
  }}
@media (max-width: 400px) {.recommend-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.cast-grid {
    grid-template-columns: repeat(auto-fill, minmax(58px, 1fr));
  }}

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}
