:root {
  --bg-void: #0b0e13;
  --bg-panel: #11151c;
  --bg-raised: #161b24;
  --bg-tint: #1a2029;
  --stroke: #232b37;
  --stroke-soft: #1b222c;
  --ink: #d6dde7;
  --ink-dim: #8b97a7;
  --ink-faint: #5d6878;
  --cold: #6f8bab;
  --cold-deep: #3d5670;
  --breach: #96202f;
  --breach-lit: #c0392b;
  --breach-soft: rgba(150, 32, 47, 0.28);
  --rule: rgba(111, 139, 171, 0.18);
  --font: "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --tight: 0.75rem;
  --edge: clamp(0.75rem, 2vw, 2rem);
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-void);
  background-image:
    linear-gradient(180deg, rgba(11, 14, 19, 0) 0%, rgba(11, 14, 19, 0.6) 55%, var(--bg-void) 100%),
    repeating-linear-gradient(90deg, rgba(111, 139, 171, 0.035) 0 1px, transparent 1px 46px),
    repeating-linear-gradient(0deg, rgba(111, 139, 171, 0.028) 0 1px, transparent 1px 34px);
  color: var(--ink);
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 300;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: var(--cold);
  text-decoration: none;
}
h2, h3, p, ul, ol, li, figure, figcaption, dl, dt, dd {
  margin: 0;
  padding: 0;
}
ul, ol {
  list-style: none;
}
button, input, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.55rem var(--edge);
  background: rgba(9, 12, 17, 0.94);
  border-bottom: 1px solid var(--stroke);
  backdrop-filter: blur(8px);
}
.site-brand {
  flex: 0 0 auto;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #eaf0f7;
  text-transform: uppercase;
  padding-right: 0.9rem;
  border-right: 1px solid var(--stroke);
  white-space: nowrap;
}
.site-brand::first-letter {
  color: var(--breach-lit);
}
a[data-contract="site-name"] {
  color: #eaf0f7;
  text-decoration: none;
}
a[data-contract="site-name"]:hover {
  color: var(--breach-lit);
  text-decoration: none;
}
.category-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.9rem;
  flex: 1 1 auto;
  min-width: 0;
  font-size: 0.8rem;
}
.runtime-category, a.runtime-category {
  display: inline-block;
  color: var(--ink-dim);
  text-decoration: none;
  white-space: nowrap;
  font-weight: 400;
  letter-spacing: 0.06em;
  padding: 0.15rem 0.1rem;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
a.runtime-category:hover, .runtime-category:hover {
  color: #e6edf5;
  border-bottom-color: var(--breach);
}
.page-main {
  display: block;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--edge) 1.5rem;
}
.section-title {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #c7d3e1;
  text-transform: uppercase;
  padding-bottom: 0.4rem;
  margin-bottom: 0.65rem;
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.section-title::before {
  content: "";
  width: 3px;
  height: 0.85em;
  background: var(--breach);
  flex: 0 0 auto;
}
.movie-overview {
  display: grid;
  grid-template-columns: minmax(0, 250px) minmax(0, 1fr);
  gap: 1.4rem 1.6rem;
  align-items: start;
  margin: 1.1rem 0 1.6rem;
  padding: 1.15rem 1.25rem 1.3rem;
  background: linear-gradient(160deg, #12171f 0%, #0e1218 62%, #101620 100%);
  border: 1px solid var(--stroke);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}
.movie-overview::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    96deg,
    rgba(150, 32, 47, 0.05) 0 2px,
    transparent 2px 68px
  );
  pointer-events: none;
}
.movie-overview > * {
  position: relative;
  z-index: 1;
}
.overview-poster-wrap {
  width: 100%;
  max-width: 250px;
  align-self: start;
  border: 1px solid var(--stroke);
  background: #0a0d12;
  position: relative;
}
.overview-poster-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.55);
  pointer-events: none;
}
img.overview-poster {
  width: 100%;
  aspect-ratio: 2 / 3;
  height: auto;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.06) brightness(0.92);
}
.overview-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1.05rem;
}
.overview-title {
  font-size: clamp(1.45rem, 3.6vw, 2.15rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0.02em;
  color: #f0f4f9;
  margin: 0;
}
.overview-tagline {
  margin-top: 0.45rem;
  font-size: 0.86rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--breach-lit);
  padding-left: 0.7rem;
  border-left: 2px solid var(--breach);
}
.synopsis-section {
  border-top: 1px solid var(--stroke-soft);
  padding-top: 0.85rem;
}
.synopsis-section .section-title {
  font-size: 0.72rem;
  border-bottom: none;
  margin-bottom: 0.5rem;
  padding-bottom: 0;
  color: var(--cold);
}
.synopsis-body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.synopsis-paragraph {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.72;
  color: #a9b6c6;
  text-align: justify;
}
.synopsis-paragraph:first-child {
  color: #c3cfdd;
}
.synopsis-paragraph:first-child::first-letter {
  font-size: 1.6em;
  font-weight: 700;
  color: var(--breach-lit);
  line-height: 1;
}
.cast-strip {
  border-top: 1px solid var(--stroke-soft);
  padding-top: 0.8rem;
}
.cast-strip-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--cold);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.cast-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--stroke-soft);
  border-bottom: 1px solid var(--stroke-soft);
}
.cast-item {
  border-right: 1px solid var(--stroke-soft);
  min-width: 0;
}
.cast-item:last-child {
  border-right: none;
}
.cast-avatar-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 0.35rem;
  margin: 0;
}
img.cast-avatar {
  width: 100%;
  max-width: 66px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--cold-deep);
  filter: grayscale(0.5) brightness(0.88) contrast(1.05);
  transition: filter 0.2s ease, border-color 0.2s ease;
}
.cast-item:hover img.cast-avatar {
  filter: grayscale(0) brightness(1) contrast(1.05);
  border-color: var(--breach-lit);
}
.cast-name {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--ink-dim);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.episode-status {
  border-top: 1px solid var(--stroke-soft);
  padding-top: 0.8rem;
}
.episode-status-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--cold);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.episode-status-line {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--ink-dim);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.episode-status-meter {
  position: relative;
  width: 100%;
  height: 4px;
  background: #1c232d;
  border-radius: 0;
  overflow: hidden;
}
.episode-status-fill {
  display: block;
  height: 100%;
  width: 50%;
  background: linear-gradient(90deg, var(--cold-deep), var(--breach));
}
.details-table {
  border-top: 1px solid var(--stroke-soft);
  padding-top: 0.8rem;
}
.details-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--cold);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
table.details-grid {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 0.78rem;
}
.details-row {
  border-bottom: 1px solid var(--stroke-soft);
}
.details-row:last-child {
  border-bottom: none;
}
.details-key {
  text-align: left;
  font-weight: 400;
  color: var(--ink-faint);
  letter-spacing: 0.08em;
  padding: 0.32rem 0.6rem 0.32rem 0;
  width: 8.5em;
  vertical-align: top;
}
.details-value {
  font-weight: 400;
  color: #bcc9d8;
  padding: 0.32rem 0;
  vertical-align: top;
  overflow-wrap: anywhere;
}
.player-shell {
  margin-top: 1.15rem;
  padding: 0.5rem;
  background: #070a0e;
  border: 1px solid var(--stroke);
  border-radius: 3px;
}
.player-video {
  display: block;
  width: 100%;
  background: #000;
  border: 1px solid var(--stroke-soft);
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.45rem;
  padding: 0.55rem 0.15rem 0.15rem;
}
.player-btn {
  appearance: none;
  border: 1px solid var(--stroke);
  background: var(--bg-raised);
  color: #c1cddc;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.6rem;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.player-btn:hover {
  background: #1e2632;
  border-color: var(--cold-deep);
  color: #e8eef6;
}
.player-btn:active {
  border-color: var(--breach);
}
.player-btn.is-active, .player-btn.play, .player-btn.mute, .player-btn.fullscreen, .player-btn.theater, .player-btn.light {
  border-color: var(--cold-deep);
}
.player-btn.is-active {
  background: var(--breach-soft);
  border-color: var(--breach);
  color: #f2d9dc;
}
.player-shell.is-theater {
  background: #04060a;
  border-color: var(--breach);
}
.player-shell.is-light .player-video {
  filter: brightness(1.22) contrast(1.02);
}
.player-shell.is-light {
  border-color: var(--cold);
}
input.player-range {
  appearance: none;
  -webkit-appearance: none;
  height: 4px;
  min-width: 90px;
  flex: 1 1 100px;
  background: #1c232d;
  border-radius: 0;
  cursor: pointer;
  border: none;
  outline: none;
}
input.player-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--cold);
  border: 1px solid #0a0d12;
  cursor: pointer;
}
input.player-range::-moz-range-thumb {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--cold);
  border: 1px solid #0a0d12;
  cursor: pointer;
}
input.player-range::-moz-range-track {
  height: 4px;
  background: #1c232d;
}
select.player-speed {
  appearance: none;
  -webkit-appearance: none;
  background: var(--bg-raised);
  border: 1px solid var(--stroke);
  color: #c1cddc;
  font-size: 0.72rem;
  padding: 0.3rem 1.4rem 0.3rem 0.55rem;
  border-radius: 2px;
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, var(--cold) 50%),
    linear-gradient(135deg, var(--cold) 50%, transparent 50%);
  background-position: calc(100% - 0.85rem) 50%, calc(100% - 0.55rem) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
