:root {
  --ink: #0d1512;
  --ink-2: #14201b;
  --ink-3: #1b2a23;
  --paper: #f2e9d8;
  --paper-2: #e6d9c1;
  --paper-3: #d8c7a6;
  --flame: #e2762a;
  --flame-2: #c2541a;
  --flame-glow: #f6a34a;
  --moss: #1f3a2e;
  --moss-2: #2c5140;
  --moss-3: #163026;
  --ash: #9c8f78;
  --ash-2: #6f6553;
  --stain: rgba(20, 32, 27, 0.14);
  --rule: rgba(216, 199, 166, 0.22);
  --shadow: 0 1px 0 rgba(0, 0, 0, 0.55), 0 2px 6px rgba(0, 0, 0, 0.4);
  --serif: "Songti SC", "STSong", "SimSun", "Noto Serif CJK SC", "Source Han Serif SC", serif;
  --mono: ui-monospace, "SF Mono", "Menlo", "Consolas", "Noto Sans Mono CJK SC", monospace;
  --r: 2px;
  --pad: 12px;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  padding: 0;
  background-color: var(--ink);
  background-image:
    radial-gradient(120% 60% at 12% -8%, rgba(226, 118, 42, 0.16), transparent 62%),
    radial-gradient(90% 55% at 92% 4%, rgba(44, 81, 64, 0.42), transparent 60%),
    repeating-linear-gradient(0deg, rgba(242, 233, 216, 0.028) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(90deg, rgba(242, 233, 216, 0.02) 0 1px, transparent 1px 6px);
  color: var(--paper);
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}
img, video {
  display: block;
  max-width: 100%;
}
h1, h2, p, dl, dd, dt, ol, ul, li {
  margin: 0;
  padding: 0;
}
ol, ul {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
button, input {
  font: inherit;
  color: inherit;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 14px;
  padding: 8px 14px;
  background:
    linear-gradient(180deg, rgba(13, 21, 18, 0.98), rgba(19, 32, 27, 0.94));
  border-bottom: 1px solid rgba(226, 118, 42, 0.28);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.5);
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: repeating-linear-gradient(90deg, transparent 0 6px, rgba(242, 233, 216, 0.28) 6px 9px);
  opacity: 0.5;
}
a[data-contract="site-name"] {
  color: var(--flame-glow);
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 2px 2px 2px 0;
  text-shadow: 0 0 12px rgba(226, 118, 42, 0.45);
  white-space: nowrap;
  border-left: 3px solid var(--flame);
  padding-left: 8px;
}
a[data-contract="site-name"]:hover, a[data-contract="site-name"]:focus-visible {
  color: #ffd7a1;
  text-decoration: none;
}
.categories-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 6px;
  min-width: 0;
  flex: 1 1 240px;
}
a.runtime-category {
  display: inline-block;
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--paper-2);
  text-decoration: none;
  padding: 3px 8px;
  border: 1px solid var(--rule);
  border-radius: var(--r);
  background: rgba(242, 233, 216, 0.04);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.35);
}
a.runtime-category:hover, a.runtime-category:focus-visible {
  color: var(--ink);
  background: var(--flame-glow);
  border-color: var(--flame-glow);
  text-decoration: none;
}
.page-main {
  display: block;
  padding: 12px 12px 0;
  max-width: 1180px;
  margin: 0 auto;
}
.section-heading {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--paper);
  padding-bottom: 5px;
  margin-bottom: 9px;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.section-heading::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 44px;
  height: 2px;
  background: var(--flame);
}
.movie-overview {
  display: grid;
  grid-template-columns: minmax(0, 232px) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 12px;
  background:
    linear-gradient(180deg, rgba(31, 58, 46, 0.55), rgba(13, 21, 18, 0.72)),
    repeating-linear-gradient(90deg, rgba(242, 233, 216, 0.03) 0 1px, transparent 1px 7px);
  border: 1px solid rgba(216, 199, 166, 0.16);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.movie-overview::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 50% at 8% 0%, rgba(226, 118, 42, 0.2), transparent 70%);
  pointer-events: none;
}
.poster-shell {
  position: relative;
  align-self: start;
  width: 100%;
  max-width: 232px;
  border: 1px solid rgba(216, 199, 166, 0.24);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--ink-3);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.5);
}
.poster-img {
  width: 100%;
  aspect-ratio: 2 / 3;
  height: auto;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.06);
}
.poster-badge {
  position: absolute;
  left: 0;
  bottom: 0;
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  padding: 3px 7px;
  color: #ffe6c4;
  background: rgba(13, 21, 18, 0.86);
  border-top: 1px solid rgba(226, 118, 42, 0.5);
  border-right: 1px solid rgba(226, 118, 42, 0.5);
  border-radius: 0 var(--r) 0 var(--r);
  backdrop-filter: blur(2px);
}
.overview-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.movie-title {
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: 0.06em;
  color: var(--paper);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.55);
}
.movie-tagline {
  font-size: 12.5px;
  color: var(--flame-glow);
  letter-spacing: 0.08em;
  padding-left: 8px;
  border-left: 2px solid var(--flame);
}
.movie-desc {
  font-size: 12.5px;
  line-height: 1.75;
  color: var(--paper-2);
  max-width: 62ch;
  text-align: justify;
}
.episode-status {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 3px 6px;
  font-family: var(--mono);
  padding: 6px 8px;
  background: rgba(13, 21, 18, 0.5);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--flame);
  border-radius: var(--r);
  width: fit-content;
  max-width: 100%;
}
.status-num {
  font-size: 20px;
  font-weight: 700;
  color: var(--flame-glow);
  line-height: 1;
}
.status-divider {
  font-size: 13px;
  color: var(--ash);
}
.status-total {
  font-size: 11.5px;
  color: var(--paper-2);
}
.status-now {
  font-size: 10.5px;
  color: var(--moss-2);
  background: var(--paper-3);
  padding: 1px 6px;
  border-radius: var(--r);
  margin-left: 4px;
}
.cast {
  border-top: 1px solid var(--rule);
  padding-top: 8px;
  margin-top: 2px;
}
.cast-heading, .synopsis-heading, .details-heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--ash);
  margin-bottom: 6px;
}
.cast-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 5px;
}
.cast-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  padding: 7px 6px 6px;
  min-height: 62px;
  background:
    linear-gradient(180deg, rgba(44, 81, 64, 0.5), rgba(19, 32, 27, 0.75)),
    repeating-linear-gradient(45deg, rgba(242, 233, 216, 0.035) 0 2px, transparent 2px 6px);
  border: 1px solid rgba(216, 199, 166, 0.18);
  border-radius: var(--r);
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.35);
  overflow: hidden;
}
.cast-card::after {
  content: "";
  position: absolute;
  right: -6px;
  top: -8px;
  width: 26px;
  height: 26px;
  background: radial-gradient(circle, rgba(226, 118, 42, 0.35), transparent 70%);
  pointer-events: none;
}
.cast-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--paper);
  line-height: 1.25;
}
.cast-note {
  font-family: var(--mono);
  font-size: 9.5px;
  line-height: 1.35;
  color: var(--flame-glow);
  opacity: 0.9;
}
.synopsis {
  border-top: 1px solid var(--rule);
  padding-top: 8px;
  margin-top: 2px;
}
.synopsis-para {
  font-size: 12.5px;
  line-height: 1.78;
  color: var(--paper-2);
  text-align: justify;
  max-width: 68ch;
}
.synopsis-para + .synopsis-para {
  margin-top: 5px;
  padding-top: 5px;
  border-top: 1px dashed rgba(216, 199, 166, 0.16);
}
.details {
  border-top: 1px solid var(--rule);
  padding-top: 8px;
  margin-top: 2px;
}
.details-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 14px;
}
.detail-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 3px 0;
  border-bottom: 1px dashed rgba(216, 199, 166, 0.14);
  min-width: 0;
}
.detail-key {
  flex: 0 0 auto;
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--ash);
  letter-spacing: 0.04em;
}
.detail-val {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 12px;
  color: var(--paper);
  overflow-wrap: anywhere;
}
.player-section {
  margin-top: 14px;
  padding: 0;
}
.player-shell {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  background: #000;
  border: 1px solid rgba(216, 199, 166, 0.2);
  border-radius: var(--r);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.6);
  overflow: hidden;
}
.player-shell video, .player-shell [data-contract="player"] {
  display: block;
  width: 100%;
  background: #000;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  padding: 7px 8px;
  background:
    linear-gradient(180deg, rgba(19, 32, 27, 0.96), rgba(13, 21, 18, 0.98));
  border-top: 1px solid rgba(226, 118, 42, 0.3);
}
.ctrl-btn {
  flex: 0 0 auto;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.05em;
  padding: 4px 8px;
  cursor: pointer;
  color: var(--paper-2);
  background: rgba(242, 233, 216, 0.06);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.4);
  transition: background-color 0.12s linear, color 0.12s linear;
}
.ctrl-btn:hover, .ctrl-btn:focus-visible {
  color: var(--ink);
  background: var(--flame-glow);
  border-color: var(--flame-glow);
}
.ctrl-btn.is-playing {
  color: var(--ink);
  background: var(--flame);
  border-color: var(--flame);
}
.ctrl-progress {
  flex: 1 1 160px;
  min-width: 90px;
  height: 14px;
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  cursor: pointer;
}
.ctrl-progress::-webkit-slider-runnable-track {
  height: 4px;
  background: rgba(242, 233, 216, 0.2);
  border-radius: var(--r);
}
.ctrl-progress::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 10px;
  margin-top: -3px;
  background: var(--flame-glow);
  border-radius: 1px;
}
.ctrl-progress::-moz-range-track {
  height: 4px;
  background: rgba(242, 233, 216, 0.2);
  border-radius: var(--r);
}
.ctrl-progress::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border: none;
  background: var(--flame-glow);
  border-radius: 1px;
}
.ctrl-volume {
  flex: 0 0 auto;
  width: 76px;
  height: 14px;
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  cursor: pointer;
}
.ctrl-volume::-webkit-slider-runnable-track {
  height: 4px;
  background: rgba(242, 233, 216, 0.2);
  border-radius: var(--r);
}
.ctrl-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 9px;
  height: 9px;
  margin-top: -3px;
  background: var(--paper-3);
  border-radius: 1px;
}
.ctrl-volume::-moz-range-track {
  height: 4px;
  background: rgba(242, 233, 216, 0.2);
  border-radius: var(--r);
}
.ctrl-volume::-moz-range-thumb {
  width: 9px;
  height: 9px;
  border: none;
  background: var(--paper-3);
  border-radius: 1px;
}
.player-shell.is-fullscreen {
  border-radius: 0;
  border: none;
}
.player-section.is-theater {
  padding: 6px;
  background: rgba(0, 0, 0, 0.55);
  border-radius: var(--r);
}
body.is-lights-off {
  background-color: #050907;
}
body.is-lights-off .movie-overview, body.is-lights-off .timeline-section, body.is-lights-off .episodes-section, body.is-lights-off .comments-section, body.is-lights-off .rec-region, body.is-lights-off .site-footer {
  opacity: 0.5;
  transition: opacity 0.2s linear;
}
body.is-lights-off .player-section {
  opacity: 1;
}
.timeline-section {
  margin-top: 16px;
  padding: 0;
}
.timeline-track {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 3px 2px 10px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  background:
    linear-gradient(90deg, rgba(226, 118, 42, 0.1), transparent 18%, transparent 82%, rgba(44, 81, 64, 0.2)),
    repeating-linear-gradient(0deg, rgba(242, 233, 216, 0.025) 0 1px, transparent 1px 5px);
  border-top: 1px dashed rgba(216, 199, 166, 0.2);
  border-bottom: 1px dashed rgba(216, 199, 166, 0.2);
}
.timeline-track::-webkit-scrollbar {
  height: 6px;
}
.timeline-track::-webkit-scrollbar-track {
  background: rgba(242, 233, 216, 0.06);
}
.timeline-track::-webkit-scrollbar-thumb {
  background: rgba(226, 118, 42, 0.5);
  border-radius: var(--r);
}
.timeline-ticket {
  flex: 0 0 auto;
  width: 178px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 9px 9px 10px;
  background:
    linear-gradient(180deg, rgba(242, 233, 216, 0.92), rgba(216, 199, 166, 0.82));
  color: var(--ink);
  border-radius: var(--r);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(20, 32, 27, 0.12);
  position: relative;
  overflow: hidden;
}
.timeline-ticket::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 40% at 90% 100%, rgba(31, 58, 46, 0.28), transparent 70%),
    repeating-linear-gradient(90deg, rgba(20, 32, 27, 0.05) 0 1px, transparent 1px 8px);
  pointer-events: none;
}
.timeline-ticket::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(20, 32, 27, 0.4) 0 4px, transparent 4px 8px);
}
.ticket-timecode {
  position: relative;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--flame-2);
}
.ticket-label {
  position: relative;
  font-size: 12px;
  line-height: 1.5;
  color: var(--moss-3);
}
.episodes-section {
  margin-top: 16px;
}
.episode-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  align-items: start;
}
.episode-item {
  min-width: 0;
}
.episode-card {
  display: block;
  background:
    linear-gradient(180deg, rgba(31, 58, 46, 0.55), rgba(19, 32, 27, 0.7));
  border: 1px solid rgba(216, 199, 166, 0.16);
  border-left: 2px solid rgba(226, 118, 42, 0.55);
  border-radius: var(--r);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.4);
  overflow: hidden;
}
.episode-card[open] {
  border-left-color: var(--flame-glow);
  background:
    linear-gradient(180deg, rgba(44, 81, 64, 0.6), rgba(19, 32, 27, 0.82));
}
.episode-summary {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 6px 7px;
  cursor: pointer;
  list-style: none;
  min-width: 0;
}
.episode-summary::-webkit-details-marker {
  display: none;
}
.episode-summary::marker {
  content: "";
}
.episode-num {
  flex: 0 0 auto;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  background: var(--paper-3);
  padding: 1px 5px;
  border-radius: var(--r);
  line-height: 1.5;
}
.episode-card[open] .episode-num {
  background: var(--flame-glow);
}
.episode-title {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 12.5px;
  color: var(--paper);
  line-height: 1.4;
  overflow-wrap: anywhere;
}
.episode-duration {
  flex: 0 0 auto;
  font-family: var(--mono);
  font-size: 9.5px;
  color: var(--ash);
  letter-spacing: 0.04em;
}
.episode-text {
  padding: 0 7px 8px 7px;
  font-size: 11.5px;
  line-height: 1.68;
  color: var(--paper-2);
  border-top: 1px dashed rgba(216, 199, 166, 0.18);
  padding-top: 6px;
  text-align: justify;
}
.comments-section {
  margin-top: 16px;
}
.comments-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  align-items: start;
}
.comment-card {
  display: block;
  padding: 7px 9px 8px;
  background:
    linear-gradient(180deg, rgba(242, 233, 216, 0.075), rgba(13, 21, 18, 0.5));
  border: 1px solid rgba(216, 199, 166, 0.15);
  border-radius: var(--r);
  box-shadow: inset 2px 0 0 rgba(226, 118, 42, 0.45);
  min-width: 0;
}
.comment-card:nth-child(2n) {
  box-shadow: inset 2px 0 0 rgba(44, 81, 64, 0.85);
}
.comment-nickname {
  display: block;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  color: var(--flame-glow);
  margin-bottom: 2px;
}
.comment-text {
  font-size: 12px;
  line-height: 1.7;
  color: var(--paper-2);
  text-align: justify;
}
.rec-region {
  margin-top: 18px;
}
.rec-heading {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--paper);
  padding-bottom: 5px;
  margin-bottom: 9px;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.rec-heading::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 30px;
  height: 2px;
  background: var(--moss-2);
}
.rec-rail {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 2px 2px 10px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
.rec-rail::-webkit-scrollbar {
  height: 6px;
}
.rec-rail::-webkit-scrollbar-track {
  background: rgba(242, 233, 216, 0.06);
}
.rec-rail::-webkit-scrollbar-thumb {
  background: rgba(226, 118, 42, 0.5);
  border-radius: var(--r);
}
.rec-duo {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  align-items: start;
}
.rec-single {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  align-items: start;
}
.rec-single-item {
  min-width: 0;
}
a.rec-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  padding: 5px;
  color: var(--paper-2);
  text-decoration: none;
  background: rgba(19, 32, 27, 0.72);
  border: 1px solid rgba(216, 199, 166, 0.16);
  border-radius: var(--r);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transition: border-color 0.12s linear, background-color 0.12s linear;
}
a.rec-card:hover, a.rec-card:focus-visible {
  color: var(--paper);
  text-decoration: none;
  border-color: rgba(226, 118, 42, 0.7);
  background: rgba(31, 58, 46, 0.85);
}
.rec-rail a.rec-card {
  flex: 0 0 186px;
  width: 186px;
  scroll-snap-align: start;
}
.rec-duo a.rec-card {
  width: 100%;
}
.rec-single a.rec-card {
  width: 100%;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
}
[data-runtime="recommendation"] img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--r);
  background: var(--ink-3);
  filter: saturate(0.9) contrast(1.05);
}
.rec-region-duo [data-runtime="recommendation"] img {
  aspect-ratio: 3 / 4;
}
.rec-region-single [data-runtime="recommendation"] img {
  flex: 0 0 132px;
  width: 132px;
  aspect-ratio: 4 / 3;
}
.rec-name {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--paper);
  line-height: 1.4;
  overflow-wrap: anywhere;
}
.rec-blurb {
  font-size: 11px;
  line-height: 1.6;
  color: var(--ash);
  overflow-wrap: anywhere;
}
.rec-region-single .rec-name, .rec-region-single .rec-blurb {
  min-width: 0;
}
.site-footer {
  margin-top: 22px;
  padding: 14px 14px 18px;
  background:
    linear-gradient(180deg, rgba(19, 32, 27, 0.9), rgba(13, 21, 18, 0.98));
  border-top: 1px solid rgba(226, 118, 42, 0.28);
  box-shadow: inset 0 1px 0 rgba(242, 233, 216, 0.06);
  font-size: 11.5px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  padding-bottom: 8px;
  border-bottom: 1px dashed rgba(216, 199, 166, 0.18);
  margin-bottom: 8px;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--paper-2);
  text-decoration: underline;
  text-decoration-color: rgba(216, 199, 166, 0.4);
  text-underline-offset: 3px;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover, a[data-contract="footer-home"]:focus-visible, a[data-contract="footer-sitemap"]:focus-visible {
  color: var(--flame-glow);
  text-decoration-color: var(--flame-glow);
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 8px;
  margin-bottom: 9px;
}
.friend-links-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--ash);
  padding-right: 6px;
  border-right: 1px solid var(--rule);
}
a.runtime-friend-link {
  font-size: 11px;
  color: var(--moss-2);
  text-decoration: none;
  padding: 1px 6px;
  background: rgba(242, 233, 216, 0.05);
  border: 1px solid rgba(216, 199, 166, 0.12);
  border-radius: var(--r);
  white-space: nowrap;
}
a.runtime-friend-link:hover, a.runtime-friend-link:focus-visible {
  color: var(--ink);
  background: var(--paper-3);
  text-decoration: none;
}
.footer-disclaimer {
  font-size: 10.5px;
  line-height: 1.7;
  color: var(--ash-2);
  max-width: 92ch;
}
@media (max-width: 1080px) {.episode-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.cast-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.rec-single {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }}
@media (max-width: 860px) {.movie-overview {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }
.poster-shell {
    max-width: 210px;
  }
.details-list {
    grid-template-columns: minmax(0, 1fr);
  }
.rec-duo {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.rec-single {
    grid-template-columns: minmax(0, 1fr);
  }}
@media (max-width: 700px) {body {
    font-size: 13.5px;
  }
.page-main {
    padding: 10px 10px 0;
  }
.movie-title {
    font-size: 20px;
  }
.episode-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.comments-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.rec-duo {
    grid-template-columns: minmax(0, 1fr);
  }
.rec-region-single [data-runtime="recommendation"] img {
    flex: 0 0 110px;
    width: 110px;
  }
.rec-rail a.rec-card {
    flex: 0 0 156px;
    width: 156px;
  }
.ctrl-volume {
    width: 64px;
  }}
@media (max-width: 480px) {.site-header {
    padding: 7px 10px;
  }
a[data-contract="site-name"] {
    font-size: 15px;
  }
.cast-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.episode-list {
    grid-template-columns: minmax(0, 1fr);
  }
.poster-shell {
    max-width: 168px;
  }
.rec-region-single a.rec-card {
    flex-direction: column;
  }
.rec-region-single [data-runtime="recommendation"] img {
    flex: 0 0 auto;
    width: 100%;
    aspect-ratio: 16 / 9;
  }
.rec-rail a.rec-card {
    flex: 0 0 132px;
    width: 132px;
  }
.player-controls {
    gap: 4px;
    padding: 6px;
  }
.ctrl-btn {
    font-size: 10px;
    padding: 3px 6px;
  }
.ctrl-progress {
    flex: 1 1 100%;
    min-width: 0;
    order: 9;
  }
.ctrl-volume {
    width: 56px;
  }}
@media (prefers-reduced-motion: reduce) {* {
    transition: none !important;
    animation: none !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}
