:root {
  --ink: #eae6dd;
  --ink-soft: #b9b6ad;
  --ink-dim: #7e8288;
  --bg: #141a20;
  --bg-2: #1a2129;
  --bg-3: #202832;
  --line: #333d47;
  --line-soft: #2a333c;
  --ivory: #f2ede2;
  --amber: #c98a3c;
  --amber-dim: #8a6028;
  --red: #8f2f2a;
  --red-bright: #b0403a;
  --sans: "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  --mono: "SFMono-Regular", "Menlo", "Consolas", "Roboto Mono", "Courier New", monospace;
  --gap: 16px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  background-color: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video {
  display: block;
  max-width: 100%;
}
a {
  color: var(--ink);
  text-decoration: none;
}
ul, ol {
  list-style: none;
}
button, input, select {
  font: inherit;
  color: inherit;
}
h1, h2, h3 {
  font-weight: 700;
  letter-spacing: 0.02em;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background-color: rgba(20, 26, 32, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: var(--gap);
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 16px;
  flex-wrap: wrap;
}
a[data-contract="site-name"] {
  color: var(--ivory);
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-left: 3px solid var(--red);
  padding-left: 8px;
  line-height: 1.1;
}
a[data-contract="site-name"]:hover, a[data-contract="site-name"]:focus-visible {
  color: var(--amber);
}
.category-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-left: auto;
}
a.runtime-category {
  color: var(--ink-soft);
  text-decoration: none;
  white-space: nowrap;
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border: 1px solid var(--line);
  background-color: var(--bg-2);
  transition: color 0.15s, border-color 0.15s, background-color 0.15s;
}
a.runtime-category:hover, a.runtime-category:focus-visible {
  color: var(--bg);
  background-color: var(--ivory);
  border-color: var(--ivory);
}
.page-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: var(--gap) 16px 32px;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}
.section-heading {
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--ink-soft);
  text-transform: uppercase;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 12px;
}
.hero-gaze {
  display: grid;
  grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
  gap: var(--gap);
  align-items: start;
  border: 1px solid var(--line);
  background-color: var(--bg-2);
  padding: var(--gap);
  position: relative;
}
.hero-poster-wrapper {
  position: relative;
  width: 100%;
  border: 1px solid var(--line);
  background-color: var(--bg-3);
}
.hero-poster {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
  filter: saturate(0.75) contrast(1.05);
}
.hero-poster-scale {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(
      to right,
      rgba(234, 230, 221, 0.14) 0,
      rgba(234, 230, 221, 0.14) 1px,
      transparent 1px,
      transparent 34px
    ),
    linear-gradient(to top, rgba(20, 26, 32, 0.85) 0%, rgba(20, 26, 32, 0) 34%);
  mix-blend-mode: normal;
}
.hero-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.hero-title {
  font-size: clamp(24px, 3.4vw, 38px);
  line-height: 1.12;
  color: var(--ivory);
  letter-spacing: 0.03em;
}
.hero-tagline {
  font-size: 14px;
  color: var(--amber);
  letter-spacing: 0.08em;
  border-left: 2px solid var(--amber-dim);
  padding-left: 10px;
}
.hero-seo {
  font-size: 13px;
  line-height: 1.62;
  color: var(--ink-soft);
  max-width: 60ch;
}
.hero-player-wrap {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  background-color: #0d1116;
  padding: 8px;
}
.main-player {
  display: block;
  width: 100%;
  background-color: #000;
  min-height: 120px;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  margin-top: 8px;
}
.ctrl-btn {
  border: 1px solid var(--line);
  background-color: var(--bg-3);
  color: var(--ink-soft);
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  cursor: pointer;
  transition: background-color 0.15s, color 0.15s, border-color 0.15s;
}
.ctrl-btn:hover, .ctrl-btn:focus-visible {
  color: var(--ivory);
  border-color: var(--ink-dim);
}
.ctrl-btn.is-active {
  background-color: var(--red);
  border-color: var(--red-bright);
  color: var(--ivory);
}
.ctrl-range {
  -webkit-appearance: none;
  appearance: none;
  height: 3px;
  background-color: var(--line);
  cursor: pointer;
  flex: 1 1 120px;
  min-width: 90px;
  border: none;
  outline: none;
}
.ctrl-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 14px;
  background-color: var(--ivory);
  border: none;
  cursor: pointer;
}
.ctrl-range::-moz-range-thumb {
  width: 10px;
  height: 14px;
  background-color: var(--ivory);
  border: none;
  border-radius: 0;
  cursor: pointer;
}
.ctrl-select {
  border: 1px solid var(--line);
  background-color: var(--bg-3);
  color: var(--ink-soft);
  font-size: 12px;
  padding: 4px 6px;
  cursor: pointer;
}
.hero-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 7px 0;
}
.hero-meta-row > span {
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  padding: 2px 7px;
  white-space: nowrap;
}
.meta-score {
  font-family: var(--mono);
  color: var(--amber) !important;
  border-color: var(--amber-dim) !important;
}
.meta-duration {
  font-family: var(--mono);
}
.cast-strip {
  border-top: 1px solid var(--line-soft);
  padding-top: 10px;
}
.cast-heading {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--ink-dim);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.cast-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: stretch;
}
.cast-item {
  flex: 1 1 auto;
  min-width: 70px;
  padding: 6px 10px 6px 0;
  border-right: 1px solid var(--line-soft);
  margin-right: 10px;
}
.cast-item:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}
.cast-name {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ivory);
  letter-spacing: 0.04em;
  border-bottom: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.cast-item:hover .cast-name {
  color: var(--amber);
  border-bottom-color: var(--amber-dim);
}
.synopsis-block {
  border-top: 1px solid var(--line-soft);
  padding-top: 10px;
}
.synopsis-heading {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--ink-dim);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.synopsis-p {
  font-size: 13px;
  line-height: 1.68;
  color: var(--ink-soft);
  margin-bottom: 8px;
  max-width: 72ch;
  text-align: justify;
}
.synopsis-p:last-child {
  margin-bottom: 0;
}
.episode-status {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: baseline;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 8px 0;
}
.status-current {
  font-size: 13px;
  font-weight: 700;
  color: var(--ivory);
  letter-spacing: 0.05em;
}
.status-current::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--red-bright);
  margin-right: 6px;
  vertical-align: middle;
}
.status-total {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-dim);
  letter-spacing: 0.06em;
}
.details-block {
  border-top: 1px solid var(--line-soft);
  padding-top: 10px;
}
.details-heading {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--ink-dim);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.details-list {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 4px 14px;
  font-size: 12px;
}
.detail-term {
  color: var(--ink-dim);
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.detail-desc {
  color: var(--ink-soft);
  border-bottom: 1px dotted var(--line);
  padding-bottom: 3px;
}
.hero-gaze.is-lights-off {
  background-color: #07090c;
}
.hero-gaze.is-lights-off .hero-poster {
  filter: brightness(0.35) saturate(0.4);
}
.hero-gaze.is-theater {
  grid-template-columns: minmax(0, 1fr);
}
.hero-gaze.is-theater .hero-poster-wrapper {
  max-width: 320px;
}
.timeline-section {
  border: 1px solid var(--line);
  background-color: var(--bg-2);
  padding: var(--gap);
}
.timeline-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 20px;
  counter-reset: tl;
}
.timeline-node {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 6px 0 6px 12px;
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line-soft);
  position: relative;
}
.timeline-node::before {
  content: "";
  position: absolute;
  left: -3px;
  top: 12px;
  width: 5px;
  height: 5px;
  background-color: var(--amber);
}
.timeline-timecode {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--amber);
  white-space: nowrap;
  flex: 0 0 auto;
  min-width: 44px;
}
.timeline-label {
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.45;
}
.episodes-section {
  border: 1px solid var(--line);
  background-color: var(--bg-2);
  padding: var(--gap);
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gap);
  align-items: start;
}
.episode-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 1px solid var(--line);
  background-color: var(--bg-3);
  padding: 10px;
}
.episode-cover {
  position: relative;
  width: 100%;
  height: 64px;
  background-color: #0d1116;
  border: 1px solid var(--line-soft);
  background-image: repeating-linear-gradient(
    to right,
    rgba(234, 230, 221, 0.08) 0,
    rgba(234, 230, 221, 0.08) 1px,
    transparent 1px,
    transparent 18px
  );
  display: flex;
  align-items: center;
  padding-left: 8px;
}
.episode-number {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--ivory);
  background-color: rgba(20, 26, 32, 0.7);
  padding: 2px 6px;
  border: 1px solid var(--line);
}
.episode-title {
  font-size: 15px;
  color: var(--ivory);
  letter-spacing: 0.05em;
}
.episode-summary {
  font-size: 12.5px;
  line-height: 1.58;
  color: var(--ink-soft);
}
.episode-duration {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-dim);
  letter-spacing: 0.06em;
  border-top: 1px solid var(--line-soft);
  padding-top: 5px;
  margin-top: auto;
}
.comments-section {
  border: 1px solid var(--line);
  background-color: var(--bg-2);
  padding: var(--gap);
}
.comment-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}
.comment-card {
  border: 1px solid var(--line);
  background-color: var(--bg-3);
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.comment-card--left {
  margin-left: 0;
  border-left: 2px solid var(--amber-dim);
}
.comment-card--right {
  margin-left: 24px;
  border-left: 2px solid var(--red);
}
.comment-nickname {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ivory);
}
.comment-nickname::before {
  content: "— ";
  color: var(--ink-dim);
  font-weight: 300;
}
.comment-text {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.rec-region {
  border: 1px solid var(--line);
  background-color: var(--bg-2);
  padding: var(--gap);
}
.rec-heading {
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--ivory);
  text-align: left;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 12px;
}
.rec-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
  -webkit-overflow-scrolling: touch;
}
.rec-scroll::-webkit-scrollbar {
  height: 6px;
}
.rec-scroll::-webkit-scrollbar-track {
  background-color: var(--bg-3);
}
.rec-scroll::-webkit-scrollbar-thumb {
  background-color: var(--line);
}
a.rec-item {
  flex: 0 0 168px;
  width: 168px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 1px solid var(--line);
  background-color: var(--bg-3);
  padding: 8px;
  color: var(--ink);
  text-decoration: none;
  transition: border-color 0.15s, background-color 0.15s;
}
a.rec-item:hover, a.rec-item:focus-visible {
  border-color: var(--amber-dim);
  background-color: #232c36;
}
[data-runtime="recommendation"] img, .rec-pic {
  width: 100%;
  height: 112px;
  object-fit: cover;
  background-color: #0d1116;
  border: 1px solid var(--line-soft);
  filter: saturate(0.8);
}
.rec-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--ivory);
  letter-spacing: 0.03em;
  line-height: 1.35;
}
.rec-blurb {
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--ink-dim);
}
.rec-region, .rec-item, .rec-name, .rec-blurb {
  overflow-wrap: anywhere;
}
.site-footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 16px 40px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 12px;
}
.footer-disclaimer {
  color: var(--ink-dim);
  line-height: 1.6;
  max-width: 80ch;
}
.footer-friends {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 12px;
}
.friends-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-dim);
  text-transform: uppercase;
  border-right: 1px solid var(--line);
  padding-right: 10px;
}
a.runtime-friend-link {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 12px;
  border-bottom: 1px solid transparent;
  white-space: nowrap;
  transition: color 0.15s, border-color 0.15s;
}
a.runtime-friend-link:hover, a.runtime-friend-link:focus-visible {
  color: var(--ivory);
  border-bottom-color: var(--red-bright);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid var(--line-soft);
  padding-top: 10px;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  color: var(--ink-dim);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.06em;
  border: 1px solid var(--line);
  padding: 3px 10px;
  transition: color 0.15s, border-color 0.15s;
}
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(--ivory);
  border-color: var(--ink-dim);
}
@media (max-width: 900px) {.hero-gaze {
    grid-template-columns: minmax(0, 1fr);
  }
.hero-poster-wrapper {
    max-width: 340px;
  }
.timeline-list {
    grid-template-columns: minmax(0, 1fr);
  }}
