*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: "Songti SC", "SimSun", "Noto Serif SC", serif;
  background: #1a1410;
  color: #d4c5a9;
  line-height: 1.6;
  min-height: 100vh;
  background-image:
    radial-gradient(ellipse at 20% 10%, rgba(120, 60, 20, 0.15), transparent 60%),
    radial-gradient(ellipse at 80% 90%, rgba(20, 40, 80, 0.2), transparent 55%),
    linear-gradient(180deg, #1a1410 0%, #221a14 100%);
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: #c9a86a; text-decoration: none; }
a:hover { color: #e8c888; }
button { font-family: inherit; cursor: pointer; }
.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding: 14px 28px;
  border-bottom: 1px solid rgba(180, 140, 80, 0.25);
  background: linear-gradient(180deg, #241a12 0%, #1a1410 100%);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
a[data-contract="site-name"] {
  font-family: "STKaiti", "KaiTi", "楷体", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #e0b06a;
  letter-spacing: 0.15em;
  text-shadow: 0 0 12px rgba(224, 176, 106, 0.3);
  white-space: nowrap;
}
a[data-contract="site-name"]:hover {
  color: #f0c080;
  text-shadow: 0 0 18px rgba(224, 176, 106, 0.5);
}
.category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  align-items: center;
}
a.runtime-category {
  display: inline-block;
  padding: 4px 12px;
  font-size: 0.85rem;
  color: #b8a088;
  border: 1px solid rgba(180, 140, 80, 0.3);
  border-radius: 20px;
  background: rgba(60, 40, 20, 0.3);
  white-space: nowrap;
  transition: all 0.2s;
}
a.runtime-category:hover {
  color: #f0c080;
  border-color: rgba(200, 160, 90, 0.6);
  background: rgba(80, 50, 20, 0.4);
}
main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
}
.movie-overview-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.8fr);
  grid-template-areas:
    "poster overview"
    "player overview";
  gap: 0 24px;
  padding: 24px 0;
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
}
.movie-overview-shell::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(60, 35, 15, 0.2) 0%, transparent 40%, rgba(20, 30, 60, 0.15) 100%);
  pointer-events: none;
  z-index: 0;
}
.poster-column {
  grid-area: poster;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 1;
}
.poster-wrapper {
  position: relative;
  width: 100%;
  max-width: 340px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.6), 0 0 0 1px rgba(180, 140, 80, 0.2);
  background: #2a2018;
}
.main-poster-img {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  filter: sepia(0.3) contrast(1.05);
}
.poster-wrapper::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(20, 10, 5, 0) 60%, rgba(20, 10, 5, 0.4) 100%);
  pointer-events: none;
}
.overview-content {
  grid-area: overview;
  z-index: 1;
  background: linear-gradient(135deg, rgba(50, 35, 20, 0.6) 0%, rgba(30, 20, 15, 0.8) 100%);
  padding: 20px 24px 24px;
  border: 1px solid rgba(180, 140, 80, 0.15);
  border-radius: 4px;
  position: relative;
}
.overview-content::before {
  content: "残卷·余烬";
  position: absolute;
  top: 8px; right: 12px;
  font-family: "STKaiti", "KaiTi", serif;
  font-size: 0.7rem;
  color: rgba(180, 140, 80, 0.3);
  letter-spacing: 0.3em;
}
.title-block {
  border-bottom: 1px solid rgba(180, 140, 80, 0.2);
  padding-bottom: 12px;
  margin-bottom: 16px;
}
.movie-title {
  font-family: "STKaiti", "KaiTi", "楷体", serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: #e8c888;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  line-height: 1.3;
}
.movie-tagline {
  font-size: 0.9rem;
  color: #b09a78;
  margin-top: 6px;
  letter-spacing: 0.05em;
  font-style: italic;
}
.panel-heading {
  font-family: "STKaiti", "KaiTi", serif;
  font-size: 1.1rem;
  color: #d0a860;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.panel-heading::before {
  content: "";
  width: 20px; height: 1px;
  background: #c9a86a;
  opacity: 0.6;
}
.panel-heading::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(180, 140, 80, 0.3), transparent);
}
.synopsis-panel {
  margin-bottom: 18px;
}
.synopsis-paragraph {
  font-size: 0.88rem;
  color: #c8b898;
  line-height: 1.7;
  margin-bottom: 8px;
  text-indent: 2em;
  text-align: justify;
}
.synopsis-paragraph:last-of-type {
  margin-bottom: 0;
}
.episode-status-panel {
  margin-bottom: 18px;
  padding: 10px 14px;
  background: rgba(180, 140, 80, 0.08);
  border-left: 3px solid #a06030;
  border-radius: 0 4px 4px 0;
}
.status-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  align-items: center;
}
.status-item {
  font-size: 0.82rem;
  color: #b8a080;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.status-item::before {
  content: "◈";
  color: #a06030;
  font-size: 0.6rem;
}
.details-panel {
  margin-bottom: 18px;
}
.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 6px 16px;
  padding: 4px 0;
}
.detail-item {
  display: flex;
  gap: 6px;
  align-items: baseline;
  padding: 4px 0;
  border-bottom: 1px dotted rgba(180, 140, 80, 0.15);
}
.detail-term {
  font-size: 0.78rem;
  color: #9a8a6a;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.detail-value {
  font-size: 0.85rem;
  color: #d8c8a8;
}
.cast-panel {
  margin-top: 4px;
}
.cast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 10px;
  padding: 4px 0;
}
.cast-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 6px 8px;
  background: rgba(40, 28, 18, 0.5);
  border: 1px solid rgba(180, 140, 80, 0.12);
  border-radius: 4px;
  transition: transform 0.2s, border-color 0.2s;
}
.cast-card:hover {
  transform: translateY(-2px);
  border-color: rgba(200, 160, 90, 0.4);
}
.cast-portrait {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(220, 180, 120, 0.3), transparent 50%),
    linear-gradient(135deg, #4a3828 0%, #2a2018 100%);
  border: 2px solid rgba(180, 140, 80, 0.4);
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
}
.cast-portrait::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(20, 10, 5, 0.6));
}
.cast-name {
  font-family: "STKaiti", "KaiTi", serif;
  font-size: 0.95rem;
  color: #e0c090;
  letter-spacing: 0.1em;
}
.cast-role {
  font-size: 0.75rem;
  color: #9a8870;
  margin-top: 2px;
}
.player-wrapper {
  grid-area: player;
  z-index: 1;
  background: #0a0806;
  border: 1px solid rgba(180, 140, 80, 0.2);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 20px;
  min-width: 0;
  width: 100%;
  max-width: none;
}
.player-wrapper video {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: contain;
  background: #000;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 6px 10px;
  background: linear-gradient(180deg, #1a1410, #0d0a08);
  border-top: 1px solid rgba(180, 140, 80, 0.15);
  align-items: center;
}
.player-controls button {
  background: rgba(60, 40, 20, 0.4);
  border: 1px solid rgba(180, 140, 80, 0.25);
  color: #c8b898;
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: 3px;
  transition: all 0.15s;
}
.player-controls button:hover {
  background: rgba(100, 60, 25, 0.5);
  color: #f0d0a0;
}
.player-controls input[type="range"] {
  flex: 1;
  min-width: 80px;
  height: 4px;
  accent-color: #a06030;
  background: rgba(180, 140, 80, 0.2);
  border-radius: 2px;
  cursor: pointer;
}
.player-wrapper.is-theater-mode {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 999;
  border-radius: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  background: #000;
}
.player-wrapper.is-theater-mode video {
  flex: 1;
  width: 100%;
  height: auto;
  max-height: calc(100vh - 50px);
}
.player-wrapper.is-theater-mode .player-controls {
  position: absolute;
  bottom: 0; left: 0; right: 0;
}
.player-wrapper.is-lights-off::before {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.85);
  z-index: -1;
}
.player-wrapper.is-lights-off video {
  box-shadow: 0 0 80px rgba(200, 160, 90, 0.08);
}
.player-wrapper.is-theater-mode, .player-wrapper.is-lights-off { position: relative; }
video.is-muted { filter: brightness(0.9); }
video.player { cursor: pointer; }
.player-controls .play.active { color: #f0d0a0; }
.player-controls .progress { accent-color: #c9a86a; }
.player-controls .volume { accent-color: #c9a86a; }
.player-controls .speed { font-weight: bold; }
.player-controls .pip, .player-controls .fullscreen, .player-controls .theater, .player-controls .light { font-size: 0.7rem; }
.player-controls .click { background: rgba(100, 60, 25, 0.6); }
.player-controls .input { border-color: #c9a86a; }
.player-controls .mute.active { color: #f0d0a0; }
.player-controls .timeupdate { font-size: 0.7rem; color: #9a8870; }
.section-heading {
  font-family: "STKaiti", "KaiTi", serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: #d8b070;
  letter-spacing: 0.25em;
  text-align: center;
  margin: 36px 0 18px;
  padding-bottom: 10px;
  position: relative;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}
.section-heading::before, .section-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 1px;
  width: 30%;
  background: linear-gradient(90deg, transparent, rgba(200, 160, 90, 0.5));
}
.section-heading::before { left: 0; }
.section-heading::after { right: 0; transform: scaleX(-1); }
.section-heading::marker { content: ""; }
.timeline-section {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 16px 24px;
  position: relative;
}
.timeline-scroll {
  overflow-x: auto;
  padding: 10px 0 18px;
  scrollbar-width: thin;
  scrollbar-color: #6a4a2a rgba(40, 30, 20, 0.3);
}
.timeline-scroll::-webkit-scrollbar { height: 6px; }
.timeline-scroll::-webkit-scrollbar-track { background: rgba(40, 30, 20, 0.3); }
.timeline-scroll::-webkit-scrollbar-thumb { background: #6a4a2a; border-radius: 3px; }
.timeline-track {
  display: flex;
  gap: 0;
  min-width: max-content;
  padding: 0 20px;
  position: relative;
  align-items: stretch;
}
.timeline-track::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: linear-gradient(90deg, #8a6030, #c9a86a, #8a6030);
  opacity: 0.5;
  border-radius: 1px;
}
.timeline-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 18px;
  position: relative;
  z-index: 1;
  max-width: 180px;
}
.timeline-node::before {
  content: "印";
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: radial-gradient(circle, #a03020 0%, #6a1a10 100%);
  color: #f0e0c0;
  font-size: 0.55rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #d4a060;
  box-shadow: 0 0 8px rgba(160, 40, 20, 0.4), inset 0 0 4px rgba(0,0,0,0.3);
  margin-bottom: 10px;
  font-family: "STKaiti", serif;
}
.node-timecode {
  font-size: 0.85rem;
  color: #d0a060;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.node-label {
  font-size: 0.78rem;
  color: #a89878;
  line-height: 1.5;
  max-width: 150px;
}
.episodes-section {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 16px 24px;
}
.episodes-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
  position: relative;
}
.episode-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  counter-reset: episode;
}
.episode-column + .episode-column {
  border-left: 1px solid rgba(180, 140, 80, 0.15);
  padding-left: 24px;
}
.episode-card {
  position: relative;
  padding: 12px 14px 10px 46px;
  background: linear-gradient(135deg, rgba(50, 35, 20, 0.4), rgba(35, 25, 15, 0.6));
  border: 1px solid rgba(180, 140, 80, 0.1);
  border-radius: 3px;
  transition: all 0.2s;
  counter-increment: episode;
}
.episode-card:hover {
  border-color: rgba(200, 160, 90, 0.4);
  background: rgba(55, 38, 20, 0.5);
  transform: translateX(3px);
}
.episode-card::before {
  content: counter(episode, decimal-leading-zero);
  position: absolute;
  left: 12px;
  top: 12px;
  font-family: "STKaiti", serif;
  font-size: 0.8rem;
  color: #a06030;
  border: 1px solid rgba(160, 96, 48, 0.4);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  background: rgba(60, 30, 10, 0.3);
}
.episode-number {
  display: block;
  font-size: 0.75rem;
  color: #9a8060;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}
.episode-title {
  display: block;
  font-family: "STKaiti", "KaiTi", serif;
  font-size: 1rem;
  color: #d8b880;
  margin-bottom: 4px;
  letter-spacing: 0.08em;
}
.episode-summary {
  font-size: 0.8rem;
  color: #a89878;
  line-height: 1.5;
  margin-bottom: 4px;
}
.episode-duration {
  font-size: 0.7rem;
  color: #6a5a48;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.episode-duration::before {
  content: "⏱";
  font-size: 0.6rem;
}
.comments-section {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 16px 24px;
}
.comments-masonry {
  columns: 3;
  column-gap: 16px;
  padding: 4px 0;
}
.comment-bubble {
  break-inside: avoid;
  margin-bottom: 14px;
  padding: 14px 16px 12px;
  background:
    radial-gradient(ellipse at 10% 10%, rgba(200, 160, 90, 0.06), transparent 50%),
    linear-gradient(135deg, rgba(50, 35, 20, 0.5), rgba(35, 25, 15, 0.7));
  border: 1px solid rgba(180, 140, 80, 0.15);
  border-radius: 8px 8px 8px 2px;
  position: relative;
  transition: all 0.2s;
}
.comment-bubble:hover {
  border-color: rgba(200, 160, 90, 0.35);
}
.comment-bubble::before {
  content: "";
  position: absolute;
  bottom: 6px; left: -6px;
  width: 12px; height: 12px;
  background: inherit;
  border-left: 1px solid rgba(180, 140, 80, 0.15);
  border-bottom: 1px solid rgba(180, 140, 80, 0.15);
  transform: rotate(45deg);
  border-radius: 0 0 0 2px;
}
.comment-nickname {
  display: block;
  font-size: 0.82rem;
  color: #d0a060;
  margin-bottom: 6px;
  font-weight: bold;
  letter-spacing: 0.05em;
  position: relative;
  padding-left: 16px;
}
.comment-nickname::before {
  content: "批";
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 0.6rem;
  color: #a03020;
  border: 1px solid rgba(160, 48, 32, 0.4);
  padding: 0 3px;
  border-radius: 2px;
  background: rgba(160, 48, 32, 0.1);
}
.comment-text {
  font-size: 0.82rem;
  color: #b8a888;
  line-height: 1.6;
}
.recommendation-region {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 16px 24px;
}
.recommendation-region + .recommendation-region {
  border-top: 1px solid rgba(180, 140, 80, 0.1);
  padding-top: 8px;
}
.recommendation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
  padding: 4px 0;
}
a.recommendation-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, rgba(40, 28, 18, 0.7), rgba(30, 20, 12, 0.8));
  border: 1px solid rgba(180, 140, 80, 0.15);
  border-radius: 4px;
  overflow: hidden;
  padding-bottom: 10px;
  transition: all 0.25s;
  position: relative;
  min-height: 0;
}
a.recommendation-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 160, 90, 0.45);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}
a.recommendation-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  filter: sepia(0.25) contrast(1.05);
  transition: filter 0.25s;
}
a.recommendation-card:hover img {
  filter: sepia(0.1) contrast(1.1);
}
a.recommendation-card [data-runtime="name"] {
  font-family: "STKaiti", "KaiTi", serif;
  font-size: 0.95rem;
  color: #d8b880;
  padding: 8px 10px 2px;
  letter-spacing: 0.05em;
}
a.recommendation-card [data-runtime="blurb"] {
  font-size: 0.75rem;
  color: #8a7a68;
  padding: 0 10px;
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.footer-shell {
  background: linear-gradient(180deg, #1a1410 0%, #0d0a08 100%);
  border-top: 1px solid rgba(180, 140, 80, 0.2);
  padding: 28px 24px 40px;
  margin-top: 20px;
  text-align: center;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 18px;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-size: 0.85rem;
  color: #b8a088;
  letter-spacing: 0.1em;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: all 0.2s;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: #f0c080;
  border-bottom-color: rgba(200, 160, 90, 0.4);
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 14px;
  margin-bottom: 20px;
  font-size: 0.8rem;
}
.friend-links-label {
  color: #8a7a68;
  letter-spacing: 0.1em;
  margin-right: 4px;
}
a.runtime-friend-link {
  color: #9a8870;
  font-size: 0.8rem;
  transition: color 0.2s;
  white-space: nowrap;
}
a.runtime-friend-link:hover {
  color: #e0c090;
  text-decoration: underline;
  text-decoration-color: rgba(200, 160, 90, 0.4);
  text-underline-offset: 3px;
}
.footer-disclaimer {
  font-size: 0.75rem;
  color: #6a5a48;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  border-top: 1px solid rgba(180, 140, 80, 0.1);
  padding-top: 16px;
}
@media (max-width: 1100px) {.movie-overview-shell {
    grid-template-columns: 1fr;
    grid-template-areas:
      "poster"
      "overview"
      "player";
    gap: 16px 0;
  }
.poster-column {
    align-items: center;
  }
.poster-wrapper {
    max-width: 300px;
  }
.comments-masonry {
    columns: 2;
  }}
@media (max-width: 860px) {.episodes-columns {
    grid-template-columns: 1fr;
    gap: 14px 0;
  }
.episode-column + .episode-column {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(180, 140, 80, 0.15);
    padding-top: 14px;
  }
.header-shell {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 10px 16px;
  }
.category-nav {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 2px;
  }}
@media (max-width: 600px) {main {
    padding: 0 10px;
  }
.movie-overview-shell {
    padding: 12px 0;
  }
.overview-content {
    padding: 16px 14px;
  }
.details-grid {
    grid-template-columns: 1fr 1fr;
  }
.cast-grid {
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  }
.comments-masonry {
    columns: 1;
  }
.recommendation-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
.timeline-track {
    padding: 0 10px;
  }
.timeline-node {
    padding: 0 12px;
  }
.player-controls {
    gap: 2px;
  }
.player-controls button {
    padding: 3px 6px;
    font-size: 0.7rem;
  }
.footer-shell {
    padding: 20px 12px 30px;
  }
.friend-links {
    gap: 4px 10px;
  }
.title-block {
    padding-bottom: 8px;
    margin-bottom: 12px;
  }
.movie-title {
    font-size: 1.3rem;
  }}
@media (max-width: 400px) {.details-grid {
    grid-template-columns: 1fr;
  }
.poster-wrapper {
    max-width: 220px;
  }
.cast-portrait {
    width: 52px;
    height: 52px;
  }
.recommendation-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
a.recommendation-card [data-runtime="name"] {
    font-size: 0.85rem;
    padding: 6px 8px 2px;
  }
a.recommendation-card [data-runtime="blurb"] {
    font-size: 0.7rem;
    padding: 0 8px;
  }
.status-meta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
.episode-card {
    padding-left: 38px;
  }
.episode-card::before {
    left: 8px;
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
  }}
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.06;
  background-image:
    repeating-linear-gradient(45deg, transparent 0, transparent 3px, rgba(200, 150, 80, 0.3) 3px, rgba(200, 150, 80, 0.3) 4px),
    repeating-linear-gradient(-45deg, transparent 0, transparent 5px, rgba(150, 80, 40, 0.2) 5px, rgba(150, 80, 40, 0.2) 6px);
  background-size: 60px 60px, 80px 80px;
  mix-blend-mode: overlay;
}
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #1a1410; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #6a4a2a, #4a3020);
  border-radius: 5px;
  border: 2px solid #1a1410;
}
::-webkit-scrollbar-thumb:hover { background: #8a6030; }
::selection {
  background: rgba(160, 60, 30, 0.6);
  color: #f0e0c8;
}
:focus-visible {
  outline: 2px solid #c9a86a;
  outline-offset: 2px;
}

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}
