:root {
  --deep-slate: #1b2530;
  --deep-slate-2: #141c25;
  --deep-slate-3: #0e141b;
  --wet-sand: #6b5a48;
  --wet-sand-2: #8a7660;
  --foam: #e8eef2;
  --foam-dim: #a9b7c0;
  --foam-muted: #6f7d88;
  --line: #2c3a47;
  --line-soft: #22303c;
  --accent: #cfd9e0;
  --radius: 2px;
  --tight: 6px;
  --font: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Heiti SC", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  padding: 0;
  background:
    linear-gradient(180deg, #0e141b 0%, #141c25 40%, #1b2530 100%);
  color: var(--foam);
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.01em;
  min-height: 100vh;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: var(--foam-dim);
  text-decoration: none;
}
ul, ol, table, h1, h2, h3, p {
  margin: 0;
  padding: 0;
}
ul, ol {
  list-style: none;
}
button {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
.site-header {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 8px 16px;
  background: linear-gradient(90deg, #0e141b 0%, #16202b 100%);
  border-bottom: 1px solid var(--line);
}
.site-brand {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--foam);
  text-transform: uppercase;
  white-space: nowrap;
  padding: 2px 0;
}
a[data-contract="site-name"] {
  color: var(--foam);
  text-decoration: none;
}
a[data-contract="site-name"]:hover {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.categories-shell {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 8px;
  flex: 1 1 auto;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.categories-shell::-webkit-scrollbar {
  display: none;
}
.runtime-category {
  display: inline-block;
  white-space: nowrap;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--foam-dim);
  padding: 3px 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
a.runtime-category {
  color: var(--foam-dim);
  text-decoration: none;
}
a.runtime-category:hover {
  color: var(--foam);
  border-color: var(--wet-sand-2);
  background: rgba(138, 118, 96, 0.16);
  text-decoration: none;
}
.page-main {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 14px 16px 20px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.section-heading {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--foam-dim);
  text-transform: uppercase;
  margin-bottom: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.section-heading::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 34px;
  height: 2px;
  background: var(--wet-sand-2);
}
.movie-overview {
  position: relative;
  background: linear-gradient(160deg, #18222c 0%, #101821 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.overview-shell {
  display: grid;
  grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
  gap: 16px;
  padding: 14px;
  align-items: start;
}
.poster-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-self: start;
}
.poster-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3;
  background: #0c1219;
  border: 1px solid var(--line);
  overflow: hidden;
}
.poster-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 20, 27, 0) 55%, rgba(14, 20, 27, 0.72) 100%),
    repeating-linear-gradient(0deg, rgba(232, 238, 242, 0.05) 0 1px, transparent 1px 6px);
  pointer-events: none;
}
.poster-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.78) contrast(1.05) brightness(0.92);
}
.poster-caption {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.caption-line {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--foam-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.caption-line:first-child {
  color: var(--wet-sand-2);
  font-weight: 600;
}
.overview-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}
.title-block {
  position: relative;
  padding: 2px 0 10px;
  border-bottom: 1px solid var(--line-soft);
}
.movie-title {
  font-size: 27px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--foam);
  max-width: 18em;
}
.movie-tagline {
  margin-top: 4px;
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--wet-sand-2);
  max-width: 26em;
}
.player-shell {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  background: #05090d;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.player-shell video {
  display: block;
  width: 100%;
  background: #05090d;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 6px 8px;
  background: linear-gradient(180deg, #101821 0%, #0b1118 100%);
  border-top: 1px solid var(--line-soft);
}
.player-controls button {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--foam-dim);
  padding: 3px 9px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.player-controls button:hover {
  color: var(--foam);
  border-color: var(--wet-sand-2);
  background: rgba(138, 118, 96, 0.18);
}
.player-shell.is-theater {
  box-shadow: 0 0 0 2px var(--wet-sand-2);
}
.player-shell.is-light-off {
  filter: brightness(0.45);
}
.player-shell.is-light-off .player-controls {
  filter: brightness(2.2);
}
.details-block {
  min-width: 0;
}
.details-table {
  width: 100%;
  table-layout: fixed;
  font-size: 12px;
  border-top: 1px solid var(--line-soft);
}
.details-row {
  border-bottom: 1px solid var(--line-soft);
}
.details-row:last-child {
  border-bottom: none;
}
.details-key {
  text-align: left;
  font-weight: 500;
  color: var(--foam-muted);
  letter-spacing: 0.1em;
  padding: 4px 6px 4px 0;
  width: 8%;
  white-space: nowrap;
  vertical-align: top;
}
.details-value {
  text-align: left;
  color: var(--foam);
  padding: 4px 10px 4px 0;
  width: 25%;
  vertical-align: top;
  word-break: break-word;
}
.synopsis-block {
  min-width: 0;
}
.synopsis-lead {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--foam);
  padding-left: 10px;
  border-left: 2px solid var(--wet-sand-2);
  margin-bottom: 8px;
}
.synopsis-text {
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--foam-dim);
  margin-bottom: 6px;
}
.synopsis-text:last-child {
  margin-bottom: 0;
}
.episode-status-block {
  min-width: 0;
}
.status-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.status-item {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--foam-dim);
  padding: 3px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  white-space: nowrap;
}
.status-item:first-child {
  color: var(--foam);
  border-color: var(--wet-sand);
}
.cast-block {
  min-width: 0;
}
.cast-strip {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  overflow-x: auto;
  padding: 4px 2px 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}
