:root {
  --ink: #05080f;
  --ink-2: #0a1020;
  --ink-3: #101a2e;
  --panel: #0c1424;
  --panel-2: #0f1a2c;
  --line: #1c2a44;
  --line-soft: #16233a;
  --ice: #e8f4ff;
  --ice-dim: #b9cbdd;
  --blue: #7f9bb8;
  --blue-soft: #5d7691;
  --cyan: #6ff0ff;
  --cyan-deep: #2ad4e8;
  --cyan-glow: rgba(111, 240, 255, 0.35);
  --frost: rgba(160, 210, 255, 0.06);
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body, h1, h2, h3, p, figure, dl, dd, ol, ul {
  margin: 0;
  padding: 0;
}
ol, ul {
  list-style: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button, input, select {
  font: inherit;
  color: inherit;
}
button {
  cursor: pointer;
  background: none;
  border: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
body {
  background-color: var(--ink);
  background-image:
    radial-gradient(120% 80% at 50% -10%, rgba(40, 90, 140, 0.28), transparent 62%),
    radial-gradient(90% 60% at 92% 12%, rgba(20, 70, 110, 0.22), transparent 60%),
    linear-gradient(180deg, #060b16 0%, #04070d 100%);
  background-attachment: fixed;
  color: var(--ice);
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC",
    "Source Han Sans SC", "Heiti SC", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-stretch: condensed;
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
::selection {
  background: var(--cyan-deep);
  color: #04121a;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(180deg, rgba(5, 9, 18, 0.96), rgba(5, 9, 18, 0.78));
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 9px 16px;
}
.site-brand {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--ice);
  white-space: nowrap;
  text-shadow: 0 0 14px var(--cyan-glow);
  transition: color 0.18s ease;
}
.site-brand:hover {
  color: var(--cyan);
}
.category-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  min-width: 0;
}
a.runtime-category {
  display: inline-block;
  white-space: nowrap;
  padding: 3px 9px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--blue);
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(20, 36, 58, 0.4);
  transition: color 0.16s ease, border-color 0.16s ease, background-color 0.16s ease;
}
a.runtime-category:hover, a.runtime-category:focus-visible {
  color: var(--cyan);
  border-color: var(--cyan-deep);
  background: rgba(42, 212, 232, 0.1);
}
.page-main {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 16px 30px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.section-heading {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--ice);
  text-transform: uppercase;
  padding-left: 10px;
  border-left: 3px solid var(--cyan-deep);
  line-height: 1.2;
  margin-bottom: 10px;
}
.hero-shell {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: linear-gradient(160deg, #0a1322 0%, #060c17 55%, #04070e 100%);
  overflow: hidden;
}
.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.pulse-wave-field {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 46%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3%;
  padding: 0 4%;
  opacity: 0.5;
  filter: blur(0.4px);
}
.pulse-bar {
  flex: 1 1 0;
  height: 100%;
  min-width: 4px;
  background: linear-gradient(180deg, rgba(111, 240, 255, 0) 0%, rgba(111, 240, 255, 0.55) 62%, rgba(42, 212, 232, 0.9) 100%);
  transform-origin: bottom center;
  animation: pulse-jump 3.6s ease-in-out infinite;
}
.pulse-bar:nth-child(2) { animation-duration: 2.4s; animation-delay: -0.4s; }
.pulse-bar:nth-child(3) { animation-duration: 4.2s; animation-delay: -1.1s; }
.pulse-bar:nth-child(4) { animation-duration: 3s;   animation-delay: -0.7s; }
.pulse-bar:nth-child(5) { animation-duration: 5s;   animation-delay: -1.6s; }
.pulse-bar:nth-child(6) { animation-duration: 2.7s; animation-delay: -0.2s; }
.pulse-bar:nth-child(7) { animation-duration: 3.9s; animation-delay: -2s; }
.pulse-bar:nth-child(8) { animation-duration: 3.3s; animation-delay: -1.3s; }
@keyframes pulse-jump {
  0%, 100% { transform: scaleY(0.12); opacity: 0.45; }
  50%      { transform: scaleY(1);    opacity: 0.95; }
}
.frost-texture {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(63deg, var(--frost) 0 1px, transparent 1px 11px),
    repeating-linear-gradient(-63deg, rgba(190, 225, 255, 0.045) 0 1px, transparent 1px 15px),
    radial-gradient(70% 60% at 78% 32%, rgba(120, 200, 255, 0.12), transparent 70%);
  mix-blend-mode: screen;
}
.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(150px, 210px) minmax(0, 1fr);
  grid-template-areas: "poster info";
  gap: 16px;
  align-items: start;
}
.poster-frame {
  grid-area: poster;
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3;
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  background: #071021;
  box-shadow: 0 0 0 1px rgba(111, 240, 255, 0.08), 0 12px 30px rgba(0, 0, 0, 0.6);
}
.poster-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.08) brightness(0.94);
}
.hero-info {
  grid-area: info;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.movie-title {
  font-size: clamp(22px, 3.4vw, 34px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--ice);
  text-shadow: 0 0 22px rgba(111, 240, 255, 0.28), 0 2px 0 rgba(0, 0, 0, 0.5);
}
.movie-tagline {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--cyan);
  border-left: 2px solid var(--cyan-deep);
  padding-left: 8px;
}
.movie-seo-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--ice-dim);
  max-width: 68ch;
}
.episode-status {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}
.status-chip {
  display: inline-block;
  padding: 2px 9px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--blue);
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(16, 28, 46, 0.7);
  white-space: nowrap;
}
.status-chip-current {
  color: #04121a;
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 0 16px var(--cyan-glow);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}
.btn-play-primary, .btn-theater, .btn-light {
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 2px;
  border: 1px solid var(--line);
  color: var(--ice);
  background: rgba(18, 32, 52, 0.85);
  transition: color 0.16s ease, background-color 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}
