:root {
  --ink: #0b0f12;
  --ink-2: #12181d;
  --iron: #1b2329;
  --iron-2: #232d34;
  --steel: #6b7a83;
  --steel-dim: #48555d;
  --bone: #c9cfc8;
  --bone-dim: #8d9799;
  --gold: #b8912f;
  --gold-soft: #d8b45a;
  --gold-glow: rgba(184, 145, 47, 0.35);
  --cyan-dark: #0f1c22;
  --cyan-line: #1f3a42;
  --line: #2a363d;
  --paper: #cfc6ad;
  --paper-ink: #2a2418;
}
* {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  background:
    radial-gradient(120% 70% at 50% -10%, #16242c 0%, #0b0f12 60%, #070a0c 100%);
  background-attachment: fixed;
  color: var(--bone);
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", "Hiragino Sans GB", "Heiti SC", sans-serif;
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  font-stretch: condensed;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: var(--bone-dim);
  text-decoration: none;
}
h1, h2, h3, p, ul, ol, dl, dd {
  margin: 0;
  padding: 0;
}
ul, ol {
  list-style: none;
}
button, input {
  font: inherit;
  color: inherit;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(180deg, rgba(8, 12, 15, 0.96), rgba(8, 12, 15, 0.78));
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.header-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  max-width: 1240px;
  margin: 0 auto;
  padding: 8px 16px;
}
.brand {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--gold-soft);
  text-decoration: none;
  text-shadow: 0 0 12px var(--gold-glow);
  white-space: nowrap;
}
.brand:hover {
  color: #f0d383;
}
.category-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  min-width: 0;
  flex: 1 1 auto;
}
.runtime-category {
  display: inline-block;
  padding: 3px 9px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--steel);
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.02);
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.runtime-category:hover {
  color: var(--gold-soft);
  border-color: rgba(184, 145, 47, 0.5);
  background: rgba(184, 145, 47, 0.08);
}
.page-main {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px 26px;
  display: block;
}
.section-heading {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--bone);
  text-transform: none;
  padding-left: 10px;
  border-left: 3px solid var(--gold);
  margin-bottom: 10px;
  line-height: 1.2;
}
.hero {
  position: relative;
  margin: 0 -16px 18px;
  min-height: 380px;
  overflow: hidden;
  background:
    linear-gradient(90deg, #0a0e11 0%, #0d1418 45%, rgba(13, 20, 24, 0.4) 100%),
    linear-gradient(180deg, #0a1015 0%, #070a0c 100%);
  border-bottom: 1px solid var(--cyan-line);
}
.hero-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-portrait {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: auto;
  max-width: 68%;
  object-fit: cover;
  object-position: top center;
  filter: contrast(1.08) saturate(0.82) brightness(0.86);
  -webkit-mask-image: linear-gradient(100deg, transparent 0%, #000 26%, #000 100%);
  mask-image: linear-gradient(100deg, transparent 0%, #000 26%, #000 100%);
}
.hero-burst {
  position: absolute;
  top: -6%;
  right: 14%;
  width: 520px;
  height: 520px;
  max-width: 70vw;
  max-height: 70vw;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(216, 180, 90, 0.42) 0%, rgba(184, 145, 47, 0.16) 34%, transparent 66%);
  mix-blend-mode: screen;
  pointer-events: none;
}
.hero-bolt {
  position: absolute;
  top: -10%;
  right: 30%;
  width: 3px;
  height: 130%;
  background: linear-gradient(180deg, transparent, rgba(224, 209, 152, 0.85) 40%, rgba(184, 145, 47, 0.2) 78%, transparent);
  transform: rotate(17deg);
  transform-origin: top center;
  filter: blur(0.4px);
  box-shadow: 0 0 22px rgba(216, 180, 90, 0.55);
  opacity: 0.85;
  pointer-events: none;
}
.hero-caption {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
  max-width: 640px;
  min-height: 380px;
  padding: 0 16px 22px;
}
.hero-title {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #eae6da;
  text-shadow: 0 2px 0 #05080a, 0 0 26px rgba(184, 145, 47, 0.45);
}
.hero-tagline {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold-soft);
}
.hero-desc {
  font-size: 12.5px;
  line-height: 1.72;
  color: #a9b3b4;
  max-width: 560px;
}
.movie-overview {
  background:
    linear-gradient(180deg, rgba(20, 28, 33, 0.92), rgba(13, 18, 22, 0.92));
  border: 1px solid var(--line);
  border-top: 2px solid rgba(184, 145, 47, 0.55);
  border-radius: 3px;
  padding: 14px;
  margin-bottom: 18px;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.45);
}
.overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 232px) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}
.poster-shell {
  position: relative;
  align-self: start;
  line-height: 0;
  border: 1px solid var(--line);
  background: #070a0c;
}
.poster-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(184, 145, 47, 0.18);
  pointer-events: none;
}
.overview-poster {
  width: 100%;
  aspect-ratio: 2 / 3;
  height: auto;
  object-fit: cover;
  filter: contrast(1.06) saturate(0.85);
}
.overview-info {
  min-width: 0;
}
.overview-title {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #e7e2d5;
}
.overview-tagline {
  font-size: 12.5px;
  color: var(--gold-soft);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}