.cast-strip::-webkit-scrollbar {
  height: 5px;
}
.cast-strip::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 3px;
}
.cast-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  flex: 0 0 auto;
  width: 62px;
}
.cast-avatar {
  display: block;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 34% 28%, #4a5a67 0%, #2a3742 55%, #1a242e 100%);
  position: relative;
  overflow: hidden;
}
.cast-avatar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(232, 238, 242, 0.14) 0%, rgba(14, 20, 27, 0.4) 100%);
}
.cast-name {
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--foam-dim);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.timeline-section {
  min-width: 0;
  padding-top: 2px;
}
.timeline-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}
.timeline-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 8px 10px 8px 16px;
  background: #131c25;
  align-items: flex-start;
  text-align: left;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: linear-gradient(180deg, var(--wet-sand-2) 0%, transparent 100%);
}
.timeline-item::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 10px;
  width: 9px;
  height: 9px;
  background: var(--wet-sand-2);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.timeline-timecode {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent);
  white-space: nowrap;
}
.timeline-label {
  font-size: 12px;
  line-height: 1.45;
  color: var(--foam-dim);
}
.episodes-section {
  min-width: 0;
}
.episodes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.episode-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 10px;
  background: #131c25;
  border: 1px solid var(--line-soft);
  border-left: 2px solid var(--wet-sand);
  border-radius: var(--radius);
  min-width: 0;
  align-self: start;
}
.episode-title {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--foam);
}
.episode-summary {
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--foam-muted);
}
.episode-duration {
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--wet-sand-2);
  margin-top: 2px;
  align-self: flex-end;
}
.comments-section {
  min-width: 0;
}
.comments-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.comment-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  padding: 8px 10px;
  background: #131c25;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  min-width: 0;
  align-self: start;
}
.comment-nickname {
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: var(--wet-sand-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.comment-text {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--foam);
}
.recommend-region {
  min-width: 0;
}
.recommend-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--foam-dim);
  margin-bottom: 6px;
  padding-left: 8px;
  border-left: 2px solid var(--wet-sand-2);
}
.recommend-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line-soft);
  background: #131c25;
}
a.recommend-item {
  color: var(--foam-dim);
  text-decoration: none;
}
.recommend-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  min-width: 0;
  align-self: start;
  border-right: 1px solid var(--line-soft);
  transition: background 0.15s;
}
.recommend-item:last-child {
  border-right: none;
}
.recommend-item:hover {
  background: rgba(138, 118, 96, 0.12);
  text-decoration: none;
}
[data-runtime="recommendation"] img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  border: 1px solid var(--line);
  background: #0c1219;
  filter: saturate(0.8) brightness(0.94);
}
.recommend-name {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--foam);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.recommend-blurb {
  font-size: 11px;
  line-height: 1.45;
  color: var(--foam-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.site-footer {
  margin-top: 6px;
  padding: 14px 16px 20px;
  background: linear-gradient(180deg, #0e141b 0%, #0a0f14 100%);
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--foam-dim);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: color 0.15s, border-color 0.15s;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: var(--foam);
  border-bottom-color: var(--wet-sand-2);
}
.footer-disclaimer {
  font-size: 11px;
  line-height: 1.6;
  color: var(--foam-muted);
  max-width: 62em;
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 12px;
  padding-top: 8px;
  border-top: 1px solid var(--line-soft);
}
.friend-links-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--wet-sand-2);
  white-space: nowrap;
}
a.runtime-friend-link {
  font-size: 11.5px;
  color: var(--foam-dim);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s;
}
a.runtime-friend-link:hover {
  color: var(--foam);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.click {
  opacity: 0.7;
}
.play, .mute, .pip, .progress, .speed, .volume, .fullscreen, .theater, .light {
  touch-action: manipulation;
}
.player {
  display: block;
}
@media (max-width: 1024px) {.timeline-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.episodes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }}
@media (max-width: 860px) {.overview-shell {
    grid-template-columns: minmax(0, 200px) minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
  }
.movie-title {
    font-size: 22px;
  }
.timeline-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }}
@media (max-width: 680px) {.page-main {
    gap: 14px;
    padding: 10px 12px 16px;
  }
.overview-shell {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    padding: 10px;
  }
.poster-column {
    max-width: 190px;
  }
.poster-frame {
    max-width: 100%;
  }
.overview-body {
    gap: 12px;
  }
.movie-title {
    font-size: 20px;
  }
.movie-tagline {
    font-size: 11.5px;
  }
.episodes-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.comments-stack {
    grid-template-columns: minmax(0, 1fr);
  }
.timeline-list {
    grid-template-columns: minmax(0, 1fr);
  }
.recommend-strip {
    grid-template-columns: minmax(0, 1fr);
  }
.recommend-item {
    border-right: none;
    border-bottom: 1px solid var(--line-soft);
  }
.recommend-item:last-child {
    border-bottom: none;
  }
.details-table {
    font-size: 11px;
  }
.details-key {
    width: 12%;
  }
.details-value {
    width: 21%;
  }
.site-header {
    padding: 7px 12px;
  }}
@media (max-width: 420px) {.cast-strip {
    gap: 10px;
  }
.cast-item {
    width: 56px;
  }
.cast-avatar {
    width: 46px;
    height: 46px;
  }
.movie-title {
    font-size: 18px;
  }
.player-controls button {
    font-size: 11px;
    padding: 3px 7px;
  }}

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}