.btn-play-primary {
  color: #04121a;
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 0 20px rgba(111, 240, 255, 0.28);
}
.btn-play-primary:hover, .btn-play-primary:focus-visible {
  background: #a4f6ff;
  border-color: #a4f6ff;
}
.btn-theater:hover, .btn-theater:focus-visible, .btn-light:hover, .btn-light:focus-visible {
  color: var(--cyan);
  border-color: var(--cyan-deep);
  background: rgba(42, 212, 232, 0.12);
}
.player-zone {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.player-shell {
  position: relative;
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #03060c;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(111, 240, 255, 0.06), 0 16px 40px rgba(0, 0, 0, 0.65);
}
.player-shell video {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  background: #03060c;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: linear-gradient(180deg, #0e1a2c, #0a1322);
}
.ctl {
  padding: 4px 9px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--ice-dim);
  border: 1px solid var(--line-soft);
  border-radius: 2px;
  background: rgba(16, 28, 46, 0.9);
  white-space: nowrap;
  transition: color 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}
.ctl:hover {
  color: var(--cyan);
  border-color: var(--cyan-deep);
}
.ctl-progress, .ctl-volume {
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--cyan-deep), #1b2c46);
  outline: none;
}
.ctl-progress {
  flex: 1 1 180px;
  min-width: 120px;
}
.ctl-volume {
  flex: 0 1 110px;
  min-width: 70px;
}
.ctl-progress::-webkit-slider-thumb, .ctl-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--ice);
  border: 1px solid var(--cyan-deep);
  box-shadow: 0 0 10px var(--cyan-glow);
  cursor: pointer;
}
.ctl-progress::-moz-range-thumb, .ctl-volume::-moz-range-thumb {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--ice);
  border: 1px solid var(--cyan-deep);
  cursor: pointer;
}
.ctl-speed {
  padding: 4px 6px;
}
.ctl-speed option {
  background: #0a1322;
  color: var(--ice);
}
.ctl.is-active {
  color: #04121a;
  background: var(--cyan);
  border-color: var(--cyan);
}
.hero-shell.is-theater .player-zone {
  position: fixed;
  inset: 0;
  z-index: 90;
  margin: 0;
  padding: 12px;
  background: #02040a;
  justify-content: center;
}
.hero-shell.is-theater .player-shell {
  max-width: 100%;
}
.hero-shell.is-lights-off .hero-backdrop {
  opacity: 0.12;
}
.hero-shell.is-lights-off .hero-content {
  filter: brightness(0.55);
}
.fullscreen .player-shell, .player-shell.fullscreen {
  border-radius: 0;
}
.player-shell.fullscreen video {
  height: 100%;
  object-fit: contain;
}
.cast-strip {
  position: relative;
  z-index: 1;
}
.cast-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}
.cast-card {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 9px;
  border: 1px solid var(--line-soft);
  border-radius: 2px;
  background: rgba(14, 24, 40, 0.72);
  min-width: 0;
}
.cast-avatar {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(190, 235, 255, 0.55), transparent 58%),
    linear-gradient(160deg, #1d3category, #12253d);
  background-color: #14243c;
  border: 1px solid var(--line);
  box-shadow: inset 0 0 12px rgba(111, 240, 255, 0.16);
}
.cast-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ice);
  writing-mode: vertical-rl;
  text-orientation: upright;
  line-height: 1;
  min-width: 1em;
  white-space: nowrap;
}
.synopsis-block {
  position: relative;
  z-index: 1;
}
.synopsis-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 22px;
  padding: 12px 14px;
  border: 1px solid var(--line-soft);
  border-left: 2px solid var(--cyan-deep);
  border-radius: 2px;
  background: rgba(10, 18, 32, 0.6);
}
.synopsis-body p {
  font-size: 13px;
  line-height: 1.72;
  color: var(--ice-dim);
}
.details-block {
  position: relative;
  z-index: 1;
}
.details-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line-soft);
  border-radius: 2px;
  background: var(--line-soft);
  overflow: hidden;
}
.details-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 7px 10px;
  background: rgba(11, 19, 33, 0.94);
}
.details-key {
  flex: 0 0 auto;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--blue-soft);
}
.details-value {
  margin: 0;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ice);
  min-width: 0;
}
.timeline-block {
  position: relative;
  z-index: 1;
  padding-left: 4px;
}
.timeline-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px 14px;
  padding-left: 14px;
  border-left: 1px solid var(--line);
}
.timeline-node {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 6px 8px 7px 12px;
  border: 1px solid var(--line-soft);
  border-radius: 2px;
  background: rgba(10, 18, 31, 0.68);
  min-width: 0;
}
.timeline-dot {
  position: absolute;
  top: 9px;
  left: -20px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #16283f;
  border: 1px solid var(--blue-soft);
  transition: background-color 0.18s ease, box-shadow 0.18s ease;
}
.timeline-timecode {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--blue);
}
.timeline-label {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ice-dim);
}
.timeline-node-current {
  border-color: var(--cyan-deep);
  background: linear-gradient(180deg, rgba(42, 212, 232, 0.13), rgba(10, 18, 31, 0.7));
  box-shadow: 0 0 18px rgba(111, 240, 255, 0.14);
}
.timeline-node-current .timeline-dot {
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 0 12px var(--cyan), 0 0 22px var(--cyan-glow);
}
.timeline-node-current .timeline-timecode {
  color: var(--cyan);
}
.timeline-node-current .timeline-label {
  color: var(--ice);
}
.episodes-block {
  position: relative;
  z-index: 1;
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.episode-card {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 9px 10px;
  border: 1px solid var(--line-soft);
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(15, 26, 44, 0.9), rgba(9, 16, 28, 0.9));
  min-width: 0;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}