.timeline-section {
  margin-top: 1.5rem;
}
.timeline-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding-left: 0;
}
.timeline-list::before {
  content: "";
  position: absolute;
  left: 6.6em;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 1px;
  background: linear-gradient(180deg, var(--cold-deep), var(--breach) 70%, var(--breach));
  opacity: 0.7;
}
.timeline-item {
  display: grid;
  grid-template-columns: 6.6em minmax(0, 1fr);
  align-items: start;
  gap: 1.1rem;
  position: relative;
}
.timeline-timecode {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--cold);
  text-align: right;
  padding-top: 0.5rem;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.timeline-card {
  position: relative;
  background: linear-gradient(100deg, var(--bg-raised), #12161d);
  border: 1px solid var(--stroke);
  border-left: 2px solid var(--breach);
  border-radius: 2px;
  padding: 0.5rem 0.75rem;
  margin-left: 0.6rem;
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.timeline-card::before {
  content: "";
  position: absolute;
  left: -0.68rem;
  top: 0.85rem;
  width: 6px;
  height: 6px;
  background: var(--bg-void);
  border: 1px solid var(--cold);
  transform: rotate(45deg);
}
.timeline-item:hover .timeline-card {
  transform: translateX(3px);
  border-left-color: var(--breach-lit);
}
.timeline-label {
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.6;
  color: #aab7c7;
}
.episodes-section {
  margin-top: 1.5rem;
}
.episodes-count {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
  margin: -0.35rem 0 0.65rem;
}
.episodes-scroller {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--cold-deep) #12161d;
  -webkit-overflow-scrolling: touch;
}
.episodes-scroller::-webkit-scrollbar {
  height: 7px;
}
.episodes-scroller::-webkit-scrollbar-track {
  background: #12161d;
}
.episodes-scroller::-webkit-scrollbar-thumb {
  background: var(--cold-deep);
  border-radius: 0;
}
.episode-list {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
  padding-bottom: 0.15rem;
}
.episode-card {
  flex: 0 0 200px;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.6rem 0.65rem;
  background: var(--bg-panel);
  border: 1px solid var(--stroke);
  border-top: 2px solid var(--cold-deep);
  border-radius: 2px;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.episode-card:hover {
  border-top-color: var(--breach-lit);
  background: var(--bg-tint);
  transform: translateY(-2px);
}
.episode-number {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--breach-lit);
  font-variant-numeric: tabular-nums;
}
.episode-title {
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #e2e9f2;
  line-height: 1.2;
}
.episode-meta {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  font-size: 0.68rem;
  color: var(--ink-faint);
}
.episode-meta-key {
  letter-spacing: 0.1em;
  color: var(--ink-faint);
}
.episode-meta-value {
  color: var(--ink-dim);
  font-variant-numeric: tabular-nums;
}
.episode-summary {
  font-size: 0.74rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink-dim);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}
