:root {
  --abyss: #070d16;
  --deep: #0b1524;
  --deep-2: #0f1c30;
  --slate: #16263e;
  --blood: #8e1220;
  --blood-bright: #c81e2e;
  --blood-dark: #4d0912;
  --ink: #e7edf4;
  --ink-dim: #9fb0c4;
  --ink-faint: #64748b;
  --line: rgba(200, 30, 46, 0.28);
  --line-cool: rgba(120, 160, 210, 0.18);
  --gap: 10px;
  --radius: 4px;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  padding: 0;
  background-color: var(--abyss);
  background-image:
    radial-gradient(120% 80% at 12% -10%, rgba(142, 18, 32, 0.34), transparent 60%),
    radial-gradient(100% 70% at 100% 0%, rgba(20, 48, 92, 0.42), transparent 62%),
    linear-gradient(180deg, #070d16 0%, #050a11 100%);
  background-attachment: fixed;
  color: var(--ink);
  font-family: "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: var(--ink);
  text-decoration: none;
}
ul, dl, dd, p, h1, h2, h3 {
  margin: 0;
}
ul {
  padding: 0;
  list-style: none;
}
button, input, select {
  font: inherit;
  color: inherit;
}
h1, h2, h3 {
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.02em;
  line-height: 1.18;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(180deg, rgba(7, 13, 22, 0.96), rgba(7, 13, 22, 0.82));
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  max-width: 1440px;
  margin: 0 auto;
  padding: 8px 14px;
}
.brand-mark {
  font-size: 19px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.06em;
  color: #fff;
  text-decoration: none;
  text-shadow: 0 0 12px rgba(200, 30, 46, 0.85), 0 0 2px rgba(200, 30, 46, 0.9);
  white-space: nowrap;
  border-left: 3px solid var(--blood-bright);
  padding-left: 8px;
}
a[data-contract="site-name"] {
  color: #fff;
  text-decoration: none;
}
a[data-contract="site-name"]:hover, a[data-contract="site-name"]:focus {
  color: #ffd9dd;
}
.categories-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  flex: 1 1 auto;
  min-width: 0;
}
a.runtime-category {
  display: inline-block;
  padding: 3px 9px;
  font-size: 12.5px;
  font-weight: 700;
  white-space: nowrap;
  color: #dbe6f2;
  text-decoration: none;
  background: rgba(22, 38, 62, 0.72);
  border: 1px solid var(--line-cool);
  border-radius: 2px;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
a.runtime-category:hover, a.runtime-category:focus {
  color: #fff;
  background: var(--blood);
  border-color: var(--blood-bright);
}
.movie-page {
  max-width: 1440px;
  margin: 0 auto;
  padding: 12px 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section-heading {
  font-size: 16px;
  font-style: italic;
  color: #fff;
  padding: 0 0 4px 9px;
  margin-bottom: 8px;
  border-left: 4px solid var(--blood-bright);
  text-shadow: 0 1px 8px rgba(200, 30, 46, 0.55);
  transform: skewX(-6deg);
}
.hero-banner {
  display: grid;
  grid-template-columns: minmax(240px, 340px) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(15, 28, 48, 0.92), rgba(9, 17, 29, 0.94)),
    radial-gradient(80% 60% at 0% 0%, rgba(142, 18, 32, 0.28), transparent 70%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.6), 0 10px 30px rgba(0, 0, 0, 0.45);
}
.hero-poster-wrap {
  position: relative;
  align-self: start;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(200, 30, 46, 0.45);
  background: #050a11;
}
.hero-poster {
  width: 100%;
  aspect-ratio: 2 / 3;
  height: auto;
  object-fit: cover;
  display: block;
}
.blood-mist-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 45% at 30% 20%, rgba(200, 30, 46, 0.42), transparent 72%),
    radial-gradient(70% 55% at 78% 78%, rgba(142, 18, 32, 0.4), transparent 70%),
    linear-gradient(180deg, rgba(90, 8, 18, 0.28), rgba(5, 10, 17, 0.55));
  mix-blend-mode: screen;
  opacity: 0.85;
}
.hero-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.movie-title {
  font-size: clamp(24px, 3.4vw, 40px);
  color: #fff;
  text-shadow: 0 2px 14px rgba(200, 30, 46, 0.75), 0 0 3px rgba(0, 0, 0, 0.9);
  transform: skewX(-5deg);
}
.movie-tagline {
  font-size: 14px;
  font-style: italic;
  color: #ffb9c0;
  letter-spacing: 0.14em;
  text-transform: none;
  border-bottom: 1px dashed var(--line);
  padding-bottom: 6px;
}
.movie-seo-desc {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-dim);
  line-height: 1.62;
}
.player-shell {
  position: relative;
  width: 100%;
  min-width: 0;
  background: #03060b;
  border: 1px solid rgba(200, 30, 46, 0.4);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.6), 0 8px 26px rgba(0, 0, 0, 0.6);
}
.player-shell[data-player-shell] {
  display: block;
}
.player-shell video {
  display: block;
  width: 100%;
  max-width: none;
  background: #000;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 7px 8px;
  background: linear-gradient(180deg, rgba(11, 21, 36, 0.96), rgba(7, 13, 22, 0.98));
  border-top: 1px solid var(--line);
}
.ctrl-btn {
  flex: 0 0 auto;
  padding: 4px 9px;
  font-size: 12px;
  font-weight: 700;
  font-style: normal;
  color: #dbe6f2;
  background: rgba(22, 38, 62, 0.85);
  border: 1px solid var(--line-cool);
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.ctrl-btn:hover, .ctrl-btn:focus {
  color: #fff;
  background: var(--blood);
  border-color: var(--blood-bright);
}
.ctrl-range {
  -webkit-appearance: none;
  appearance: none;
  flex: 1 1 110px;
  min-width: 90px;
  height: 16px;
  background: transparent;
  cursor: pointer;
}
.ctrl-range::-webkit-slider-runnable-track {
  height: 4px;
  background: linear-gradient(90deg, var(--blood), var(--slate));
  border-radius: 2px;
}
.ctrl-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  margin-top: -4px;
  border-radius: 50%;
  background: #e7edf4;
  border: 2px solid var(--blood-bright);
}
.ctrl-range::-moz-range-track {
  height: 4px;
  background: linear-gradient(90deg, var(--blood), var(--slate));
  border-radius: 2px;
}
.ctrl-range::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e7edf4;
  border: 2px solid var(--blood-bright);
}
.ctrl-select {
  flex: 0 0 auto;
  padding: 4px 6px;
  font-size: 12px;
  font-weight: 700;
  color: #dbe6f2;
  background: rgba(22, 38, 62, 0.85);
  border: 1px solid var(--line-cool);
  border-radius: 2px;
  cursor: pointer;
}
.player-shell.is-theater {
  box-shadow: 0 0 0 1px var(--blood-bright), 0 0 40px rgba(200, 30, 46, 0.5);
}
.player-shell.is-lights-off {
  background: #000;
}
.player-shell.is-lights-off .player-controls {
  background: #000;
  border-top-color: rgba(200, 30, 46, 0.5);
  opacity: 0.9;
}
.ctrl-btn.is-active {
  color: #fff;
  background: var(--blood-bright);
  border-color: #ff8b96;
  box-shadow: 0 0 10px rgba(200, 30, 46, 0.7);
}
.episode-status {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.status-chip {
  display: inline-block;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 800;
  font-style: italic;
  color: #ffd9dd;
  background: linear-gradient(180deg, rgba(142, 18, 32, 0.75), rgba(77, 9, 18, 0.85));
  border: 1px solid rgba(200, 30, 46, 0.6);
  border-radius: 2px;
  letter-spacing: 0.04em;
}
.details-panel {
  padding: 10px;
  background: rgba(11, 21, 36, 0.7);
  border: 1px solid var(--line-cool);
  border-radius: var(--radius);
}
.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px;
  background: var(--line-cool);
  border: 1px solid var(--line-cool);
}
.detail-key, .detail-val {
  padding: 5px 8px;
  background: rgba(9, 17, 29, 0.95);
  font-size: 12.5px;
}
.detail-key {
  color: var(--ink-faint);
  font-weight: 700;
  letter-spacing: 0.05em;
}
.detail-val {
  color: var(--ink);
  font-weight: 700;
}
.cast-panel {
  padding: 10px;
  background: rgba(11, 21, 36, 0.7);
  border: 1px solid var(--line-cool);
  border-radius: var(--radius);
}
.cast-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(84px, 1fr));
  gap: 8px;
  align-items: start;
}
.cast-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 6px 4px;
  background: rgba(9, 17, 29, 0.9);
  border: 1px solid var(--line-cool);
  border-radius: var(--radius);
}
.cast-avatar {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(200, 30, 46, 0.55);
  box-shadow: 0 0 12px rgba(200, 30, 46, 0.3);
}
.cast-name {
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  color: var(--ink-dim);
  line-height: 1.3;
}
.synopsis-panel {
  padding: 10px;
  background: rgba(11, 21, 36, 0.7);
  border: 1px solid var(--line-cool);
  border-radius: var(--radius);
}
.synopsis-para {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-dim);
  line-height: 1.7;
  padding-left: 9px;
  border-left: 2px solid rgba(200, 30, 46, 0.3);
}
.synopsis-para + .synopsis-para {
  margin-top: 7px;
}
.timeline-section {
  padding: 10px 0 12px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.timeline-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 14px 12px;
  scrollbar-color: var(--blood) var(--deep);
  scrollbar-width: thin;
}
.timeline-scroll::-webkit-scrollbar {
  height: 8px;
}
.timeline-scroll::-webkit-scrollbar-track {
  background: var(--deep);
}
.timeline-scroll::-webkit-scrollbar-thumb {
  background: var(--blood);
  border-radius: 4px;
}
.timeline-track {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: max-content;
  position: relative;
  padding-top: 20px;
}
.timeline-track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 30px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blood-bright) 6%, var(--blood) 94%, transparent);
}
.timeline-node {
  position: relative;
  flex: 0 0 auto;
  width: 168px;
  padding: 16px 8px 8px;
  background: rgba(11, 21, 36, 0.78);
  border: 1px solid var(--line-cool);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.timeline-tooth {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 16px solid var(--blood-bright);
  filter: drop-shadow(0 0 6px rgba(200, 30, 46, 0.85));
}
.timeline-tooth::after {
  content: "";
  position: absolute;
  left: -4px;
  top: 12px;
  width: 8px;
  height: 8px;
  background: var(--blood-bright);
  transform: rotate(45deg);
}
.timeline-time {
  font-size: 12px;
  font-weight: 800;
  font-style: italic;
  color: #ffb9c0;
  letter-spacing: 0.06em;
}
.timeline-label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink-dim);
  line-height: 1.45;
}
.episodes-section {
  padding: 0;
}
.episode-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--gap);
}
.episode-item {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 8px;
  background: rgba(11, 21, 36, 0.78);
  border: 1px solid var(--line-cool);
  border-radius: var(--radius);
}
.episode-thumb-wrap {
  overflow: hidden;
  border-radius: 3px;
  border: 1px solid rgba(200, 30, 46, 0.4);
  background: #050a11;
}
.episode-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  display: block;
}
.episode-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.episode-number {
  font-size: 11.5px;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.08em;
  color: #ff8b96;
}
.episode-title {
  font-size: 15px;
  font-style: italic;
  color: #fff;
}
.episode-summary {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-dim);
  line-height: 1.55;
}
.episode-duration {
  align-self: flex-start;
  margin-top: 2px;
  padding: 2px 8px;
  font-size: 11.5px;
  font-weight: 800;
  color: #ffd9dd;
  background: rgba(142, 18, 32, 0.6);
  border: 1px solid rgba(200, 30, 46, 0.5);
  border-radius: 2px;
}
.comments-section {
  padding: 0;
}
.comments-masonry {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gap);
  align-items: start;
}
.comments-column {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  min-width: 0;
}
.comment-card {
  padding: 8px 9px;
  background: rgba(11, 21, 36, 0.78);
  border: 1px solid var(--line-cool);
  border-left: 3px solid var(--blood);
  border-radius: var(--radius);
}
.comment-nick {
  display: block;
  font-size: 12px;
  font-weight: 800;
  font-style: italic;
  color: #ff8b96;
  margin-bottom: 3px;
}
.comment-text {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-dim);
  line-height: 1.6;
}
.recommend-region {
  padding: 10px;
  background: rgba(11, 21, 36, 0.6);
  border: 1px solid var(--line-cool);
  border-radius: var(--radius);
}
.recommend-region-1 {
  border-color: rgba(200, 30, 46, 0.4);
}
.recommend-region-2 {
  background: rgba(9, 17, 29, 0.7);
}
.recommend-region-3 {
  background: linear-gradient(180deg, rgba(77, 9, 18, 0.28), rgba(9, 17, 29, 0.7));
}
.recommend-heading {
  font-size: 15px;
  font-style: italic;
  color: #fff;
  margin-bottom: 8px;
  padding-left: 9px;
  border-left: 4px solid var(--blood-bright);
  transform: skewX(-6deg);
}
.recommend-stack {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 8px;
  align-items: start;
}
a.recommend-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 6px;
  color: var(--ink);
  text-decoration: none;
  background: rgba(7, 13, 22, 0.9);
  border: 1px solid var(--line-cool);
  border-radius: var(--radius);
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
a.recommend-card:hover, a.recommend-card:focus {
  color: #fff;
  border-color: var(--blood-bright);
  box-shadow: 0 0 14px rgba(200, 30, 46, 0.45);
  transform: translateY(-2px);
}
.recommend-card[data-runtime="recommendation"] {
  overflow: hidden;
}
.recommend-card[data-runtime="recommendation"] img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 3px;
  border: 1px solid rgba(200, 30, 46, 0.3);
  background: #050a11;
}
.recommend-pic {
  display: block;
}
.recommend-name {
  font-size: 13px;
  font-weight: 800;
  font-style: italic;
  color: #fff;
  line-height: 1.3;
}
.recommend-blurb {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink-faint);
  line-height: 1.5;
}
.site-footer {
  max-width: 1440px;
  margin: 0 auto;
  padding: 14px 14px 26px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-nav a {
  color: #dbe6f2;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  font-style: italic;
  border-bottom: 2px solid transparent;
  padding-bottom: 1px;
}
a[data-contract="footer-home"] {
  color: #ff8b96;
  text-decoration: none;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-home"]:focus {
  color: #fff;
  border-bottom-color: var(--blood-bright);
}
a[data-contract="footer-sitemap"] {
  color: #9fb0c4;
  text-decoration: none;
}
a[data-contract="footer-sitemap"]:hover, a[data-contract="footer-sitemap"]:focus {
  color: #fff;
  border-bottom-color: var(--blood-bright);
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
.friend-links-label {
  font-size: 12px;
  font-weight: 800;
  font-style: italic;
  color: var(--ink-faint);
  letter-spacing: 0.08em;
  margin-right: 2px;
}
a.runtime-friend-link {
  display: inline-block;
  padding: 2px 8px;
  font-size: 11.5px;
  font-weight: 700;
  white-space: nowrap;
  color: #9fb0c4;
  text-decoration: none;
  background: rgba(22, 38, 62, 0.6);
  border: 1px solid var(--line-cool);
  border-radius: 2px;
}
a.runtime-friend-link:hover, a.runtime-friend-link:focus {
  color: #fff;
  background: var(--blood);
  border-color: var(--blood-bright);
}
.footer-disclaimer {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink-faint);
  line-height: 1.6;
}
@media (max-width: 1024px) {.hero-banner {
    grid-template-columns: minmax(200px, 260px) minmax(0, 1fr);
    gap: 12px;
  }}
@media (max-width: 820px) {.hero-banner {
    grid-template-columns: minmax(0, 1fr);
  }
.hero-poster-wrap {
    max-width: 320px;
  }
.comments-masonry {
    grid-template-columns: minmax(0, 1fr);
  }
.episode-list {
    grid-template-columns: minmax(0, 1fr);
  }}
@media (max-width: 560px) {body {
    font-size: 14px;
  }
.movie-page {
    padding: 10px 10px 16px;
    gap: 12px;
  }
.hero-banner {
    padding: 10px;
  }
.hero-poster-wrap {
    max-width: none;
  }
.episode-item {
    grid-template-columns: 104px minmax(0, 1fr);
  }
.cast-avatar {
    width: 54px;
    height: 54px;
  }
.timeline-node {
    width: 150px;
  }
.recommend-stack {
    grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  }}
@media (max-width: 380px) {.episode-item {
    grid-template-columns: minmax(0, 1fr);
  }
.episode-thumb-wrap {
    max-width: 220px;
  }}

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}