.episode-card:hover {
  border-color: var(--cyan-deep);
  box-shadow: 0 0 16px rgba(111, 240, 255, 0.12);
}
.episode-title {
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--ice);
  line-height: 1.3;
}
.episode-number {
  display: inline-block;
  margin-right: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--cyan);
}
.episode-summary {
  font-size: 12px;
  line-height: 1.55;
  color: var(--blue);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.episode-duration {
  align-self: flex-start;
  margin-top: 1px;
  padding: 1px 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--blue-soft);
  border: 1px solid var(--line-soft);
  border-radius: 2px;
}
.comments-block {
  position: relative;
  z-index: 1;
}
.comment-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
}
.comment-item {
  display: flex;
  min-width: 0;
}
.comment-item.comment-left {
  justify-content: flex-start;
}
.comment-item.comment-right {
  justify-content: flex-end;
}
.comment-card {
  position: relative;
  width: 100%;
  max-width: 46ch;
  padding: 9px 11px 10px;
  border: 1px solid var(--line-soft);
  border-radius: 2px;
  background: rgba(12, 20, 34, 0.88);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  min-width: 0;
}
.comment-item.comment-right .comment-card {
  background: rgba(16, 27, 45, 0.9);
  border-color: var(--line);
}
.comment-nickname {
  display: block;
  margin-bottom: 3px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--cyan);
}
.comment-text {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--ice-dim);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.comment-item.comment-left .comment-card::before, .comment-item.comment-right .comment-card::before {
  content: "";
  position: absolute;
  top: 12px;
  width: 2px;
  height: 22px;
  background: linear-gradient(180deg, var(--cyan-deep), transparent);
}
.comment-item.comment-left .comment-card::before {
  left: -1px;
}
.comment-item.comment-right .comment-card::before {
  right: -1px;
}
.recommend-region {
  position: relative;
  z-index: 1;
}
.region-heading {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--ice);
  padding-left: 10px;
  border-left: 3px solid var(--cyan-deep);
  line-height: 1.2;
  margin-bottom: 9px;
}
.recommend-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.recommend-item {
  min-width: 0;
}
a.recommend-link {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  grid-template-areas:
    "thumb name"
    "thumb blurb";
  align-items: start;
  gap: 2px 9px;
  padding: 6px;
  border: 1px solid var(--line-soft);
  border-radius: 2px;
  background: rgba(11, 19, 33, 0.82);
  color: var(--ice);
  text-decoration: none;
  transition: border-color 0.16s ease, background-color 0.16s ease, box-shadow 0.16s ease;
}
a.recommend-link:hover, a.recommend-link:focus-visible {
  border-color: var(--cyan-deep);
  background: rgba(18, 32, 52, 0.92);
  box-shadow: 0 0 14px rgba(111, 240, 255, 0.12);
}
[data-runtime="recommendation"] img {
  grid-area: thumb;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #061021;
  filter: saturate(0.8) brightness(0.92);
}
.recommend-name {
  grid-area: name;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--ice);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.recommend-blurb {
  grid-area: blurb;
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--blue);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.page-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}
.hero-shell {
  grid-column: 1 / -1;
}
.timeline-block, .episodes-block, .comments-block {
  grid-column: 1 / -1;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.page-main {
  flex: 1 1 auto;
}
.recommend-region[data-recommendation-region="1"] {
  grid-column: 1 / 2;
  grid-row: auto;
}
.recommend-region[data-recommendation-region="2"] {
  grid-column: 2 / 3;
}
.recommend-region[data-recommendation-region="3"] {
  grid-column: 3 / 4;
}
.site-footer {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 16px 26px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 20px;
  border-top: 1px solid var(--line);
  color: var(--blue-soft);
  font-size: 11.5px;
  line-height: 1.6;
}
.footer-disclaimer {
  flex: 1 1 320px;
  min-width: 0;
  color: var(--blue-soft);
}
.footer-nav {
  display: flex;
  gap: 12px;
  white-space: nowrap;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  color: var(--ice-dim);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: color 0.15s ease;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: var(--cyan);
}
.friend-links {
  flex: 1 1 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 12px;
}
.friend-links-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--blue-soft);
}
a.runtime-friend-link {
  color: var(--blue);
  text-decoration: none;
  font-size: 11.5px;
  letter-spacing: 0.02em;
  transition: color 0.15s ease;
}
a.runtime-friend-link:hover, a.runtime-friend-link:focus-visible {
  color: var(--cyan);
  text-decoration: underline;
}
.change, .click, .input, .timeupdate, .progress, .speed, .volume {
  
}
.light, .player, .play, .mute, .pip, .theater, .fullscreen {
  
}
.is-active {
  color: var(--cyan);
}
@media (max-width: 980px) {.page-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.recommend-region[data-recommendation-region="1"] {
    grid-column: 1 / 2;
  }
.recommend-region[data-recommendation-region="2"] {
    grid-column: 2 / 3;
  }
.recommend-region[data-recommendation-region="3"] {
    grid-column: 1 / -1;
  }
.recommend-region[data-recommendation-region="3"] .recommend-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }
.cast-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.episode-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.timeline-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.details-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }}
@media (max-width: 720px) {.page-main {
    padding: 12px 12px 24px;
    gap: 20px;
  }
.header-inner {
    padding: 8px 12px;
    gap: 10px;
  }
.hero-shell {
    padding: 12px;
    gap: 12px;
  }
.hero-content {
    grid-template-columns: minmax(120px, 160px) minmax(0, 1fr);
    gap: 12px;
  }
.synopsis-body {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }
.cast-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.episode-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.comment-stack {
    grid-template-columns: minmax(0, 1fr);
  }
.recommend-region[data-recommendation-region="1"], .recommend-region[data-recommendation-region="2"], .recommend-region[data-recommendation-region="3"] {
    grid-column: 1 / -1;
  }
.recommend-region[data-recommendation-region="3"] .recommend-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.details-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }}
@media (max-width: 480px) {body {
    font-size: 13px;
  }
.hero-content {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "poster"
      "info";
  }
.poster-frame {
    max-width: 190px;
  }
.cast-grid, .episode-grid, .recommend-region[data-recommendation-region="3"] .recommend-list {
    grid-template-columns: minmax(0, 1fr);
  }
.timeline-rail {
    grid-template-columns: minmax(0, 1fr);
  }
.details-list {
    grid-template-columns: minmax(0, 1fr);
  }
.movie-title {
    font-size: 22px;
  }
.ctl-progress {
    flex-basis: 100%;
  }}

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}