@media (max-width: 720px) {.episode-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.comment-stack {
    grid-template-columns: minmax(0, 1fr);
  }
.comment-card--right {
    margin-left: 16px;
  }
.hero-gaze.is-theater .hero-poster-wrapper {
    max-width: 240px;
  }
a.rec-item {
    flex: 0 0 150px;
    width: 150px;
  }
[data-runtime="recommendation"] img, .rec-pic {
    height: 100px;
  }}
@media (max-width: 560px) {.page-main {
    padding: 12px 10px 28px;
  }
.header-inner {
    padding: 8px 10px;
  }
.hero-gaze, .timeline-section, .episodes-section, .comments-section, .rec-region {
    padding: 12px;
  }
.cast-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px 0;
  }
.cast-item {
    border-right: none;
    margin-right: 0;
    padding: 4px 0;
  }
.details-list {
    grid-template-columns: minmax(0, 1fr);
    gap: 2px;
  }
.detail-term {
    padding-top: 6px;
    color: var(--amber-dim);
  }
.player-controls {
    gap: 5px;
  }
.ctrl-range {
    flex: 1 1 100%;
  }
.hero-poster-wrapper, .hero-gaze.is-theater .hero-poster-wrapper {
    max-width: 100%;
  }
a.rec-item {
    flex: 0 0 132px;
    width: 132px;
  }
[data-runtime="recommendation"] img, .rec-pic {
    height: 92px;
  }}
@media (max-width: 380px) {.hero-title {
    font-size: 22px;
  }
.cast-list {
    grid-template-columns: repeat(2, minmax(0, 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}
