:root {
  --ink: #1a1310;
  --ink-2: #241a15;
  --brown: #3a2a20;
  --brown-2: #4a3527;
  --brown-3: #5c4230;
  --moss: #1f2e26;
  --moss-2: #2c4034;
  --tungsten: #e8b45a;
  --tungsten-2: #f2cd82;
  --tungsten-deep: #b8843a;
  --notice-white: #e9eef0;
  --notice-cold: #c6d2d8;
  --paper: #f1e6d2;
  --paper-2: #e3d4ba;
  --line: rgba(232, 180, 90, 0.28);
  --line-soft: rgba(233, 238, 240, 0.14);
  --font-hand: "Kaiti SC", "KaiTi", "STKaiti", "Songti SC", "Noto Serif CJK SC", serif;
  --font-body: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", system-ui, sans-serif;
  --r: 8px;
  --r-sm: 5px;
}
* {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  padding: 0;
  background-color: #14100d;
  background-image:
    radial-gradient(circle at 12% 6%, rgba(232, 180, 90, 0.07), transparent 42%),
    radial-gradient(circle at 88% 22%, rgba(44, 64, 52, 0.5), transparent 46%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 3px),
    linear-gradient(180deg, #171210 0%, #14100d 55%, #100c0a 100%);
  color: #d8cec0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.01em;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: var(--tungsten-2);
  text-decoration: none;
}
h2, h3, p, ul, ol, dl, dd, figure {
  margin: 0;
}
ul, ol {
  padding: 0;
  list-style: none;
}
button, input, select {
  font: inherit;
  color: inherit;
}
:focus-visible {
  outline: 2px solid var(--tungsten);
  outline-offset: 2px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(180deg, rgba(20, 15, 12, 0.96), rgba(20, 15, 12, 0.86));
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 8px 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 6px 18px;
}
.brand-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  min-width: 0;
}
a[data-contract="site-name"] {
  font-family: var(--font-hand);
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--tungsten-2);
  text-decoration: none;
  white-space: nowrap;
  text-shadow: 0 0 14px rgba(232, 180, 90, 0.35);
}
a[data-contract="site-name"]:hover {
  color: #fff0d2;
}
.brand-note {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  color: rgba(198, 210, 216, 0.6);
  white-space: nowrap;
}
.category-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 6px;
}
a.runtime-category {
  display: inline-block;
  white-space: nowrap;
  padding: 3px 10px;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--notice-cold);
  text-decoration: none;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(44, 64, 52, 0.35);
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
a.runtime-category:hover {
  color: var(--tungsten-2);
  border-color: var(--line);
  background: rgba(232, 180, 90, 0.12);
}
.page-main {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 18px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section-heading {
  font-family: var(--font-hand);
  font-size: 19px;
  letter-spacing: 0.1em;
  color: var(--tungsten-2);
  padding-left: 12px;
  border-left: 3px solid var(--tungsten-deep);
  margin-bottom: 9px;
}
.subsection-heading {
  font-family: var(--font-hand);
  font-size: 15px;
  letter-spacing: 0.1em;
  color: var(--tungsten);
  margin-bottom: 6px;
}
.hero-shell {
  position: relative;
  margin-top: 14px;
  padding: 22px 20px 26px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
  grid-template-areas:
    "title notice"
    "title still";
  gap: 14px 22px;
  align-items: start;
  border-radius: var(--r);
  border: 1px solid rgba(232, 180, 90, 0.16);
  background:
    linear-gradient(180deg, rgba(31, 46, 38, 0.55), rgba(20, 15, 12, 0.2) 60%),
    radial-gradient(120% 90% at 18% 40%, rgba(58, 42, 32, 0.75), transparent 62%),
    linear-gradient(90deg, #1b1512, #17120f);
  overflow: hidden;
}
.hero-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.16) 0 1px, transparent 1px 4px);
  opacity: 0.5;
}
.hero-title-block {
  grid-area: title;
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 8px 0;
}
.hero-kicker {
  font-size: 12px;
  letter-spacing: 0.3em;
  color: rgba(198, 210, 216, 0.62);
  margin-bottom: 12px;
}
.hero-title-block::before {
  content: "咖啡馆入场券";
  display: block;
  font-family: var(--font-hand);
  font-size: clamp(38px, 7vw, 82px);
  line-height: 1.02;
  letter-spacing: 0.06em;
  color: var(--tungsten-2);
  text-shadow: 0 4px 30px rgba(232, 180, 90, 0.28), 0 0 2px rgba(0, 0, 0, 0.9);
}
.hero-tagline {
  margin-top: 14px;
  font-family: var(--font-hand);
  font-size: clamp(15px, 2vw, 19px);
  letter-spacing: 0.14em;
  color: rgba(233, 238, 240, 0.82);
}
.hero-notice {
  grid-area: notice;
  position: relative;
  z-index: 2;
  padding: 12px 14px 13px;
  border-radius: var(--r-sm);
  color: #2a2f31;
  background:
    linear-gradient(180deg, #f4f6f6, #dfe5e7);
  border: 1px solid rgba(233, 238, 240, 0.9);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.5);
  transform: rotate(-0.8deg);
}
.notice-label {
  font-family: var(--font-hand);
  font-size: 15px;
  letter-spacing: 0.34em;
  color: #1f2b30;
  padding-bottom: 5px;
  margin-bottom: 6px;
  border-bottom: 2px solid #c0392b;
}
.notice-line {
  font-size: 12.5px;
  line-height: 1.55;
  color: #3a4247;
}
.notice-line + .notice-line {
  margin-top: 3px;
}
.hero-still {
  grid-area: still;
  position: relative;
  z-index: 2;
  align-self: start;
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 1px solid rgba(232, 180, 90, 0.2);
  background: #0d0a08;
}
.hero-still img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.08) brightness(0.9) sepia(0.14);
}
.still-caption {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 3px 9px;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--paper);
  background: linear-gradient(90deg, rgba(20, 15, 12, 0.9), rgba(20, 15, 12, 0.35));
}
.overview-shell {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) minmax(0, 1.35fr);
  gap: 16px;
  padding: 16px;
  border-radius: var(--r);
  border: 1px solid rgba(232, 180, 90, 0.18);
  background:
    linear-gradient(180deg, rgba(36, 26, 21, 0.92), rgba(26, 19, 16, 0.92));
  box-shadow: inset 0 1px 0 rgba(232, 180, 90, 0.08);
}
.overview-poster-col {
  align-self: start;
}
.poster-media {
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 1px solid rgba(232, 180, 90, 0.24);
  background: #0d0a08;
}
.poster-media img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.06) brightness(0.94) sepia(0.1);
}
.overview-info-col {
  display: flex;
  flex-direction: column;
  gap: 11px;
  min-width: 0;
}
.title-unit {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-soft);
}
.unit-title {
  font-family: var(--font-hand);
  font-size: 25px;
  line-height: 1.24;
  letter-spacing: 0.06em;
  color: var(--tungsten-2);
}
.unit-tagline {
  margin-top: 4px;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: rgba(198, 210, 216, 0.66);
}
.unit-seo {
  margin-top: 8px;
  font-size: 12.5px;
  line-height: 1.68;
  color: rgba(216, 206, 192, 0.82);
  text-align: justify;
}
.status-unit {
  padding: 8px 10px;
  border-radius: var(--r-sm);
  background: rgba(232, 180, 90, 0.07);
  border-left: 3px solid var(--tungsten-deep);
}
.status-line {
  font-size: 13.5px;
  color: #e6dccb;
}
.status-total, .status-current {
  font-family: var(--font-hand);
  font-size: 17px;
  color: var(--tungsten-2);
  letter-spacing: 0.04em;
}
.status-note {
  margin-top: 2px;
  font-size: 12px;
  color: rgba(198, 210, 216, 0.58);
}
.details-unit .detail-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(232, 180, 90, 0.14);
  font-size: 12.5px;
}
.detail-row dt {
  flex: 0 0 auto;
  min-width: 4.4em;
  color: rgba(198, 210, 216, 0.6);
  letter-spacing: 0.08em;
}
.detail-row dd {
  margin: 0;
  color: #e2d8c8;
}
.synopsis-body {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 12.5px;
  line-height: 1.72;
  color: rgba(216, 206, 192, 0.84);
  text-align: justify;
}
.cast-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.cast-member {
  position: relative;
  flex: 0 0 auto;
  width: 82px;
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 1px solid rgba(232, 180, 90, 0.2);
  background: linear-gradient(180deg, rgba(44, 64, 52, 0.7), rgba(26, 19, 16, 0.9));
}
.cast-face {
  display: block;
  height: 78px;
  background:
    radial-gradient(circle at 50% 34%, rgba(232, 180, 90, 0.34), transparent 46%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 2px, transparent 2px 6px),
    linear-gradient(180deg, #3a2a20, #1f2e26);
}
.cast-name {
  display: block;
  padding: 3px 4px 4px;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-align: center;
  color: var(--paper);
  background: rgba(20, 15, 12, 0.82);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.overview-player-col {
  min-width: 0;
  align-self: start;
}
.player-slot {
  border-radius: var(--r-sm);
  border: 1px solid rgba(232, 180, 90, 0.22);
  background: #0b0806;
  overflow: hidden;
}
.player-slot video {
  display: block;
  background: #000;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 7px;
  padding: 7px 8px;
  border-top: 1px solid rgba(232, 180, 90, 0.16);
  background: linear-gradient(180deg, rgba(31, 46, 38, 0.55), rgba(20, 15, 12, 0.85));
}
.player-controls button {
  padding: 3px 9px;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: #e2d8c8;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(232, 180, 90, 0.24);
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.player-controls button:hover {
  background: rgba(232, 180, 90, 0.18);
  color: var(--tungsten-2);
  border-color: var(--tungsten-deep);
}
.player-controls button.is-playing {
  color: #1a1310;
  background: var(--tungsten);
  border-color: var(--tungsten-2);
}
.player-controls button.is-active {
  color: #1a1310;
  background: var(--tungsten-2);
  border-color: #fff0d2;
}
.player-controls button.is-muted {
  color: #e08a7a;
  border-color: rgba(224, 138, 122, 0.6);
}
.control-field {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  color: rgba(198, 210, 216, 0.7);
  white-space: nowrap;
}
.control-field input[type="range"] {
  width: 84px;
  height: 14px;
  accent-color: var(--tungsten);
  cursor: pointer;
}
.control-field select {
  padding: 2px 5px;
  font-size: 11.5px;
  color: #e2d8c8;
  background: rgba(20, 15, 12, 0.9);
  border: 1px solid rgba(232, 180, 90, 0.24);
  border-radius: var(--r-sm);
  cursor: pointer;
}
.overview-shell.is-lights-off {
  background: #080605;
}
.overview-shell.is-lights-off .overview-info-col, .overview-shell.is-lights-off .overview-poster-col {
  opacity: 0.42;
  transition: opacity 0.3s;
}
.overview-shell.is-theater .overview-player-col {
  grid-column: 1 / -1;
}
.stills-shell {
  padding: 14px 16px 16px;
  border-radius: var(--r);
  border: 1px solid rgba(232, 180, 90, 0.14);
  background: linear-gradient(180deg, rgba(31, 46, 38, 0.42), rgba(20, 15, 12, 0.5));
}
.stills-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.still-card {
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 1px solid rgba(232, 180, 90, 0.18);
  background: #0d0a08;
}
.still-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.1) brightness(0.9) sepia(0.16);
}
.still-meta {
  padding: 5px 9px 6px;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: rgba(233, 238, 240, 0.78);
  background: rgba(20, 15, 12, 0.85);
  border-top: 1px solid rgba(232, 180, 90, 0.12);
}
.ticket-stub-row {
  margin-top: 13px;
  padding-top: 11px;
  border-top: 1px dashed rgba(232, 180, 90, 0.22);
}
.stub-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.stub-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px 5px 10px;
  font-size: 12px;
  color: #2d2620;
  background: linear-gradient(180deg, #f3e8d4, #e0d1b6);
  border-radius: 3px 3px 3px 3px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}
.stub-item::before, .stub-item::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 5px;
  background-image: radial-gradient(circle at 50% 50%, #14100d 0 1.6px, transparent 1.7px);
  background-size: 5px 5px;
  background-repeat: repeat-y;
}
.stub-item::before {
  left: 0;
}
.stub-item::after {
  right: 0;
}
.stub-serial {
  font-family: var(--font-hand);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: #8a5a1e;
}
.stub-name {
  letter-spacing: 0.06em;
  border-left: 1px solid rgba(58, 42, 32, 0.3);
  padding-left: 8px;
}
.stub-year {
  font-size: 11px;
  color: #6d5a45;
  letter-spacing: 0.05em;
}
.timeline-shell {
  padding: 14px 0 4px 16px;
  border-radius: var(--r);
  border: 1px solid rgba(232, 180, 90, 0.14);
  background: linear-gradient(180deg, rgba(36, 26, 21, 0.6), rgba(20, 15, 12, 0.55));
}
.timeline-shell .section-heading {
  margin-bottom: 10px;
}
.timeline-scroller {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 16px 14px 0;
  cursor: grab;
  scrollbar-color: var(--tungsten-deep) rgba(255, 255, 255, 0.06);
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
.timeline-scroller:active {
  cursor: grabbing;
}
.timeline-scroller::-webkit-scrollbar {
  height: 7px;
}
.timeline-scroller::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
}
.timeline-scroller::-webkit-scrollbar-thumb {
  background: var(--tungsten-deep);
  border-radius: 999px;
}
.timeline-track {
  display: flex;
  align-items: stretch;
  gap: 12px;
  min-width: max-content;
  position: relative;
}
.timeline-track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 16px;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(232, 180, 90, 0.5) 0 8px, transparent 8px 16px);
}
.timeline-node {
  position: relative;
  flex: 0 0 216px;
  width: 216px;
  padding: 0 12px 12px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(232, 180, 90, 0.16);
  background: linear-gradient(180deg, rgba(31, 46, 38, 0.55), rgba(20, 15, 12, 0.8));
}
.node-stub {
  display: inline-block;
  margin-top: 8px;
  margin-bottom: 8px;
  padding: 2px 10px;
  font-family: var(--font-hand);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: #2d2620;
  background: linear-gradient(180deg, #f3e8d4, #dccbaa);
  border-radius: 3px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  position: relative;
}
.node-time {
  display: block;
  font-family: var(--font-hand);
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--tungsten-2);
  margin-bottom: 5px;
}
.node-label {
  font-size: 12.5px;
  line-height: 1.66;
  color: rgba(216, 206, 192, 0.82);
}
.episodes-shell {
  padding: 14px 16px 16px;
  border-radius: var(--r);
  border: 1px solid rgba(232, 180, 90, 0.14);
  background: linear-gradient(180deg, rgba(26, 19, 16, 0.66), rgba(20, 15, 12, 0.6));
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  align-items: start;
}
.episode-card {
  position: relative;
  padding: 9px 11px 10px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(232, 180, 90, 0.13);
  background: linear-gradient(180deg, rgba(44, 64, 52, 0.32), rgba(20, 15, 12, 0.6));
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.episode-no {
  font-size: 11.5px;
  letter-spacing: 0.14em;
  color: rgba(198, 210, 216, 0.6);
}
.episode-title {
  font-family: var(--font-hand);
  font-size: 15px;
  letter-spacing: 0.06em;
  color: #e6dccb;
  line-height: 1.3;
}
.episode-summary {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(216, 206, 192, 0.74);
}
.episode-duration {
  margin-top: 3px;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(232, 180, 90, 0.7);
}
.episode-card.is-current {
  border: 2px solid var(--tungsten);
  background: linear-gradient(180deg, rgba(232, 180, 90, 0.16), rgba(20, 15, 12, 0.7));
  box-shadow: 0 0 0 1px rgba(232, 180, 90, 0.24), 0 6px 20px rgba(232, 180, 90, 0.14);
}
.episode-card.is-current .episode-title {
  color: var(--tungsten-2);
}
.episode-badge {
  position: absolute;
  top: -9px;
  right: 8px;
  padding: 1px 8px;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  color: #1a1310;
  background: linear-gradient(180deg, var(--tungsten-2), var(--tungsten));
  border-radius: 999px;
  box-shadow: 0 3px 9px rgba(232, 180, 90, 0.3);
  white-space: nowrap;
}
.comments-shell {
  padding: 14px 16px 18px;
  border-radius: var(--r);
  border: 1px solid rgba(232, 180, 90, 0.14);
  background:
    linear-gradient(180deg, rgba(31, 46, 38, 0.4), rgba(20, 15, 12, 0.55));
}
.comment-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  align-items: start;
}
.comment-card {
  padding: 9px 11px 10px;
  border-radius: 2px 10px 3px 9px;
  background: linear-gradient(180deg, #f2e8d6, #e2d3b7);
  color: #322a22;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.42);
  position: relative;
}
.comment-card::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 46px;
  height: 11px;
  background: rgba(232, 180, 90, 0.34);
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  border-right: 1px solid rgba(255, 255, 255, 0.28);
}
.comment-card:nth-child(4n + 1) { transform: rotate(-0.9deg); }
.comment-card:nth-child(4n + 2) { transform: rotate(0.7deg); }
.comment-card:nth-child(4n + 3) { transform: rotate(-0.5deg); }
.comment-card:nth-child(4n + 4) { transform: rotate(1deg); }
.comment-nick {
  font-family: var(--font-hand);
  font-size: 13.5px;
  letter-spacing: 0.06em;
  color: #8a5a1e;
  padding-bottom: 4px;
  margin-bottom: 5px;
  border-bottom: 1px dashed rgba(58, 42, 32, 0.28);
}
.comment-text {
  font-size: 12.5px;
  line-height: 1.68;
  color: #3a3128;
}
.rec-list-shell, .rec-card-shell, .rec-number-shell {
  padding: 13px 16px 15px;
  border-radius: var(--r);
  border: 1px solid rgba(232, 180, 90, 0.13);
  background: linear-gradient(180deg, rgba(36, 26, 21, 0.5), rgba(20, 15, 12, 0.5));
}
.rec-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}
a.rec-row {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  grid-template-areas:
    "img name"
    "img blurb";
  align-items: center;
  gap: 1px 10px;
  padding: 6px 10px 6px 6px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(232, 180, 90, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}
a.rec-row:hover {
  border-color: var(--tungsten-deep);
  background: rgba(232, 180, 90, 0.09);
}
.rec-row img {
  grid-area: img;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 4px;
  filter: saturate(0.76) contrast(1.06) brightness(0.92);
}
.rec-row-name {
  grid-area: name;
  font-family: var(--font-hand);
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #e6dccb;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rec-row-blurb {
  grid-area: blurb;
  font-size: 11.5px;
  line-height: 1.5;
  color: rgba(198, 210, 216, 0.62);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.rec-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-items: start;
}
a.rec-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 1px solid rgba(232, 180, 90, 0.16);
  background: linear-gradient(180deg, rgba(31, 46, 38, 0.42), rgba(20, 15, 12, 0.7));
  color: inherit;
  text-decoration: none;
  transition: border-color 0.15s, transform 0.15s;
}
a.rec-card:hover {
  border-color: var(--tungsten-deep);
  transform: translateY(-2px);
}
.rec-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(0.74) contrast(1.08) brightness(0.9) sepia(0.1);
}
.rec-card-name {
  padding: 6px 10px 0;
  font-family: var(--font-hand);
  font-size: 14.5px;
  letter-spacing: 0.05em;
  color: var(--tungsten-2);
}
.rec-card-blurb {
  padding: 2px 10px 9px;
  font-size: 11.5px;
  line-height: 1.55;
  color: rgba(216, 206, 192, 0.68);
}
.rec-number-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 9px;
  align-items: start;
}
a.rec-number {
  position: relative;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  grid-template-areas:
    "rank rank"
    "img img"
    "name name"
    "blurb blurb";
  gap: 4px 8px;
  padding: 8px 9px 10px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(232, 180, 90, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}
a.rec-number:hover {
  border-color: var(--tungsten-deep);
  background: rgba(232, 180, 90, 0.08);
}
.rec-number-rank {
  grid-area: rank;
  font-family: var(--font-hand);
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: transparent;
  -webkit-text-stroke: 1px var(--tungsten-deep);
  text-shadow: 0 0 0 transparent;
}
a.rec-number:hover .rec-number-rank {
  color: rgba(232, 180, 90, 0.22);
}
.rec-number img {
  grid-area: img;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 4px;
  filter: saturate(0.74) contrast(1.06) brightness(0.9);
}
.rec-number-name {
  grid-area: name;
  font-family: var(--font-hand);
  font-size: 13.5px;
  letter-spacing: 0.04em;
  color: #e6dccb;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rec-number-blurb {
  grid-area: blurb;
  font-size: 11px;
  line-height: 1.5;
  color: rgba(198, 210, 216, 0.6);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.site-footer {
  margin-top: 10px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(20, 15, 12, 0.6), #0d0a08);
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 18px 22px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas:
    "nav friends"
    "disc friends"
    "copy copy";
  gap: 10px 24px;
  align-items: start;
}
.footer-nav {
  grid-area: nav;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--notice-cold);
  border-bottom: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: var(--tungsten-2);
  border-bottom-color: var(--tungsten-deep);
}
.friend-links {
  grid-area: friends;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 8px;
  padding: 9px 12px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(232, 180, 90, 0.12);
  background: rgba(255, 255, 255, 0.025);
}
.friend-label {
  font-family: var(--font-hand);
  font-size: 12.5px;
  letter-spacing: 0.16em;
  color: var(--tungsten);
  margin-right: 4px;
}
a.runtime-friend-link {
  font-size: 12px;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: rgba(198, 210, 216, 0.66);
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(233, 238, 240, 0.1);
  white-space: nowrap;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
a.runtime-friend-link:hover {
  color: var(--tungsten-2);
  border-color: var(--tungsten-deep);
  background: rgba(232, 180, 90, 0.1);
}
.footer-disclaimer {
  grid-area: disc;
  max-width: 62ch;
  font-size: 11.5px;
  line-height: 1.7;
  color: rgba(198, 210, 216, 0.42);
}
.footer-copy {
  grid-area: copy;
  padding-top: 8px;
  border-top: 1px dashed rgba(232, 180, 90, 0.16);
  font-family: var(--font-hand);
  font-size: 12.5px;
  letter-spacing: 0.22em;
  color: rgba(232, 180, 90, 0.55);
}
@media (max-width: 1080px) {.overview-shell {
    grid-template-columns: 200px minmax(0, 1fr);
    grid-template-areas:
      "poster info"
      "player player";
  }
.overview-poster-col { grid-area: poster; }
.overview-info-col { grid-area: info; }
.overview-player-col { grid-area: player; }
.episode-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.comment-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.rec-number-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }}
@media (max-width: 860px) {.hero-shell {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "title"
      "notice"
      "still";
    padding: 18px 16px 20px;
  }
.hero-title-block::before {
    font-size: clamp(34px, 11vw, 56px);
  }
.hero-notice {
    transform: none;
  }
.overview-shell {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "poster"
      "info"
      "player";
  }
.overview-poster-col {
    max-width: 240px;
  }
.episode-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.comment-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.rec-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.rec-number-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.footer-inner {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "nav"
      "friends"
      "disc"
      "copy";
  }}
@media (max-width: 620px) {body {
    font-size: 14px;
  }
.header-inner {
    padding: 7px 12px;
  }
.page-main {
    padding: 0 12px 22px;
    gap: 12px;
  }
.stills-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.episode-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.comment-wall {
    grid-template-columns: minmax(0, 1fr);
  }
.rec-list {
    grid-template-columns: minmax(0, 1fr);
  }
.rec-card-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.rec-number-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.details-unit .detail-list {
    grid-template-columns: minmax(0, 1fr);
  }
.timeline-node {
    flex-basis: 190px;
    width: 190px;
  }
.player-controls {
    gap: 4px 6px;
    padding: 6px 7px;
  }
.control-field input[type="range"] {
    width: 66px;
  }}
@media (max-width: 420px) {.stills-track {
    grid-template-columns: minmax(0, 1fr);
  }
.rec-number-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.cast-member {
    width: 74px;
  }
.cast-face {
    height: 70px;
  }
.hero-title-block::before {
    letter-spacing: 0.03em;
  }}

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}
