:root {
  --ink: #0d1518;
  --ink-2: #101c20;
  --ink-3: #16262a;
  --panel: #132226;
  --panel-2: #182b30;
  --jade: #1f3a38;
  --patina: #4f7d6a;
  --patina-soft: #6f9a86;
  --copper: #8a6a3a;
  --gold: #c9a55c;
  --gold-dim: #8f7642;
  --text: #cbd8d2;
  --text-dim: #8ba09a;
  --text-faint: #5f746e;
  --line: rgba(201, 165, 92, 0.22);
  --line-soft: rgba(111, 154, 134, 0.18);
  --radius: 4px;
  --font-title: "Songti SC", "STSong", "SimSun", "Noto Serif SC", serif;
  --font-body: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Heiti SC", sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background-color: var(--ink);
  background-image:
    radial-gradient(circle at 50% -8%, rgba(79, 125, 106, 0.28), transparent 42%),
    radial-gradient(circle at 12% 30%, rgba(138, 106, 58, 0.10), transparent 30%),
    radial-gradient(circle at 88% 70%, rgba(31, 58, 56, 0.35), transparent 40%);
  background-attachment: fixed;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}
a:hover {
  color: var(--gold);
}
ul, ol {
  list-style: none;
}
h1, h2, h3 {
  font-family: var(--font-title);
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.3;
}
button {
  font-family: inherit;
  cursor: pointer;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(13, 21, 24, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
a[data-contract="site-name"] {
  color: var(--gold);
  text-decoration: none;
  font-family: var(--font-title);
  font-size: 21px;
  letter-spacing: 0.22em;
  text-shadow: 0 0 14px rgba(201, 165, 92, 0.35);
  flex: 0 0 auto;
}
a[data-contract="site-name"]:hover {
  color: #e6cf94;
}
.category-bar {
  flex: 1 1 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  min-width: 0;
}
a.runtime-category {
  color: var(--text-dim);
  text-decoration: none;
  white-space: nowrap;
  font-size: 12.5px;
  padding: 3px 10px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(24, 43, 48, 0.6);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
a.runtime-category:hover {
  color: var(--gold);
  border-color: var(--line);
  background: rgba(31, 58, 56, 0.85);
}
.page-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px 48px;
  display: flex;
  flex-direction: column;
  gap: 34px;
}
.section-heading {
  font-size: 17px;
  color: var(--gold);
  letter-spacing: 0.16em;
  margin-bottom: 12px;
  position: relative;
  padding-left: 16px;
}
.section-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  box-shadow: inset 0 0 0 2px var(--ink), 0 0 8px rgba(201, 165, 92, 0.5);
}
.hero-coin {
  position: relative;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.hero-coin-visual {
  position: relative;
  width: 100%;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 46%, rgba(79, 125, 106, 0.30), transparent 48%),
    linear-gradient(180deg, #0b1417 0%, #101d20 60%, #0d1518 100%);
  border-bottom: 1px solid var(--line-soft);
}
.coin-disc {
  position: relative;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  z-index: 3;
  background:
    radial-gradient(circle at 38% 32%, rgba(201, 165, 92, 0.55), transparent 42%),
    radial-gradient(circle at 50% 50%, #3d5a4c 0%, #24413a 45%, #16292a 78%, #0e1a1c 100%);
  border: 3px solid rgba(201, 165, 92, 0.55);
  box-shadow:
    0 0 0 10px rgba(31, 58, 56, 0.55),
    0 0 0 11px rgba(201, 165, 92, 0.22),
    0 24px 60px rgba(0, 0, 0, 0.7),
    inset 0 0 40px rgba(0, 0, 0, 0.6),
    inset 0 0 8px rgba(201, 165, 92, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: coinFloat 7s ease-in-out infinite;
}
@keyframes coinFloat {
  0%, 100% { transform: translateY(-6px) rotate(-1.5deg); }
  50% { transform: translateY(8px) rotate(1.5deg); }
}
.coin-inscription {
  position: relative;
  width: 118px;
  height: 118px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  place-items: center;
  z-index: 4;
  background: radial-gradient(circle, rgba(13, 21, 24, 0.9), rgba(13, 21, 24, 0.4));
  border: 1px solid rgba(201, 165, 92, 0.4);
  border-radius: 3px;
}
.coin-mark {
  font-family: var(--font-title);
  font-size: 26px;
  color: var(--gold);
  text-shadow: 0 0 10px rgba(201, 165, 92, 0.6);
  line-height: 1;
}
.coin-halo {
  position: absolute;
  inset: -34px;
  border-radius: 50%;
  border: 1px dashed rgba(201, 165, 92, 0.30);
  z-index: 1;
  animation: haloSpin 40s linear infinite;
}
@keyframes haloSpin {
  to { transform: rotate(360deg); }
}
.coin-ticks {
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  z-index: 2;
}
.tick {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 12px;
  margin: -1px 0 0 -1px;
  background: rgba(201, 165, 92, 0.55);
  transform-origin: 50% 0;
  border-radius: 1px;
}
.tick:nth-child(1) { transform: rotate(0deg) translateY(-124px); }
.tick:nth-child(2) { transform: rotate(60deg) translateY(-124px); }
.tick:nth-child(3) { transform: rotate(120deg) translateY(-124px); }
.tick:nth-child(4) { transform: rotate(180deg) translateY(-124px); }
.tick:nth-child(5) { transform: rotate(240deg) translateY(-124px); }
.tick:nth-child(6) { transform: rotate(300deg) translateY(-124px); }
.coin-silhouettes {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.silhouette {
  position: absolute;
  bottom: 0;
  width: 70px;
  height: 150px;
  background: linear-gradient(180deg, rgba(10, 18, 20, 0.0) 0%, rgba(8, 15, 17, 0.92) 32%, #070d0e 100%);
  border-radius: 40% 40% 12% 12% / 30% 30% 8% 8%;
  filter: blur(1px);
}
.silhouette::before {
  content: "";
  position: absolute;
  top: -34px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #070d0e;
}
.silhouette-a {
  left: 6%;
  height: 168px;
  opacity: 0.95;
}
.silhouette-b {
  left: 20%;
  width: 58px;
  height: 128px;
  opacity: 0.8;
}
.silhouette-c {
  right: 8%;
  width: 64px;
  height: 142px;
  opacity: 0.88;
}
.rain-strands {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  overflow: hidden;
}
.strand {
  position: absolute;
  top: -20%;
  width: 1px;
  height: 90px;
  background: linear-gradient(180deg, transparent, rgba(143, 179, 168, 0.5), transparent);
  animation: rainFall 2.4s linear infinite;
}
.strand:nth-child(1) { left: 8%; animation-duration: 2.1s; animation-delay: 0s; }
.strand:nth-child(2) { left: 20%; animation-duration: 2.7s; animation-delay: 0.4s; }
.strand:nth-child(3) { left: 33%; animation-duration: 2.3s; animation-delay: 0.9s; }
.strand:nth-child(4) { left: 45%; animation-duration: 3.0s; animation-delay: 0.2s; }
.strand:nth-child(5) { left: 58%; animation-duration: 2.5s; animation-delay: 1.1s; }
.strand:nth-child(6) { left: 71%; animation-duration: 2.2s; animation-delay: 0.6s; }
.strand:nth-child(7) { left: 84%; animation-duration: 2.8s; animation-delay: 1.4s; }
.strand:nth-child(8) { left: 94%; animation-duration: 2.4s; animation-delay: 0.8s; }
@keyframes rainFall {
  0% { transform: translateY(-40px); opacity: 0; }
  15% { opacity: 1; }
  100% { transform: translateY(400px); opacity: 0; }
}
.hero-lower {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 22px 0 30px;
}
.hero-tagline {
  font-family: var(--font-title);
  font-size: clamp(20px, 4.4vw, 34px);
  letter-spacing: 0.2em;
  color: #e2d4ad;
  text-align: center;
  text-shadow: 0 0 26px rgba(201, 165, 92, 0.4), 0 2px 10px rgba(0, 0, 0, 0.8);
}
.hero-meta-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.chip {
  font-size: 12px;
  color: var(--text-dim);
  padding: 3px 12px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(24, 43, 48, 0.55);
  letter-spacing: 0.06em;
}
.chip-rating {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  border-color: transparent;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.player-shell {
  width: 100%;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55);
  position: relative;
  transition: box-shadow 0.3s ease;
}
.player-shell.is-playing {
  box-shadow: 0 14px 46px rgba(79, 125, 106, 0.35);
}
.player-shell.is-theater {
  border-color: var(--line);
  box-shadow: 0 0 0 2px rgba(201, 165, 92, 0.25), 0 18px 50px rgba(0, 0, 0, 0.7);
}
.player-shell.is-lights-off .player-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  pointer-events: none;
  z-index: 2;
}
.player-stage {
  position: relative;
  width: 100%;
  background: #05090a;
  line-height: 0;
}
.player-stage video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #05090a;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px 12px;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border-top: 1px solid var(--line-soft);
}
.ctrl {
  font-size: 12.5px;
  color: var(--text-dim);
  background: rgba(13, 21, 24, 0.7);
  border: 1px solid var(--line-soft);
  border-radius: 3px;
  padding: 5px 12px;
  letter-spacing: 0.05em;
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
.ctrl:hover {
  color: var(--gold);
  border-color: var(--line);
  background: rgba(31, 58, 56, 0.8);
}
.ctrl.is-active {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  border-color: transparent;
  box-shadow: 0 0 12px rgba(201, 165, 92, 0.4);
}
.movie-overview {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  background:
    linear-gradient(180deg, rgba(24, 43, 48, 0.85), rgba(19, 34, 38, 0.92));
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.movie-overview::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px dashed rgba(201, 165, 92, 0.14);
  pointer-events: none;
}
.overview-poster-wrap {
  position: relative;
  width: 100%;
  align-self: start;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}
.overview-poster-wrap img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
}
.poster-crack {
  position: absolute;
  background: linear-gradient(180deg, transparent, rgba(201, 165, 92, 0.85), transparent);
  pointer-events: none;
  z-index: 3;
  opacity: 0.85;
}
.poster-crack-a {
  top: 0;
  left: 34%;
  width: 1.5px;
  height: 100%;
  transform: rotate(11deg) scaleY(1.1);
  transform-origin: top center;
  box-shadow: 0 0 6px rgba(201, 165, 92, 0.6);
}
.poster-crack-b {
  top: 0;
  left: 62%;
  width: 1px;
  height: 78%;
  transform: rotate(-8deg);
  transform-origin: top center;
  opacity: 0.55;
}
.overview-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}
.movie-title {
  font-size: clamp(22px, 3.6vw, 32px);
  color: #eadfbf;
  letter-spacing: 0.1em;
  text-shadow: 0 0 18px rgba(201, 165, 92, 0.35);
}
.movie-tagline {
  font-family: var(--font-title);
  font-size: 14px;
  color: var(--patina-soft);
  letter-spacing: 0.16em;
  margin-top: -8px;
}
.cast-section {
  border-top: 1px solid var(--line-soft);
  padding-top: 14px;
}
.cast-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: flex-start;
}
.cast-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 62px;
}
.cast-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: block;
  border: 2px solid rgba(201, 165, 92, 0.5);
  box-shadow:
    0 0 0 3px rgba(31, 58, 56, 0.9),
    inset 0 0 14px rgba(0, 0, 0, 0.6),
    0 4px 14px rgba(0, 0, 0, 0.55);
  position: relative;
  overflow: hidden;
}
.cast-avatar::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, rgba(201, 165, 92, 0.4), transparent 55%),
    radial-gradient(circle at 75% 80%, rgba(79, 125, 106, 0.55), transparent 60%);
  mix-blend-mode: overlay;
}
.cast-avatar-a { background: linear-gradient(140deg, #2c4a42, #16292a 70%), #1a2f2c; }
.cast-avatar-b { background: linear-gradient(140deg, #3c5c4e, #1b2f2b 70%), #1a2f2c; }
.cast-avatar-c { background: linear-gradient(140deg, #4a5a44, #1e2c22 70%), #1a2f2c; }
.cast-avatar-d { background: linear-gradient(140deg, #35544d, #152625 70%), #1a2f2c; }
.cast-avatar-e { background: linear-gradient(140deg, #5a5335, #24281c 70%), #1a2f2c; }
.cast-name {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.synopsis-section {
  border-top: 1px solid var(--line-soft);
  padding-top: 14px;
}
.synopsis-text {
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.85;
  text-indent: 2em;
  margin-bottom: 8px;
}
.synopsis-text:last-child {
  margin-bottom: 0;
}
.episode-status {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.status-chip {
  font-size: 12.5px;
  padding: 4px 14px;
  border-radius: 999px;
  letter-spacing: 0.06em;
}
.status-total {
  color: var(--patina-soft);
  border: 1px solid var(--line-soft);
  background: rgba(24, 43, 48, 0.6);
}
.status-current {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  font-weight: 700;
  box-shadow: 0 0 14px rgba(201, 165, 92, 0.35);
}
.details-panel {
  border-top: 1px solid var(--line-soft);
  padding-top: 14px;
}
.details-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 20px;
}
.detail-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 5px 0;
  border-bottom: 1px dotted rgba(111, 154, 134, 0.2);
}
.detail-key {
  flex: 0 0 auto;
  font-size: 12.5px;
  color: var(--text-faint);
  letter-spacing: 0.08em;
  min-width: 56px;
}
.detail-value {
  font-size: 13px;
  color: var(--text);
}
.timeline-section {
  position: relative;
}
.timeline-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 6px 2px 14px;
  scrollbar-width: thin;
  scrollbar-color: var(--patina) transparent;
}
.timeline-scroll::-webkit-scrollbar {
  height: 6px;
}
.timeline-scroll::-webkit-scrollbar-track {
  background: rgba(24, 43, 48, 0.5);
  border-radius: 3px;
}
.timeline-scroll::-webkit-scrollbar-thumb {
  background: var(--patina);
  border-radius: 3px;
}
.timeline-track {
  display: flex;
  gap: 0;
  align-items: stretch;
  min-width: max-content;
  padding: 4px 0;
}
.timeline-node {
  position: relative;
  flex: 0 0 auto;
  width: 168px;
  padding: 0 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.timeline-node::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), var(--line), transparent);
}
.timeline-node:first-child::before {
  left: 50%;
}
.timeline-node:last-child::before {
  right: 50%;
}
.node-coin {
  position: relative;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(circle at 36% 30%, #3f5f50, #1c322e 70%, #12211f);
  border: 1.5px solid rgba(201, 165, 92, 0.65);
  box-shadow:
    0 0 0 4px rgba(19, 34, 38, 1),
    0 0 12px rgba(201, 165, 92, 0.3),
    inset 0 0 8px rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}
.node-coin::after {
  content: "";
  width: 10px;
  height: 10px;
  border: 1px solid rgba(201, 165, 92, 0.7);
  border-radius: 1px;
  background: rgba(13, 21, 24, 0.9);
}
.node-timecode {
  font-family: var(--font-title);
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.node-label {
  font-size: 12.5px;
  color: var(--text-dim);
  line-height: 1.5;
  max-width: 140px;
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.episode-card {
  position: relative;
  background: linear-gradient(160deg, rgba(24, 43, 48, 0.85), rgba(19, 34, 38, 0.9));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 12px 14px 16px;
  overflow: hidden;
  transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}
.episode-card:hover {
  border-color: var(--line);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.5);
}
.episode-title {
  font-size: 15px;
  color: #e0d5b6;
  letter-spacing: 0.06em;
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}
.episode-number {
  font-family: var(--font-body);
  font-size: 11.5px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  padding: 1px 8px;
  border-radius: 2px;
  letter-spacing: 0.06em;
  flex: 0 0 auto;
}
.episode-summary {
  font-size: 12.5px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 8px;
}
.episode-meta {
  display: flex;
  gap: 10px;
  align-items: center;
}
.episode-duration {
  font-size: 11.5px;
  color: var(--text-faint);
  letter-spacing: 0.06em;
}
.crack-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background: rgba(24, 43, 48, 0.9);
  overflow: hidden;
}
.crack-progress::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--patina), var(--gold));
  box-shadow: 0 0 8px rgba(201, 165, 92, 0.5);
  clip-path: polygon(0 0, 100% 0, 100% 60%, 96% 100%, 92% 60%, 88% 100%, 84% 60%, 80% 100%, 76% 60%, 72% 100%, 68% 60%, 64% 100%, 60% 60%, 56% 100%, 52% 60%, 48% 100%, 44% 60%, 40% 100%, 36% 60%, 32% 100%, 28% 60%, 24% 100%, 20% 60%, 16% 100%, 12% 60%, 8% 100%, 4% 60%, 0 100%);
}
.crack-progress-1::after { width: 10%; }
.crack-progress-2::after { width: 20%; }
.crack-progress-3::after { width: 30%; }
.crack-progress-4::after { width: 40%; }
.crack-progress-5::after { width: 50%; }
.crack-progress-6::after { width: 60%; }
.crack-progress-7::after { width: 70%; }
.crack-progress-8::after { width: 80%; }
.crack-progress-9::after { width: 90%; }
.crack-progress-10::after { width: 100%; }
.comment-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}
.comment-card {
  position: relative;
  background: linear-gradient(165deg, rgba(26, 46, 50, 0.95), rgba(17, 30, 34, 0.95));
  border: 1px solid var(--line-soft);
  border-radius: 5px;
  padding: 12px 14px;
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease;
}
.comment-card:nth-child(2n) {
  transform: translateY(10px);
}
.comment-card:hover {
  transform: translateY(-2px);
  border-color: var(--line);
}
.comment-card:nth-child(2n):hover {
  transform: translateY(6px);
}
.comment-watermark {
  position: absolute;
  right: -14px;
  bottom: -14px;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1px solid rgba(201, 165, 92, 0.18);
  background: radial-gradient(circle, rgba(201, 165, 92, 0.10), transparent 70%);
  pointer-events: none;
}
.comment-watermark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
  border: 1px solid rgba(201, 165, 92, 0.28);
  border-radius: 2px;
}
.comment-nickname {
  font-size: 13.5px;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}
.comment-text {
  font-size: 12.5px;
  color: var(--text-dim);
  line-height: 1.75;
  position: relative;
  z-index: 1;
}
.recommend-region {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding-top: 6px;
}
.recommend-title {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-family: var(--font-title);
  font-size: 15px;
  letter-spacing: 0.28em;
  color: var(--gold);
  padding: 10px 0;
  border-right: 1px solid var(--line-soft);
  justify-self: start;
  min-height: 120px;
}
.recommend-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  min-width: 0;
}
.recommend-region-2 .recommend-grid, .recommend-region-3 .recommend-grid, .recommend-region-4 .recommend-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
a.recommend-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--text);
  text-decoration: none;
  background: linear-gradient(170deg, rgba(24, 43, 48, 0.8), rgba(17, 30, 34, 0.9));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 8px;
  align-self: start;
  transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}