.overview-info > .cast, .overview-info > .synopsis, .overview-info > .episode-status, .overview-info > .details {
  padding-top: 9px;
  margin-top: 9px;
  border-top: 1px solid rgba(107, 122, 131, 0.22);
}
.cast-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px 10px;
  align-items: start;
}
.cast-item {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 7px;
  align-items: center;
  min-width: 0;
}
.cast-avatar {
  grid-row: 1 / span 2;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 42%, rgba(216, 180, 90, 0.5) 0%, rgba(184, 145, 47, 0.1) 55%, transparent 72%),
    linear-gradient(160deg, #2b363d, #141b20);
  border: 1px solid rgba(184, 145, 47, 0.45);
  box-shadow: 0 0 10px rgba(184, 145, 47, 0.18);
}
.cast-name {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #dcd8cb;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cast-note {
  grid-column: 2;
  font-size: 11px;
  line-height: 1.45;
  color: var(--bone-dim);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.synopsis-body {
  column-count: 2;
  column-gap: 20px;
  column-rule: 1px solid rgba(107, 122, 131, 0.18);
}
.synopsis-para {
  font-size: 12px;
  line-height: 1.72;
  color: #9aa4a6;
  margin-bottom: 7px;
  break-inside: avoid;
}
.status-line {
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--gold-soft);
  padding: 5px 9px;
  border: 1px dashed rgba(184, 145, 47, 0.45);
  background: rgba(184, 145, 47, 0.06);
  display: inline-block;
}
.details-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 18px;
}
.detail-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 12px;
  padding: 3px 0;
  border-bottom: 1px dotted rgba(107, 122, 131, 0.22);
  min-width: 0;
}
.detail-key {
  flex: 0 0 62px;
  color: var(--steel);
  letter-spacing: 0.08em;
}
.detail-value {
  flex: 1 1 auto;
  min-width: 0;
  color: #c3c9c4;
}
.player-shell {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(107, 122, 131, 0.22);
  display: block;
  width: 100%;
}
.player-shell video {
  display: block;
  width: 100%;
  background: #000;
  border: 1px solid var(--line);
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 7px 8px;
  background: linear-gradient(180deg, #141c21, #0d1317);
  border: 1px solid var(--line);
  border-radius: 2px;
  transition: background 0.2s, border-color 0.2s;
}
.player-controls.is-light {
  background: #05080a;
  border-color: rgba(184, 145, 47, 0.4);
}
.player-btn {
  padding: 4px 10px;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--bone-dim);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 2px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.player-btn:hover {
  color: var(--gold-soft);
  border-color: rgba(184, 145, 47, 0.5);
}
.player-btn.is-active {
  color: #0b0f12;
  background: var(--gold);
  border-color: var(--gold-soft);
  font-weight: 700;
}
.player-progress, .player-volume {
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(184, 145, 47, 0.6), rgba(107, 122, 131, 0.35));
  cursor: pointer;
  outline: none;
}
.player-progress {
  flex: 1 1 160px;
  min-width: 90px;
}
.player-volume {
  flex: 0 1 90px;
  min-width: 60px;
}
.player-progress::-webkit-slider-thumb, .player-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold-soft);
  border: 1px solid #0b0f12;
  box-shadow: 0 0 8px var(--gold-glow);
}
.player-progress::-moz-range-thumb, .player-volume::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold-soft);
  border: 1px solid #0b0f12;
}
.player-shell.is-theater {
  background: #05080a;
  box-shadow: 0 0 0 1px rgba(184, 145, 47, 0.35), 0 0 40px rgba(0, 0, 0, 0.8);
}
.timeline-section {
  margin-bottom: 20px;
}
.timeline-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 0 12px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    repeating-linear-gradient(90deg, rgba(107, 122, 131, 0.09) 0 1px, transparent 1px 46px);
  scrollbar-width: thin;
  scrollbar-color: var(--steel-dim) transparent;
}
.timeline-scroll::-webkit-scrollbar {
  height: 7px;
}
.timeline-scroll::-webkit-scrollbar-thumb {
  background: var(--steel-dim);
  border-radius: 4px;
}
.timeline-track {
  display: flex;
  align-items: flex-start;
  gap: 0;
  min-width: max-content;
  padding: 12px 4px 2px;
  position: relative;
}
.timeline-track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 145, 47, 0.55) 12%, rgba(184, 145, 47, 0.55) 88%, transparent);
}
.timeline-node {
  position: relative;
  flex: 0 0 196px;
  width: 196px;
  padding: 0 12px 6px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.node-mark {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
  margin-bottom: 2px;
}
.node-mark-hole {
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #05080a 0 34%, #2b363d 36%, #10171b 62%, #05080a 100%);
  border: 1px solid rgba(184, 145, 47, 0.5);
  box-shadow: 0 0 12px rgba(184, 145, 47, 0.28), inset 0 0 8px #000;
}
.node-mark-hole::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px dashed rgba(184, 145, 47, 0.3);
}
.node-mark-talisman {
  background: linear-gradient(160deg, rgba(184, 145, 47, 0.85), rgba(120, 92, 26, 0.55));
  clip-path: polygon(50% 0%, 100% 20%, 100% 80%, 50% 100%, 0% 80%, 0% 20%);
  border: none;
  box-shadow: 0 0 14px rgba(184, 145, 47, 0.4);
}
.node-mark-talisman::after {
  content: "";
  position: absolute;
  inset: 8px 10px;
  background: #0b0f12;
  clip-path: polygon(50% 0%, 100% 20%, 100% 80%, 50% 100%, 0% 80%, 0% 20%);
}
.node-label {
  font-size: 12px;
  line-height: 1.55;
  color: #b7beb9;
  min-height: 3.1em;
}
.node-timecode {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--gold-soft);
  padding: 3px 0;
  border-left: 1px solid rgba(184, 145, 47, 0.35);
  padding-left: 5px;
  margin-top: 2px;
}
.episodes-section {
  margin-bottom: 20px;
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}
.episode-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: baseline;
  column-gap: 8px;
  padding: 8px 10px 8px 12px;
  background: linear-gradient(180deg, rgba(26, 34, 39, 0.9), rgba(15, 21, 25, 0.9));
  border: 1px solid var(--line);
  border-left: 2px solid rgba(184, 145, 47, 0.45);
  border-radius: 2px;
  align-self: start;
}
.episode-card::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 6px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(184, 145, 47, 0.5);
}
.episode-number {
  grid-column: 1;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--gold-soft);
  white-space: nowrap;
}
.episode-title {
  grid-column: 2;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #dcd8cb;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.episode-summary {
  grid-column: 1 / -1;
  font-size: 11.5px;
  line-height: 1.55;
  color: #8f999b;
  margin-top: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.episode-duration {
  grid-column: 1 / -1;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--steel-dim);
  margin-top: 3px;
}
.comments-section {
  margin-bottom: 22px;
}
.comment-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 12px;
  align-items: start;
}
.comment-note {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px 11px 9px;
  background: linear-gradient(170deg, #d3cbb2 0%, #c2b99f 100%);
  color: var(--paper-ink);
  border: 1px solid #a89f84;
  border-radius: 1px;
  box-shadow: 2px 3px 0 rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(184, 145, 47, 0.12);
  transform: rotate(-0.7deg);
  align-self: start;
}
.comment-note:nth-child(2n) {
  transform: rotate(0.9deg) translateY(6px);
}
.comment-note:nth-child(3n) {
  transform: rotate(-1.2deg) translateY(-3px);
}
.comment-tag {
  align-self: flex-start;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #6a5a2c;
  padding: 2px 6px;
  border: 1px solid rgba(106, 90, 44, 0.55);
  background: rgba(184, 145, 47, 0.16);
  text-transform: uppercase;
}
.comment-text {
  font-size: 11.8px;
  line-height: 1.6;
  color: #33301f;
}
.comment-nickname {
  align-self: flex-end;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: #5f5943;
  padding-top: 4px;
  border-top: 1px dashed rgba(42, 36, 24, 0.3);
  width: 100%;
  text-align: right;
}
.recommend-region {
  margin-bottom: 18px;
}
.recommend-row {
  display: grid;
  gap: 8px;
  align-items: start;
}
.recommend-row-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.recommend-row-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.recommend-row-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.recommend-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 6px;
  background: linear-gradient(180deg, rgba(24, 31, 36, 0.9), rgba(14, 19, 23, 0.9));
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--bone-dim);
  text-decoration: none;
  align-self: start;
  transition: border-color 0.15s, transform 0.15s;
}
.recommend-item:hover {
  border-color: rgba(184, 145, 47, 0.55);
  transform: translateY(-2px);
}
[data-runtime="recommendation"] img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  background: #05080a;
  border: 1px solid rgba(107, 122, 131, 0.25);
  filter: saturate(0.85) contrast(1.05);
}
.recommend-name {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #cfd4cd;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.recommend-blurb {
  font-size: 10.8px;
  line-height: 1.5;
  color: #7d8789;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.site-footer {
  background: linear-gradient(180deg, #0a0e11, #060809);
  border-top: 1px solid var(--line);
  margin-top: 8px;
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
}
.footer-nav a {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--steel);
  text-decoration: none;
  padding-bottom: 1px;
  border-bottom: 1px solid transparent;
}
.footer-nav a:hover {
  color: var(--gold-soft);
  border-bottom-color: rgba(184, 145, 47, 0.5);
}
a[data-contract="footer-home"] {
  color: var(--bone);
  text-decoration: none;
}
a[data-contract="footer-sitemap"] {
  color: var(--steel);
  text-decoration: none;
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(107, 122, 131, 0.16);
}
.friend-links-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--gold-soft);
  white-space: nowrap;
}
.runtime-friend-link {
  font-size: 11.5px;
  color: var(--steel-dim);
  text-decoration: none;
  white-space: nowrap;
}
.runtime-friend-link:hover {
  color: var(--gold-soft);
  text-decoration: underline;
  text-decoration-color: rgba(184, 145, 47, 0.5);
}
.footer-disclaimer {
  font-size: 10.8px;
  line-height: 1.6;
  color: #5c6668;
  max-width: 900px;
}
.player {
  display: block;
  width: 100%;
}
.play.is-active, .pause.is-active {
  color: #0b0f12;
  background: var(--gold);
  border-color: var(--gold-soft);
}
.mute.is-active, .progress.is-active, .speed.is-active, .pip.is-active, .click.is-active, .input.is-active, .timeupdate.is-active, .volume.is-active {
  color: var(--gold-soft);
  border-color: rgba(184, 145, 47, 0.55);
}
.theater.is-active, .fullscreen.is-active, .light.is-active {
  color: #0b0f12;
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  font-weight: 700;
}
.light {
  color: var(--bone-dim);
}
.theater {
  color: var(--bone-dim);
}
@media (max-width: 1080px) {.overview-grid {
    grid-template-columns: minmax(0, 200px) minmax(0, 1fr);
  }
.cast-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.episode-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.comment-notes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.recommend-row-5 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }}
@media (max-width: 860px) {.hero {
    min-height: 320px;
  }
.hero-caption {
    min-height: 320px;
  }
.hero-title {
    font-size: 27px;
  }
.hero-portrait {
    max-width: 78%;
    opacity: 0.92;
  }
.overview-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.poster-shell {
    max-width: 220px;
  }
.synopsis-body {
    column-count: 1;
  }
.recommend-row-4, .recommend-row-5 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }}
@media (max-width: 680px) {body {
    font-size: 12.5px;
  }
.page-main {
    padding: 0 12px 22px;
  }
.hero {
    margin: 0 -12px 16px;
    min-height: 300px;
  }
.hero-caption {
    min-height: 300px;
    padding: 0 12px 18px;
  }
.hero-title {
    font-size: 23px;
  }
.hero-desc {
    font-size: 12px;
  }
.cast-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.details-list {
    grid-template-columns: minmax(0, 1fr);
  }
.episode-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.episode-summary {
    white-space: normal;
  }
.comment-notes {
    grid-template-columns: minmax(0, 1fr);
  }
.comment-note, .comment-note:nth-child(2n), .comment-note:nth-child(3n) {
    transform: none;
  }
.recommend-row-3, .recommend-row-4, .recommend-row-5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.timeline-node {
    flex: 0 0 168px;
    width: 168px;
    padding: 0 10px 6px;
  }
.player-controls {
    gap: 5px;
  }
.player-btn {
    padding: 4px 8px;
    font-size: 11px;
  }}
@media (max-width: 420px) {.cast-row {
    grid-template-columns: minmax(0, 1fr);
  }
.recommend-row-3, .recommend-row-4, .recommend-row-5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.player-progress {
    flex: 1 1 100%;
  }
.player-volume {
    flex: 1 1 70px;
  }}

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}