.episode-card:hover .episode-summary {
  display: block;
  -webkit-line-clamp: unset;
  color: #aebbcb;
}
.comments-section {
  margin-top: 1.5rem;
}
.comment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 0.75rem;
  align-items: start;
}
.comment-card {
  background: var(--bg-panel);
  border: 1px solid var(--stroke-soft);
  border-left: 2px solid var(--cold-deep);
  border-radius: 2px;
  padding: 0.55rem 0.7rem;
  min-width: 0;
}
.comment-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
}
.comment-nickname {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--breach-lit);
}
.comment-text {
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1.65;
  color: #a6b3c3;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.comment-card:hover .comment-text {
  -webkit-line-clamp: unset;
  overflow: visible;
}
.recommend-region {
  margin-top: 1.25rem;
  padding-top: 0.7rem;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem 0.6rem;
}
.recommend-title {
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #c7d3e1;
  text-transform: uppercase;
  margin: 0;
  flex: 0 0 auto;
}
.recommend-count {
  display: inline-block;
  flex: 0 0 auto;
  min-width: 1.5em;
  text-align: center;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #f0d7da;
  background: var(--breach);
  padding: 0.1rem 0.4rem;
  border-radius: 2px;
  font-variant-numeric: tabular-nums;
}
.recommend-list {
  flex: 1 1 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.5rem;
  margin-top: 0.2rem;
}
.recommend-item {
  min-width: 0;
  display: flex;
}
.recommend-link {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  width: 100%;
  min-width: 0;
  padding: 0.4rem;
  background: var(--bg-panel);
  border: 1px solid var(--stroke-soft);
  border-radius: 2px;
  color: var(--ink-dim);
  text-decoration: none;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.recommend-link:hover {
  border-color: var(--cold-deep);
  background: var(--bg-tint);
}
[data-runtime="recommendation"] img, .recommend-link img.recommend-pic {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  display: block;
  filter: saturate(0.7) brightness(0.85);
  border: 1px solid var(--stroke-soft);
}
.recommend-name {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #d3dce7;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.recommend-blurb {
  font-size: 0.68rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--ink-faint);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
a.recommend-link {
  color: var(--ink-dim);
  text-decoration: none;
}
a.recommend-link:hover {
  color: #d3dce7;
  text-decoration: none;
}
.site-footer {
  max-width: 1180px;
  margin: 0.5rem auto 0;
  padding: 1rem var(--edge) 1.5rem;
  border-top: 1px solid var(--stroke);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-disclaimer {
  font-size: 0.7rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--ink-faint);
  max-width: 70ch;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.1rem;
  font-size: 0.76rem;
}
.footer-link {
  color: var(--cold);
  text-decoration: none;
  letter-spacing: 0.08em;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.footer-link:hover {
  border-bottom-color: var(--breach);
}
a[data-contract="footer-home"] {
  color: var(--cold);
  text-decoration: none;
}
a[data-contract="footer-home"]:hover {
  color: #e6edf5;
  text-decoration: none;
}
a[data-contract="footer-sitemap"] {
  color: var(--cold);
  text-decoration: none;
}
a[data-contract="footer-sitemap"]:hover {
  color: #e6edf5;
  text-decoration: none;
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.3rem 0.85rem;
  padding-top: 0.55rem;
  border-top: 1px solid var(--stroke-soft);
  font-size: 0.72rem;
}
.friend-links-label {
  flex: 0 0 auto;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--ink-faint);
  text-transform: uppercase;
  margin-right: 0.35rem;
}
.runtime-friend-link, a.runtime-friend-link {
  color: var(--ink-dim);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
a.runtime-friend-link:hover, .runtime-friend-link:hover {
  color: var(--breach-lit);
  border-bottom-color: var(--breach-soft);
}
.play, .mute, .pip, .fullscreen, .theater, .light, .speed, .progress, .timeupdate, .volume, .click, .change, .input, .main, .player, .is-active, .is-light, .is-theater {
  --runtime-hook: 1;
}
.is-active {
  color: #f2d9dc;
}
.is-light {
  filter: brightness(1.2);
}
.is-theater {
  background: #04060a;
}
@media (max-width: 900px) {.movie-overview {
    grid-template-columns: minmax(0, 200px) minmax(0, 1fr);
    gap: 1.1rem;
    padding: 1rem;
  }
.overview-poster-wrap {
    max-width: 200px;
  }
.recommend-list {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }}
@media (max-width: 720px) {body {
    font-size: 13px;
  }
.site-header {
    gap: 0.6rem;
    padding: 0.5rem var(--edge);
  }
.site-brand {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
  }
.category-bar {
    font-size: 0.72rem;
    gap: 0.3rem 0.65rem;
  }
.movie-overview {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.9rem;
  }
.overview-poster-wrap {
    max-width: 190px;
    margin: 0 auto;
  }
.comment-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.cast-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
img.cast-avatar {
    max-width: 52px;
  }
.timeline-list::before {
    left: 4.6em;
  }
.timeline-item {
    grid-template-columns: 4.6em minmax(0, 1fr);
    gap: 0.7rem;
  }
.timeline-timecode {
    font-size: 0.64rem;
    padding-top: 0.45rem;
  }
.episode-card {
    flex: 0 0 176px;
  }
.recommend-list {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  }}
@media (max-width: 520px) {.site-header {
    flex-wrap: wrap;
    row-gap: 0.4rem;
  }
.site-brand {
    border-right: none;
    padding-right: 0;
  }
.category-bar {
    flex: 1 1 100%;
  }
.cast-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.cast-item:nth-child(3n) {
    border-right: none;
  }
.cast-item:nth-child(n + 4) {
    border-top: 1px solid var(--stroke-soft);
  }
.details-key {
    width: 6.5em;
  }
.player-controls {
    gap: 0.3rem;
  }
.player-btn {
    font-size: 0.68rem;
    padding: 0.28rem 0.5rem;
  }
input.player-range {
    flex: 1 1 100%;
    min-width: 0;
  }
.timeline-list::before {
    display: none;
  }
.timeline-item {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.25rem;
  }
.timeline-timecode {
    text-align: left;
    padding-top: 0;
    color: var(--breach-lit);
  }
.timeline-card {
    margin-left: 0;
  }
.timeline-card::before {
    display: none;
  }
.recommend-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.episode-card {
    flex: 0 0 160px;
  }}
@media (min-width: 721px) and (max-width: 900px) {.comment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }}
@media (prefers-reduced-motion: reduce) {* {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }}

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}