a.recommend-card:hover {
  border-color: var(--line);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5);
}
[data-runtime="recommendation"] img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  border-radius: 3px;
  display: block;
  background: #0c1618;
}
.recommend-name {
  font-family: var(--font-title);
  font-size: 13.5px;
  color: #ddd2b0;
  letter-spacing: 0.05em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.recommend-blurb {
  font-size: 11.5px;
  color: var(--text-faint);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.site-footer {
  border-top: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(13, 21, 24, 0.6), rgba(8, 14, 16, 1));
  padding: 22px 18px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.footer-disclaimer {
  max-width: 780px;
  font-size: 11.5px;
  color: var(--text-faint);
  line-height: 1.8;
  letter-spacing: 0.04em;
}
.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  color: var(--patina-soft);
  text-decoration: none;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  border-bottom: 1px dashed transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: var(--gold);
  border-bottom-color: var(--line);
}
.footer-friends {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 12px;
  max-width: 900px;
}
.friends-label {
  font-size: 11.5px;
  color: var(--text-faint);
  letter-spacing: 0.12em;
}
a.runtime-friend-link {
  color: var(--text-faint);
  text-decoration: none;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}
a.runtime-friend-link:hover {
  color: var(--patina-soft);
}
@media (max-width: 900px) {.movie-overview {
    grid-template-columns: 200px minmax(0, 1fr);
  }
.comment-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.recommend-grid, .recommend-region-2 .recommend-grid, .recommend-region-3 .recommend-grid, .recommend-region-4 .recommend-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }}
@media (max-width: 720px) {.page-main {
    gap: 26px;
    padding: 0 14px 36px;
  }
.header-inner {
    padding: 9px 14px;
    gap: 10px;
  }
a[data-contract="site-name"] {
    font-size: 18px;
    letter-spacing: 0.16em;
  }
.hero-coin-visual {
    min-height: 280px;
  }
.coin-disc {
    width: 200px;
    height: 200px;
  }
.coin-inscription {
    width: 92px;
    height: 92px;
  }
.coin-mark {
    font-size: 21px;
  }
.tick:nth-child(1) { transform: rotate(0deg) translateY(-94px); }
.tick:nth-child(2) { transform: rotate(60deg) translateY(-94px); }
.tick:nth-child(3) { transform: rotate(120deg) translateY(-94px); }
.tick:nth-child(4) { transform: rotate(180deg) translateY(-94px); }
.tick:nth-child(5) { transform: rotate(240deg) translateY(-94px); }
.tick:nth-child(6) { transform: rotate(300deg) translateY(-94px); }
.silhouette-a { left: 2%; height: 130px; width: 56px; }
.silhouette-b { left: 16%; height: 100px; width: 46px; }
.silhouette-c { right: 4%; height: 112px; width: 50px; }
.movie-overview {
    grid-template-columns: minmax(0, 1fr);
    padding: 16px;
    gap: 16px;
  }
.overview-poster-wrap {
    max-width: 220px;
  }
.details-list {
    grid-template-columns: minmax(0, 1fr);
  }
.episode-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.comment-stack {
    grid-template-columns: minmax(0, 1fr);
  }
.comment-card:nth-child(2n), .comment-card:nth-child(2n):hover {
    transform: none;
  }
.recommend-region {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 10px;
  }
.recommend-title {
    font-size: 13.5px;
    letter-spacing: 0.2em;
  }
.recommend-grid, .recommend-region-2 .recommend-grid, .recommend-region-3 .recommend-grid, .recommend-region-4 .recommend-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }}
@media (max-width: 480px) {.player-controls {
    gap: 5px;
    padding: 8px 10px;
  }
.ctrl {
    font-size: 11.5px;
    padding: 5px 9px;
  }
.recommend-grid, .recommend-region-2 .recommend-grid, .recommend-region-3 .recommend-grid, .recommend-region-4 .recommend-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.cast-row {
    gap: 10px;
  }
.cast-member {
    width: 56px;
  }
.cast-avatar {
    width: 48px;
    height: 48px;
  }
.timeline-node {
    width: 148px;
  }}
@media (prefers-reduced-motion: reduce) {.coin-disc, .coin-halo, .strand {
    animation: none;
  }}

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}
