:root {
  --wall-deep: #0b0b0c;
  --wall-base: #141416;
  --wall-mid: #1c1c1f;
  --wall-up: #26262a;
  --wall-light: #333338;
  --crack-glow: #4a3d22;
  --crack-warm: #7a6535;
  --paper: #d8d2c4;
  --paper-dim: #a49d8e;
  --paper-yellow: #c9b882;
  --ink-red: #8f2a2a;
  --pencil: #6a6a70;
  --line: rgba(216, 210, 196, 0.12);
  --line-strong: rgba(216, 210, 196, 0.22);
  --serif: "Songti SC", "STSong", "SimSun", "Noto Serif SC", serif;
  --hand: "Kaiti SC", "STKaiti", "KaiTi", "Songti SC", serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background-color: var(--wall-deep);
  background-image:
    radial-gradient(ellipse at 18% 8%, rgba(122, 101, 53, 0.05), transparent 42%),
    radial-gradient(ellipse at 82% 60%, rgba(122, 101, 53, 0.03), transparent 50%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.012) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.16) 0 2px, transparent 2px 5px);
  color: var(--paper);
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: 0.02em;
  min-height: 100vh;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: var(--paper-yellow);
  text-decoration: none;
}
button {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}
ul, ol, dl {
  list-style: none;
}
h1, h2, h3 {
  font-weight: 600;
  line-height: 1.25;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(11, 11, 12, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(122, 101, 53, 0.08);
}
.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
a[data-contract="site-name"] {
  font-family: var(--hand);
  font-size: 19px;
  letter-spacing: 0.14em;
  color: var(--paper-yellow);
  text-decoration: none;
  text-shadow: 0 0 14px rgba(201, 184, 130, 0.18);
  transform: skewX(-4deg);
  white-space: nowrap;
}
a[data-contract="site-name"]:hover, a[data-contract="site-name"]:focus-visible {
  color: #e6d79a;
  text-decoration: none;
}
.category-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 4px;
  flex: 1 1 auto;
  min-width: 0;
}
a.runtime-category {
  display: inline-block;
  white-space: nowrap;
  font-size: 12.5px;
  padding: 3px 9px;
  color: var(--paper-dim);
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
a.runtime-category:hover, a.runtime-category:focus-visible {
  color: var(--paper-yellow);
  border-color: rgba(201, 184, 130, 0.45);
  background: rgba(122, 101, 53, 0.12);
  text-decoration: none;
}
.page-main {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px 0;
}
.block-heading {
  font-family: var(--hand);
  font-size: 15px;
  letter-spacing: 0.22em;
  color: var(--paper-yellow);
  padding-left: 12px;
  margin-bottom: 8px;
  position: relative;
  transform: skewX(-3deg);
}
.block-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 2px;
  background: linear-gradient(180deg, var(--crack-warm), rgba(143, 42, 42, 0.6));
  box-shadow: 0 0 8px rgba(122, 101, 53, 0.5);
}
.hero-layer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  grid-template-areas: "info figure";
  gap: 0 22px;
  padding: 20px 0 22px;
  border-bottom: 1px solid var(--line);
}
.hero-crackline {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 46%;
  pointer-events: none;
  background:
    linear-gradient(178deg, transparent 0 12%, rgba(122, 101, 53, 0.16) 12.4%, transparent 13%, transparent 100%),
    linear-gradient(182deg, transparent 0 34%, rgba(122, 101, 53, 0.13) 34.4%, transparent 35%, transparent 100%),
    linear-gradient(179deg, transparent 0 58%, rgba(122, 101, 53, 0.1) 58.5%, transparent 59%, transparent 100%),
    linear-gradient(181deg, transparent 0 79%, rgba(143, 42, 42, 0.1) 79.4%, transparent 80%, transparent 100%);
  opacity: 0.9;
  mix-blend-mode: screen;
}
.hero-figure {
  grid-area: figure;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}
