:root {
  --abyss: #04080f;
  --deep: #071627;
  --deep-2: #0a1f33;
  --mid: #0e2b45;
  --steel: #16374f;
  --line: #1d4a68;
  --cyan: #4ff0d0;
  --cyan-dim: #2aa892;
  --cold: #cfe4ee;
  --cold-dim: #8fa9ba;
  --warm: #ff8a5c;
  --warm-dim: #d96a44;
  --ink: #e8f3f8;
  --ink-dim: #9fb8c6;
  --radius: 10px;
  --radius-sm: 6px;
  --gap: 12px;
  --gap-tight: 8px;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  padding: 0;
  background: var(--abyss);
  color: var(--ink);
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", system-ui, -apple-system, sans-serif;
  font-size: 14px;
  line-height: 1.72;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, p, dl, dd, dt, figure, ul, ol, li {
  margin: 0;
  padding: 0;
}
ul, ol {
  list-style: none;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: var(--cyan);
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}
input[type="range"] {
  font-family: inherit;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(180deg, rgba(4, 8, 15, 0.98), rgba(7, 22, 39, 0.94));
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 8px 14px;
  max-width: 1180px;
  margin: 0 auto;
}
.brand.site-name, a[data-contract="site-name"] {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--cold);
  text-decoration: none;
  white-space: nowrap;
  text-shadow: 0 0 12px rgba(79, 240, 208, 0.25);
}
a[data-contract="site-name"]:hover {
  color: var(--cyan);
}
.category-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-left: auto;
}
a.runtime-category {
  display: inline-block;
  padding: 3px 9px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--cold-dim);
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid var(--steel);
  border-radius: 999px;
  background: rgba(14, 43, 69, 0.5);
  transition: color 0.18s, border-color 0.18s, background 0.18s;
}
a.runtime-category:hover {
  color: var(--cyan);
  border-color: var(--cyan-dim);
  background: rgba(42, 168, 146, 0.14);
}
.page-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 14px 28px;
}
.section-title {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--cold);
  padding-left: 10px;
  border-left: 3px solid var(--cyan);
  margin-bottom: 10px;
  line-height: 1.4;
}
.band-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 6px;
}
.hero-underwater {
  position: relative;
  padding: 18px 0 22px;
  margin-bottom: 22px;
  background:
    radial-gradient(120% 80% at 78% -10%, rgba(207, 228, 238, 0.14), transparent 55%),
    radial-gradient(90% 70% at 20% 0%, rgba(79, 240, 208, 0.07), transparent 60%),
    linear-gradient(180deg, var(--deep-2) 0%, var(--deep) 34%, #061424 68%, var(--abyss) 100%);
  border-radius: 0 0 18px 18px;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -60px;
  right: 8%;
  width: 46%;
  max-width: 520px;
  height: 180px;
  background: radial-gradient(closest-side, rgba(207, 228, 238, 0.22), rgba(79, 240, 208, 0.06) 60%, transparent 100%);
  filter: blur(6px);
  pointer-events: none;
  z-index: 0;
}
.hero-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle at 12% 78%, rgba(207, 228, 238, 0.20) 0 1.5px, transparent 2px),
    radial-gradient(circle at 28% 62%, rgba(207, 228, 238, 0.14) 0 1px, transparent 1.6px),
    radial-gradient(circle at 44% 88%, rgba(79, 240, 208, 0.18) 0 1.8px, transparent 2.4px),
    radial-gradient(circle at 63% 72%, rgba(207, 228, 238, 0.12) 0 1.2px, transparent 1.8px),
    radial-gradient(circle at 79% 90%, rgba(207, 228, 238, 0.18) 0 1.6px, transparent 2.2px),
    radial-gradient(circle at 91% 66%, rgba(79, 240, 208, 0.14) 0 1.1px, transparent 1.7px),
    radial-gradient(circle at 55% 95%, rgba(207, 228, 238, 0.10) 0 1px, transparent 1.5px),
    radial-gradient(circle at 34% 96%, rgba(79, 240, 208, 0.10) 0 1.3px, transparent 1.9px);
  background-repeat: repeat;
  background-size: 100% 100%;
  opacity: 0.9;
}
.overview-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}
.poster-frame {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--deep);
  box-shadow: 0 0 0 1px rgba(79, 240, 208, 0.08), 0 14px 34px -18px rgba(0, 0, 0, 0.9);
}
.poster-img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.04);
}
.poster-caption {
  position: absolute;
  left: 8px;
  bottom: 8px;
  padding: 2px 8px;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--cold);
  background: rgba(4, 8, 15, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.overview-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.movie-title {
  font-size: 34px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.035em;
  color: var(--cold);
  font-stretch: condensed;
  text-shadow: 0 0 22px rgba(79, 240, 208, 0.22);
}
.movie-tagline {
  font-size: 13px;
  line-height: 1.7;
  color: var(--cyan);
  letter-spacing: 0.02em;
  border-left: 2px solid var(--cyan-dim);
  padding-left: 10px;
}
.movie-seo {
  font-size: 12.5px;
  line-height: 1.8;
  color: var(--ink-dim);
  padding: 9px 11px;
  background: rgba(7, 22, 39, 0.68);
  border: 1px solid var(--steel);
  border-radius: var(--radius-sm);
}
.cast-band {
  border-top: 1px solid var(--line);
  padding-top: 10px;
}
.cast-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 6px;
}
.cast-card {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 8px;
  align-items: center;
  padding: 6px 8px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: rgba(14, 43, 69, 0.34);
  transition: border-color 0.18s, background 0.18s;
}
.cast-card:hover {
  border-color: var(--line);
  background: rgba(22, 55, 79, 0.55);
}
.cast-avatar {
  grid-row: 1 / span 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  font-size: 13px;
  font-weight: 700;
  color: var(--abyss);
  background: linear-gradient(160deg, var(--cyan), var(--cyan-dim));
  border-radius: 8px;
}
.cast-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--cold);
  letter-spacing: -0.01em;
  line-height: 1.35;
}
.cast-note {
  grid-column: 2;
  font-size: 11px;
  line-height: 1.5;
  color: var(--cold-dim);
}
.episode-status {
  border-top: 1px solid var(--line);
  padding-top: 10px;
}
.status-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.status-current, .status-total, .status-duration {
  display: inline-block;
  padding: 3px 10px;
  font-size: 12px;
  line-height: 1.6;
  border-radius: 999px;
  border: 1px solid var(--steel);
  white-space: nowrap;
}
.status-current {
  color: var(--abyss);
  font-weight: 700;
  background: var(--cyan);
  border-color: var(--cyan);
}
.status-total {
  color: var(--cold);
  background: rgba(22, 55, 79, 0.6);
}
.status-duration {
  color: var(--cold-dim);
  background: rgba(7, 22, 39, 0.6);
}
.details-panel {
  border-top: 1px solid var(--line);
  padding-top: 10px;
}
.details-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 4px 14px;
}
.details-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 12px;
  line-height: 1.65;
  padding: 2px 0;
  border-bottom: 1px dashed rgba(29, 74, 104, 0.5);
}
.details-row dt {
  flex: 0 0 auto;
  color: var(--cyan-dim);
  letter-spacing: 0.04em;
}
.details-row dd {
  color: var(--cold);
  min-width: 0;
}
.synopsis-block {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  padding: 12px 14px;
  background: rgba(7, 22, 39, 0.62);
  border: 1px solid var(--steel);
  border-radius: var(--radius);
}
.synopsis-text {
  font-size: 12.5px;
  line-height: 1.9;
  color: var(--ink-dim);
  text-indent: 2em;
}
.synopsis-text + .synopsis-text {
  margin-top: 6px;
}
.player-shell {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #020509;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(79, 240, 208, 0.1), 0 18px 44px -22px rgba(0, 0, 0, 0.95);
}
.player-video {
  display: block;
  width: 100%;
  background: #020509;
}
.player-shell.is-lights-on {
  box-shadow: 0 0 0 1px rgba(79, 240, 208, 0.35), 0 0 34px -6px rgba(79, 240, 208, 0.28);
}
.player-shell.is-theater {
  border-color: var(--cyan-dim);
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  background: linear-gradient(180deg, rgba(10, 31, 51, 0.9), rgba(4, 8, 15, 0.95));
  border-top: 1px solid var(--steel);
}
.ctrl-btn {
  padding: 3px 9px;
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--cold-dim);
  background: rgba(14, 43, 69, 0.7);
  border: 1px solid var(--steel);
  border-radius: 999px;
  white-space: nowrap;
  transition: color 0.16s, border-color 0.16s, background 0.16s;
}
.ctrl-btn:hover {
  color: var(--cyan);
  border-color: var(--cyan-dim);
  background: rgba(42, 168, 146, 0.16);
}
.ctrl-btn.is-active, .ctrl-btn.is-playing, .ctrl-btn.is-unmuted {
  color: var(--abyss);
  background: var(--cyan);
  border-color: var(--cyan);
}
.ctrl-btn.is-paused, .ctrl-btn.is-muted {
  color: var(--warm);
  border-color: var(--warm-dim);
  background: rgba(217, 106, 68, 0.14);
}
.ctrl-range {
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  min-width: 90px;
  flex: 1 1 130px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan-dim), var(--steel));
  outline: none;
  cursor: pointer;
}
.ctrl-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cyan);
  border: 2px solid var(--abyss);
  box-shadow: 0 0 8px rgba(79, 240, 208, 0.6);
}
.ctrl-range::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border: 2px solid var(--abyss);
  border-radius: 50%;
  background: var(--cyan);
}
.timeline-section {
  margin-bottom: 22px;
}
.timeline-axis {
  position: relative;
  padding-left: 26px;
  border-left: 2px solid var(--line);
  margin-left: 6px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.timeline-item {
  position: relative;
}
.timeline-dot {
  position: absolute;
  left: -33px;
  top: 12px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  border: 2px solid var(--deep);
  box-shadow: 0 0 0 3px rgba(79, 240, 208, 0.14), 0 0 10px rgba(79, 240, 208, 0.55);
}
.timeline-card {
  position: relative;
  padding: 8px 12px 10px;
  background: rgba(10, 31, 51, 0.6);
  border: 1px solid var(--steel);
  border-radius: var(--radius-sm);
}
.timeline-card:hover {
  border-color: var(--cyan-dim);
  background: rgba(14, 43, 69, 0.78);
}
.timeline-timecode {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--cyan);
  margin-bottom: 2px;
}
.timeline-label {
  font-size: 12.5px;
  line-height: 1.75;
  color: var(--ink-dim);
}
.breath-wave {
  display: block;
  height: 12px;
  margin-top: 6px;
  background:
    linear-gradient(90deg, transparent 0 2%, var(--warm) 2% 3%, transparent 3% 5%, var(--warm) 5% 6.5%, transparent 6.5% 8%, var(--warm) 8% 10%, transparent 10% 13%, var(--warm) 13% 15%, transparent 15% 18%, var(--warm) 18% 20%, transparent 20% 24%, var(--warm) 24% 26.5%, transparent 26.5% 31%, var(--warm) 31% 33%, transparent 33% 38%, var(--warm) 38% 41%, transparent 41% 46%, var(--warm) 46% 48%, transparent 48% 54%, var(--warm) 54% 57%, transparent 57% 63%, var(--warm) 63% 65%, transparent 65% 71%, var(--warm) 71% 74%, transparent 74% 80%, var(--warm) 80% 82%, transparent 82% 87%, var(--warm) 87% 89%, transparent 89% 94%, var(--warm) 94% 96%, transparent 96% 100%);
  background-size: 100% 2px;
  background-position: 0 center;
  background-repeat: no-repeat;
  opacity: 0.85;
}
.episodes-section {
  margin-bottom: 22px;
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.episode-cell {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 8px 10px 10px;
  background: rgba(7, 22, 39, 0.7);
  border: 1px solid var(--steel);
  border-radius: var(--radius-sm);
  transition: border-color 0.18s, background 0.18s;
}
.episode-cell:hover {
  border-color: var(--cyan-dim);
  background: rgba(14, 43, 69, 0.8);
}
.episode-number {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--cyan);
}
.episode-title {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
  color: var(--cold);
  letter-spacing: -0.015em;
}
.episode-summary {
  font-size: 11px;
  line-height: 1.65;
  color: var(--cold-dim);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.episode-duration {
  align-self: flex-start;
  margin-top: 2px;
  max-height: 0;
  padding: 0;
  overflow: hidden;
  font-size: 10.5px;
  line-height: 1.6;
  color: var(--warm);
  border: 1px solid transparent;
  border-radius: 999px;
  opacity: 0;
  transition: max-height 0.22s ease, opacity 0.22s ease, padding 0.22s ease, border-color 0.22s ease;
}
.episode-cell:hover .episode-duration, .episode-cell:focus-within .episode-duration {
  max-height: 28px;
  padding: 1px 8px;
  border-color: var(--warm-dim);
  opacity: 1;
}
.comments-section {
  margin-bottom: 22px;
}
.comments-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px 14px;
  align-items: start;
}
.comments-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.comments-col:nth-child(2) {
  margin-top: 20px;
}
.comment-card {
  position: relative;
  padding: 8px 11px 9px 22px;
  background: rgba(10, 31, 51, 0.58);
  border: 1px solid var(--steel);
  border-radius: var(--radius-sm);
}
.comment-card:hover {
  border-color: var(--line);
  background: rgba(14, 43, 69, 0.72);
}
.breath-light {
  position: absolute;
  left: 9px;
  top: 13px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--warm);
  box-shadow: 0 0 8px rgba(255, 138, 92, 0.85);
  animation: breath-pulse 3.2s ease-in-out infinite;
}
@keyframes breath-pulse {
  0%, 100% { opacity: 0.35; transform: scale(0.82); }
  50% { opacity: 1; transform: scale(1.15); }
}
.comment-nick {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.01em;
  margin-bottom: 2px;
}
.comment-text {
  font-size: 12px;
  line-height: 1.72;
  color: var(--ink-dim);
}
.rec-region {
  margin-bottom: 16px;
}
.rec-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--cold);
  margin-bottom: 7px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--line);
}
.rec-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 8px;
  align-items: start;
}
a.rec-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 6px;
  color: var(--cold-dim);
  text-decoration: none;
  background: rgba(7, 22, 39, 0.72);
  border: 1px solid var(--steel);
  border-radius: var(--radius-sm);
  transition: border-color 0.18s, background 0.18s, transform 0.18s;
}
a.rec-card:hover {
  border-color: var(--cyan-dim);
  background: rgba(14, 43, 69, 0.85);
  transform: translateY(-2px);
}
[data-runtime="recommendation"] img, .rec-pic {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  border-radius: 5px;
  background: var(--deep);
  filter: saturate(0.9);
}
.rec-name {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--cold);
  letter-spacing: -0.01em;
}
.rec-blurb {
  font-size: 10.5px;
  line-height: 1.6;
  color: var(--cold-dim);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.site-footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 14px 26px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(4, 8, 15, 0), rgba(4, 8, 15, 0.9));
}
.footer-disclaimer {
  font-size: 11px;
  line-height: 1.7;
  color: #5f7a8a;
  margin-bottom: 10px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-size: 12px;
  color: var(--cold-dim);
  text-decoration: none;
  padding: 2px 8px;
  border: 1px solid var(--steel);
  border-radius: 999px;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: var(--cyan);
  border-color: var(--cyan-dim);
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
}
.friend-links-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #5f7a8a;
  white-space: nowrap;
}
a.runtime-friend-link {
  font-size: 11px;
  color: #6f8b9b;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px dotted rgba(111, 139, 155, 0.5);
}
a.runtime-friend-link:hover {
  color: var(--cyan);
  border-bottom-color: var(--cyan);
}
@media (max-width: 900px) {.overview-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.poster-frame {
    max-width: 300px;
  }
.episode-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }}
@media (max-width: 720px) {.page-main {
    padding: 0 10px 22px;
  }
.header-inner {
    padding: 8px 10px;
  }
.movie-title {
    font-size: 27px;
  }
.cast-list {
    grid-template-columns: minmax(0, 1fr);
  }
.episode-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.comments-columns {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }
.comments-col:nth-child(2) {
    margin-top: 0;
  }
.rec-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.ctrl-range {
    flex: 1 1 100%;
    min-width: 0;
  }}
@media (max-width: 480px) {.movie-title {
    font-size: 23px;
  }
.episode-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.rec-row {
    grid-template-columns: minmax(0, 1fr);
  }
.details-list {
    grid-template-columns: minmax(0, 1fr);
  }
.timeline-axis {
    padding-left: 18px;
    margin-left: 4px;
  }
.timeline-dot {
    left: -25px;
  }
.poster-frame {
    max-width: none;
  }}
@media (prefers-reduced-motion: reduce) {.breath-light {
    animation: none;
  }
a.rec-card:hover {
    transform: none;
  }}

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}