.hero-figure-media {
  position: relative;
  width: 100%;
  max-width: 320px;
  filter: contrast(1.04) saturate(0.82) brightness(0.86);
}
.hero-figure-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--wall-deep) 0%, transparent 26%),
    linear-gradient(180deg, transparent 62%, rgba(11, 11, 12, 0.85) 100%);
  pointer-events: none;
}
.hero-poster {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  height: auto;
  border: 1px solid var(--line-strong);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.7), 0 18px 40px rgba(0, 0, 0, 0.65);
}
.hero-info {
  grid-area: info;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-crack-column {
  max-width: 560px;
  padding-left: 14px;
  border-left: 2px solid rgba(122, 101, 53, 0.28);
  position: relative;
}
.hero-crack-column::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--crack-warm) 0 18%, transparent 18% 44%, rgba(122, 101, 53, 0.7) 44% 62%, transparent 62% 100%);
  box-shadow: 0 0 10px rgba(122, 101, 53, 0.35);
}
.hero-title {
  font-family: var(--hand);
  font-size: clamp(30px, 4.6vw, 52px);
  letter-spacing: 0.06em;
  color: #e8e2d4;
  transform: skewX(-5deg);
  text-shadow: 0 0 26px rgba(122, 101, 53, 0.22), 0 2px 0 rgba(0, 0, 0, 0.6);
  margin-bottom: 4px;
}
.hero-tagline {
  font-family: var(--hand);
  font-size: 15px;
  letter-spacing: 0.14em;
  color: var(--paper-yellow);
  margin-bottom: 8px;
  opacity: 0.92;
}
.hero-rating-line {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}
.rating-value {
  font-family: var(--hand);
  font-size: 34px;
  line-height: 1;
  color: var(--crack-warm);
  text-shadow: 0 0 18px rgba(122, 101, 53, 0.55);
  letter-spacing: 0.04em;
}
.hero-rating-line::after {
  content: "评分 / 10";
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--paper-dim);
  opacity: 0.75;
}
.hero-genre-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 8px;
}
.genre-chip {
  font-size: 11.5px;
  letter-spacing: 0.1em;
  padding: 2px 9px;
  color: var(--paper-dim);
  border: 1px solid var(--line-strong);
  border-radius: 1px;
  background: rgba(38, 38, 42, 0.6);
}
.hero-seo {
  font-size: 12.8px;
  line-height: 1.72;
  color: var(--paper-dim);
  text-align: justify;
  max-width: 54ch;
  padding-top: 6px;
  border-top: 1px dashed rgba(216, 210, 196, 0.14);
}
.hero-player-wrap {
  position: relative;
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line-strong);
  background: #000;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.8), 0 10px 26px rgba(0, 0, 0, 0.55);
}
.player-frame {
  display: block;
  width: 100%;
  background: #000;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 6px 7px;
  background: linear-gradient(180deg, var(--wall-mid), var(--wall-base));
  border-top: 1px solid var(--line);
}
.ctrl-btn {
  font-family: var(--serif);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  color: var(--paper-dim);
  border: 1px solid var(--line);
  border-radius: 1px;
  background: rgba(28, 28, 31, 0.9);
  white-space: nowrap;
  transition: color 0.14s, border-color 0.14s, background 0.14s;
}
.ctrl-btn:hover, .ctrl-btn:focus-visible {
  color: var(--paper-yellow);
  border-color: rgba(201, 184, 130, 0.5);
  background: rgba(122, 101, 53, 0.16);
}
.ctrl-btn.is-active, .ctrl-btn.click {
  color: #e6d79a;
  border-color: rgba(201, 184, 130, 0.65);
  background: rgba(122, 101, 53, 0.26);
}
.ctrl-btn.play, .ctrl-btn.pause, .ctrl-btn.mute, .ctrl-btn.volume, .ctrl-btn.progress, .ctrl-btn.speed, .ctrl-btn.pip, .ctrl-btn.light, .ctrl-btn.theater, .ctrl-btn.fullscreen {
  letter-spacing: 0.1em;
}
.cast-block {
  min-width: 0;
}
.cast-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 8px 10px;
  padding: 9px 10px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(38, 38, 42, 0.55), rgba(20, 20, 22, 0.7));
}
.cast-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  position: relative;
  padding-right: 10px;
}
.cast-card:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 18px;
  width: 10px;
  height: 1px;
  background: var(--pencil);
  opacity: 0.6;
}
.cast-avatar {
  display: block;
  width: 46px;
  height: 46px;
  border-radius: 1px;
  background:
    radial-gradient(circle at 50% 34%, rgba(216, 210, 196, 0.28) 0 22%, transparent 23%),
    radial-gradient(ellipse at 50% 96%, rgba(216, 210, 196, 0.2) 0 40%, transparent 41%),
    linear-gradient(160deg, #3a3a40, #1d1d20);
  border: 1px solid var(--line-strong);
  filter: grayscale(1) contrast(1.05);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
}
.cast-name {
  font-family: var(--hand);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  color: var(--paper-dim);
  white-space: nowrap;
}
.synopsis-block {
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-left: 3px solid rgba(143, 42, 42, 0.55);
  background: linear-gradient(180deg, rgba(28, 28, 31, 0.6), rgba(20, 20, 22, 0.75));
}
.synopsis-para {
  font-size: 12.8px;
  line-height: 1.78;
  color: var(--paper-dim);
  text-align: justify;
  margin-bottom: 7px;
}
.synopsis-para:last-child {
  margin-bottom: 0;
}
.synopsis-para::first-letter {
  color: var(--ink-red);
}
.episode-status {
  min-width: 0;
  padding: 8px 12px;
  border: 1px solid var(--line);
  background: rgba(28, 28, 31, 0.5);
}
.status-line {
  font-family: var(--hand);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--paper);
}
.status-line::before {
  content: "▍";
  color: var(--ink-red);
  margin-right: 6px;
}
.details-block {
  min-width: 0;
  padding: 9px 12px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(38, 38, 42, 0.5), rgba(20, 20, 22, 0.7));
}
.detail-list {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 4px 10px;
  align-items: baseline;
}
.detail-term {
  font-size: 11.5px;
  letter-spacing: 0.1em;
  color: var(--paper-dim);
  opacity: 0.8;
  white-space: nowrap;
}
.detail-desc {
  font-size: 12.4px;
  color: var(--paper);
  border-bottom: 1px dotted rgba(216, 210, 196, 0.16);
}
.timeline-section {
  padding: 20px 0 22px;
  border-bottom: 1px solid var(--line);
}
.timeline-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 4px 0;
}
.timeline-list::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent, rgba(122, 101, 53, 0.5) 8%, rgba(122, 101, 53, 0.35) 90%, transparent);
  box-shadow: 0 0 12px rgba(122, 101, 53, 0.25);
}
.timeline-item {
  position: relative;
  width: calc(50% - 18px);
  padding: 6px 10px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(38, 38, 42, 0.55), rgba(20, 20, 22, 0.72));
  font-size: 12.4px;
}
.timeline-item::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 14px;
  height: 1px;
  background: var(--crack-warm);
  opacity: 0.55;
  transform: translateY(-50%);
}
.timeline-item-left {
  align-self: flex-start;
  text-align: right;
  border-right: 2px solid rgba(122, 101, 53, 0.4);
}
.timeline-item-left::after {
  right: -14px;
}
.timeline-item-right {
  align-self: flex-end;
  border-left: 2px solid rgba(122, 101, 53, 0.4);
}
.timeline-item-right::after {
  left: -14px;
}
.timeline-timecode {
  display: block;
  font-family: var(--hand);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  color: var(--crack-warm);
  margin-bottom: 2px;
}
.timeline-label {
  display: block;
  color: var(--paper-dim);
  line-height: 1.6;
}
.episodes-section {
  padding: 20px 0 22px;
  border-bottom: 1px solid var(--line);
}
.episode-band {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(214px, 1fr);
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 2px 12px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(122, 101, 53, 0.5) rgba(28, 28, 31, 0.6);
}
.episode-band::-webkit-scrollbar {
  height: 7px;
}
.episode-band::-webkit-scrollbar-track {
  background: rgba(28, 28, 31, 0.6);
}
.episode-band::-webkit-scrollbar-thumb {
  background: rgba(122, 101, 53, 0.5);
}
.episode-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-self: start;
  padding: 11px 12px 12px;
  scroll-snap-align: start;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(48, 46, 42, 0.55), rgba(22, 22, 24, 0.85)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.014) 0 1px, transparent 1px 4px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 6px 16px rgba(0, 0, 0, 0.45);
}
.episode-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 22px;
  height: 22px;
  background: linear-gradient(225deg, var(--wall-deep) 0 49%, transparent 50%);
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.episode-corner::before {
  content: "";
  position: absolute;
  top: 3px;
  right: 3px;
  width: 9px;
  height: 1px;
  background: var(--ink-red);
  opacity: 0.65;
  transform: rotate(-45deg);
}
.episode-number {
  font-family: var(--hand);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  color: var(--crack-warm);
}
.episode-title {
  font-family: var(--hand);
  font-size: 16.5px;
  letter-spacing: 0.08em;
  color: var(--paper);
  transform: skewX(-3deg);
}
.episode-summary {
  font-size: 12.2px;
  line-height: 1.68;
  color: var(--paper-dim);
  text-align: justify;
}
.episode-duration {
  margin-top: auto;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--paper-dim);
  opacity: 0.72;
  padding-top: 4px;
  border-top: 1px dashed rgba(216, 210, 196, 0.14);
}
.comments-section {
  padding: 20px 0 22px;
  border-bottom: 1px solid var(--line);
}
.comment-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}
.comment-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.comment-col-left {
  padding-top: 0;
}
.comment-col-right {
  padding-top: 16px;
}
.comment-card {
  position: relative;
  padding: 9px 11px 10px;
  border: 1px solid var(--line);
  background: linear-gradient(175deg, rgba(56, 52, 44, 0.6), rgba(24, 23, 22, 0.86));
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
}
.comment-card::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 14px;
  width: 30px;
  height: 8px;
  background: rgba(143, 42, 42, 0.35);
  transform: rotate(-1.5deg);
}
.comment-short {
  transform: rotate(-0.35deg);
}
.comment-long {
  transform: rotate(0.3deg);
  border-left: 2px solid rgba(143, 42, 42, 0.4);
}
.comment-nick {
  display: block;
  font-family: var(--hand);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--ink-red);
  margin-bottom: 4px;
}
.comment-text {
  font-size: 12.4px;
  line-height: 1.7;
  color: var(--paper-dim);
  text-align: justify;
}
.rec-region {
  padding: 18px 0 20px;
  border-bottom: 1px solid var(--line);
}
.rec-region-1 {
  background:
    linear-gradient(180deg, rgba(38, 38, 42, 0.5), rgba(20, 20, 22, 0.2)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.01) 0 3px, transparent 3px 7px);
  padding-left: 14px;
  padding-right: 14px;
  margin-left: -14px;
  margin-right: -14px;
}
.rec-region-2 {
  background: linear-gradient(180deg, rgba(26, 26, 29, 0.55), rgba(14, 14, 16, 0.3));
  padding-left: 14px;
  padding-right: 14px;
  margin-left: -14px;
  margin-right: -14px;
}
.rec-region-3 {
  background:
    linear-gradient(180deg, rgba(33, 32, 31, 0.6), rgba(13, 13, 15, 0.35)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.012) 0 2px, transparent 2px 6px);
  padding-left: 14px;
  padding-right: 14px;
  margin-left: -14px;
  margin-right: -14px;
}
.rec-band {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 9px;
  align-items: start;
}
a.rec-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  align-self: start;
  padding: 7px;
  color: var(--paper);
  text-decoration: none;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(43, 43, 47, 0.6), rgba(18, 18, 20, 0.88));
  transition: border-color 0.16s, transform 0.16s, background 0.16s;
}
a.rec-card:hover, a.rec-card:focus-visible {
  border-color: rgba(201, 184, 130, 0.45);
  background: linear-gradient(180deg, rgba(56, 52, 44, 0.7), rgba(22, 21, 20, 0.9));
  transform: translateY(-2px);
  text-decoration: none;
}
[data-runtime="recommendation"] img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  filter: grayscale(0.55) brightness(0.82) contrast(1.06);
  border: 1px solid rgba(0, 0, 0, 0.6);
}
.rec-name {
  font-family: var(--hand);
  font-size: 12.8px;
  letter-spacing: 0.06em;
  color: var(--paper);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rec-blurb {
  font-size: 11.4px;
  line-height: 1.55;
  color: var(--paper-dim);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.site-footer {
  margin-top: 0;
  border-top: 1px solid var(--line-strong);
  background: linear-gradient(180deg, var(--wall-base), var(--wall-deep));
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-disclaimer {
  font-size: 11.6px;
  line-height: 1.65;
  color: var(--paper-dim);
  opacity: 0.72;
  max-width: 76ch;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-size: 12.2px;
  letter-spacing: 0.1em;
  color: var(--paper-dim);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-home"]:focus-visible, a[data-contract="footer-sitemap"]:hover, a[data-contract="footer-sitemap"]:focus-visible {
  color: var(--paper-yellow);
  border-bottom-color: rgba(201, 184, 130, 0.5);
  text-decoration: none;
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 9px;
  padding-top: 8px;
  border-top: 1px dashed rgba(216, 210, 196, 0.12);
}
.friend-links-label {
  font-family: var(--hand);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  color: var(--crack-warm);
  white-space: nowrap;
}
a.runtime-friend-link {
  font-size: 11.6px;
  color: var(--paper-dim);
  text-decoration: none;
  opacity: 0.85;
  white-space: nowrap;
}
a.runtime-friend-link:hover, a.runtime-friend-link:focus-visible {
  color: var(--paper-yellow);
  text-decoration: underline;
}
body.is-theater .hero-player-wrap {
  box-shadow: 0 0 0 1px rgba(201, 184, 130, 0.35), 0 18px 46px rgba(0, 0, 0, 0.7);
}
body.is-lights-off {
  background-color: #060607;
}
body.is-lights-off .site-header, body.is-lights-off .hero-info, body.is-lights-off .timeline-section, body.is-lights-off .episodes-section, body.is-lights-off .comments-section, body.is-lights-off .site-footer {
  opacity: 0.42;
  filter: brightness(0.6);
}
body.is-lights-off .hero-player-wrap {
  opacity: 1;
  filter: none;
}
.hero-player-wrap.is-fullscreen .player-frame {
  width: 100%;
  height: 100%;
}
.player-frame.is-playing {
  filter: contrast(1.03);
}
.player-frame.is-paused {
  filter: brightness(0.94) saturate(0.9);
}
@media (max-width: 900px) {.hero-layer {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "figure"
      "info";
    gap: 16px;
  }
.hero-figure {
    justify-content: flex-start;
  }
.hero-figure-media {
    max-width: 240px;
  }
.hero-crack-column {
    max-width: none;
  }
.detail-list {
    grid-template-columns: auto minmax(0, 1fr);
  }
.comment-columns {
    grid-template-columns: minmax(0, 1fr);
  }
.comment-col-right {
    padding-top: 0;
  }}
@media (max-width: 620px) {body {
    font-size: 13.5px;
  }
.page-main {
    padding: 0 12px;
  }
.header-inner {
    padding: 7px 12px;
    gap: 10px;
  }
a[data-contract="site-name"] {
    font-size: 16.5px;
  }
.hero-layer {
    padding-top: 14px;
  }
.hero-figure-media {
    max-width: 190px;
  }
.hero-crack-column {
    padding-left: 10px;
  }
.hero-seo {
    font-size: 12.4px;
  }
.timeline-list::before {
    left: 5px;
    transform: none;
  }
.timeline-item {
    width: calc(100% - 22px);
    margin-left: 22px;
    align-self: flex-start;
    text-align: left;
    border-right: 1px solid var(--line);
    border-left: 2px solid rgba(122, 101, 53, 0.4);
  }
.timeline-item-left::after, .timeline-item-right::after {
    left: -17px;
    right: auto;
  }
.episode-band {
    grid-auto-columns: minmax(190px, 1fr);
  }
.rec-band {
    grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
    gap: 7px;
  }
.rec-region-1, .rec-region-2, .rec-region-3 {
    padding-left: 10px;
    padding-right: 10px;
    margin-left: -12px;
    margin-right: -12px;
  }
.footer-inner {
    padding: 12px 12px 18px;
  }}
@media (max-width: 420px) {.hero-title {
    font-size: 27px;
  }
.rating-value {
    font-size: 28px;
  }
.cast-avatar {
    width: 40px;
    height: 40px;
  }
.rec-band {
    grid-template-columns: repeat(auto-fill, minmax(122px, 1fr));
  }}

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}
