:root {
  --ink: #070d0b;
  --ink-2: #0d1613;
  --moss: #12211c;
  --moss-2: #17302a;
  --tea: #241c14;
  --tea-2: #33engt;
  --gold: #b08a3e;
  --gold-dim: #7d6229;
  --gold-bright: #d8b25c;
  --text: #cfd8d2;
  --text-dim: #8b9a92;
  --text-mute: #5f6f68;
  --line: #24352e;
  --line-soft: #1a2822;
  --radius: 2px;
  --gap: 10px;
  --pad: 12px;
  --font: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Heiti SC", "WenQuanYi Micro Hei", system-ui, sans-serif;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  font-family: var(--font);
  font-weight: 300;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text);
  background-color: var(--ink);
  background-image:
    radial-gradient(120% 90% at 82% -10%, rgba(116, 92, 40, 0.20) 0%, rgba(116, 92, 40, 0) 46%),
    radial-gradient(90% 70% at 8% 4%, rgba(38, 74, 62, 0.34) 0%, rgba(38, 74, 62, 0) 52%),
    linear-gradient(168deg, #0c1a15 0%, #0a1210 38%, #16110b 72%, #0b0a08 100%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
}
img, video {
  display: block;
  max-width: 100%;
}
ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
h2, h3, p {
  margin: 0;
}
a {
  color: var(--gold);
  text-decoration: none;
}
button, input, select {
  font: inherit;
  color: inherit;
}
button {
  cursor: pointer;
}
::selection {
  background: rgba(176, 138, 62, 0.35);
  color: #f2ecdd;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(180deg, rgba(7, 13, 11, 0.96) 0%, rgba(7, 13, 11, 0.82) 70%, rgba(7, 13, 11, 0.55) 100%);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 7px 14px;
  max-width: 1320px;
  margin: 0 auto;
}
.site-brand, a[data-contract="site-name"] {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--gold-bright);
  text-decoration: none;
  text-shadow: 0 0 14px rgba(216, 178, 92, 0.28);
  white-space: nowrap;
  border-left: 2px solid var(--gold);
  padding-left: 8px;
  flex: 0 0 auto;
}
.site-brand:hover, a[data-contract="site-name"]:hover {
  color: #f0d38a;
}
.category-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  min-width: 0;
  flex: 1 1 auto;
}
a.runtime-category {
  display: inline-block;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  text-decoration: none;
  padding: 2px 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(23, 48, 42, 0.35);
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
a.runtime-category:hover {
  color: var(--gold-bright);
  border-color: var(--gold-dim);
  background: rgba(176, 138, 62, 0.12);
}
.page-main {
  max-width: 1320px;
  margin: 0 auto;
  padding: 12px 14px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.overview-shell {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(23, 48, 42, 0.30) 0%, rgba(13, 22, 19, 0.55) 60%, rgba(36, 28, 20, 0.40) 100%),
    linear-gradient(100deg, #0e1a16 0%, #101c17 44%, #1d1710 100%);
  overflow: hidden;
}
.overview-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(58% 46% at 88% 6%, rgba(216, 178, 92, 0.16) 0%, rgba(216, 178, 92, 0) 60%),
    radial-gradient(70% 60% at 4% 100%, rgba(58, 96, 82, 0.22) 0%, rgba(58, 96, 82, 0) 62%);
  mix-blend-mode: screen;
}
.overview-head {
  position: relative;
  z-index: 1;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.overview-title {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.10em;
  color: #eef2ee;
  line-height: 1.2;
}
.overview-title::after {
  content: "";
  display: block;
  width: 54px;
  height: 2px;
  margin-top: 7px;
  background: linear-gradient(90deg, var(--gold-bright), rgba(176, 138, 62, 0));
}
.overview-tagline {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--gold);
  text-shadow: 0 0 12px rgba(176, 138, 62, 0.30);
}
.overview-seo {
  font-size: 12px;
  line-height: 1.55;
  color: var(--text-mute);
  max-width: 78ch;
}
.overview-body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 196px) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}
.overview-poster-wrap {
  position: relative;
  align-self: start;
  width: 100%;
  aspect-ratio: 2 / 3;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0a0f0d;
  overflow: hidden;
}
.overview-poster-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(176, 138, 62, 0.16), inset 0 -46px 42px -30px rgba(0, 0, 0, 0.9);
}
.overview-poster-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.08) brightness(0.92);
}
.overview-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.detail-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.detail-chip {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--text-dim);
  padding: 3px 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(12, 20, 17, 0.66);
  white-space: nowrap;
}
.detail-chip-score {
  color: var(--gold-bright);
  border-color: var(--gold-dim);
  background: rgba(176, 138, 62, 0.14);
  text-shadow: 0 0 10px rgba(216, 178, 92, 0.4);
  font-weight: 400;
  letter-spacing: 0.06em;
}
.cast-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 10px;
  border-top: 1px solid var(--line-soft);
}
.block-heading {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: var(--gold);
  text-transform: none;
}
.block-heading::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-right: 6px;
  vertical-align: 2px;
  background: var(--gold-bright);
  box-shadow: 0 0 8px rgba(216, 178, 92, 0.8);
}
.cast-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cast-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 62px;
  flex: 0 0 auto;
}
.cast-avatar {
  display: block;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 34% 28%, rgba(216, 178, 92, 0.34) 0%, rgba(216, 178, 92, 0) 58%),
    linear-gradient(160deg, #24443a 0%, #14231e 55%, #241c14 100%);
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.6);
}
.cast-name {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--text-dim);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.episode-status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding-top: 10px;
  border-top: 1px solid var(--line-soft);
}
.status-label {
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--text-mute);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2px 8px;
  background: rgba(12, 20, 17, 0.6);
}
.status-current {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--gold-bright);
  border: 1px solid var(--gold-dim);
  border-left-width: 2px;
  border-radius: var(--radius);
  padding: 2px 9px;
  background: rgba(176, 138, 62, 0.13);
  animation: clue-pulse 2.6s ease-in-out infinite;
}
@keyframes clue-pulse {
  0%, 100% { box-shadow: 0 0 0 rgba(216, 178, 92, 0); }
  46% { box-shadow: 0 0 12px rgba(216, 178, 92, 0.34); }
}
.synopsis-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 10px;
  border-top: 1px solid var(--line-soft);
}
.synopsis-para {
  font-size: 12.5px;
  line-height: 1.62;
  color: var(--text-dim);
  text-align: justify;
}
.synopsis-para + .synopsis-para {
  padding-top: 6px;
  border-top: 1px dashed rgba(36, 53, 46, 0.7);
}
.player-shell {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #060a09;
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.player-shell video {
  display: block;
  width: 100%;
  background: #000;
}
.player-shell.is-theater {
  border-color: var(--gold-dim);
  box-shadow: 0 0 0 1px rgba(176, 138, 62, 0.3), 0 14px 40px -18px rgba(0, 0, 0, 0.9);
}
.player-shell.is-light-off {
  background: #000;
}
.player-shell.is-light-off video {
  filter: brightness(0.42) contrast(1.12);
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-top: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(13, 22, 19, 0.92), rgba(7, 13, 11, 0.98));
}
.player-controls button {
  font-size: 11.5px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  background: rgba(23, 48, 42, 0.4);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 3px 9px;
  white-space: nowrap;
  transition: color 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}
.player-controls button:hover {
  color: var(--gold-bright);
  border-color: var(--gold-dim);
}
.player-controls button.is-active {
  color: var(--gold-bright);
  border-color: var(--gold-dim);
  background: rgba(176, 138, 62, 0.18);
  box-shadow: 0 0 10px rgba(216, 178, 92, 0.22);
}
.player-controls input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  height: 3px;
  background: var(--line);
  border-radius: 0;
  outline: none;
  flex: 0 0 auto;
}
.player-controls input[data-player-action="progress"] {
  flex: 1 1 180px;
  min-width: 120px;
}
.player-controls input[data-player-action="volume"] {
  flex: 0 1 90px;
  min-width: 64px;
}
.player-controls input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 0;
  background: var(--gold-bright);
  border: none;
  cursor: pointer;
}
.player-controls input[type="range"]::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border-radius: 0;
  background: var(--gold-bright);
  border: none;
  cursor: pointer;
}
.player-controls select {
  font-size: 11.5px;
  color: var(--text-dim);
  background: rgba(23, 48, 42, 0.4);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 3px 6px;
  outline: none;
}
.track-episode-shell {
  display: grid;
  grid-template-columns: minmax(240px, 0.86fr) minmax(0, 1.6fr);
  gap: 14px;
  align-items: start;
}
.timeline-panel, .episodes-panel {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(18, 33, 28, 0.62) 0%, rgba(10, 17, 14, 0.72) 100%);
  min-width: 0;
}
.panel-heading {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: #e2e8e3;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.panel-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 34px;
  height: 1px;
  background: var(--gold-bright);
  box-shadow: 0 0 8px rgba(216, 178, 92, 0.7);
}
.timeline-list {
  display: flex;
  flex-direction: column;
  position: relative;
}
.timeline-list::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 5px;
  bottom: 5px;
  width: 1px;
  background: linear-gradient(180deg, rgba(176, 138, 62, 0.55), rgba(176, 138, 62, 0.06));
}
.timeline-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 5px 0 5px 16px;
  border-bottom: 1px dashed rgba(36, 53, 46, 0.62);
}
.timeline-item:last-child {
  border-bottom: none;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(216, 178, 92, 0.55);
}
.timeline-timecode {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--gold);
}
.timeline-label {
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-dim);
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 7px;
  align-content: start;
}
.episode-card {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 7px 9px;
  border: 1px solid var(--line-soft);
  border-left: 2px solid rgba(176, 138, 62, 0.34);
  border-radius: var(--radius);
  background: rgba(9, 16, 13, 0.7);
  transition: border-color 0.18s ease, background 0.18s ease;
}
.episode-card:hover {
  border-color: var(--line);
  border-left-color: var(--gold);
  background: rgba(20, 34, 29, 0.8);
}
.episode-number {
  font-size: 10.5px;
  letter-spacing: 0.12em;
  color: var(--gold-dim);
}
.episode-title {
  font-size: 12.5px;
  letter-spacing: 0.03em;
  color: #dfe6e0;
}
.episode-summary {
  font-size: 11.5px;
  line-height: 1.48;
  color: var(--text-mute);
}
.episode-duration {
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--text-mute);
  padding-top: 3px;
  border-top: 1px dashed rgba(36, 53, 46, 0.6);
}
.episode-card-current {
  border-color: var(--gold-dim);
  border-left-color: var(--gold-bright);
  background: linear-gradient(180deg, rgba(176, 138, 62, 0.15) 0%, rgba(20, 34, 29, 0.75) 100%);
  animation: clue-pulse 2.8s ease-in-out infinite;
}
.episode-card-current .episode-number {
  color: var(--gold-bright);
}
.episode-card-current .episode-title {
  color: #f3e6c4;
}
.comments-shell {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(18, 33, 28, 0.5) 0%, rgba(10, 17, 14, 0.68) 100%);
}
.comments-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 10px;
  align-items: start;
}
.comments-column {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
}
.comments-column:nth-child(2) {
  margin-top: 14px;
}
.comment-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 10px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(9, 16, 13, 0.72);
  position: relative;
}
.comment-card::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: rgba(176, 138, 62, 0.45);
}
.comment-nickname {
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--gold);
}
.comment-text {
  font-size: 12px;
  line-height: 1.55;
  color: var(--text-dim);
}
.rec-region {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(36, 28, 20, 0.42) 0%, rgba(10, 17, 14, 0.7) 100%);
}
.rec-heading {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--gold);
  padding-bottom: 7px;
  border-bottom: 1px solid var(--line);
}
.rec-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(148px, 1fr);
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dim) transparent;
  -webkit-overflow-scrolling: touch;
}
.rec-track::-webkit-scrollbar {
  height: 5px;
}
.rec-track::-webkit-scrollbar-track {
  background: rgba(26, 40, 34, 0.6);
}
.rec-track::-webkit-scrollbar-thumb {
  background: var(--gold-dim);
}
.rec-item {
  min-width: 0;
}
.rec-item a[data-runtime="recommendation"], a[data-runtime="recommendation"] {
  display: flex;
  flex-direction: column;
  gap: 4px;
  height: 100%;
  padding: 6px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(9, 16, 13, 0.72);
  color: var(--text-dim);
  text-decoration: none;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}
a[data-runtime="recommendation"]:hover {
  border-color: var(--gold-dim);
  background: rgba(28, 42, 36, 0.85);
  transform: translateY(-2px);
}
.rec-item a[data-runtime="recommendation"] img, [data-runtime="recommendation"] img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius);
  background: #0a0f0d;
  filter: saturate(0.85) contrast(1.05) brightness(0.9);
}
[data-runtime="recommendation"] [data-runtime="name"] {
  font-size: 12px;
  letter-spacing: 0.03em;
  color: #dde4de;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
[data-runtime="recommendation"] [data-runtime="blurb"] {
  font-size: 11px;
  line-height: 1.45;
  color: var(--text-mute);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.site-footer {
  margin-top: 6px;
  padding: 16px 14px 22px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(7, 13, 11, 0.4) 0%, rgba(4, 8, 7, 0.9) 100%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: color 0.16s ease, border-color 0.16s ease;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover {
  color: var(--gold-bright);
  border-bottom-color: var(--gold-dim);
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  padding: 8px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.friend-links-label {
  font-size: 11.5px;
  letter-spacing: 0.12em;
  color: var(--gold-dim);
  flex: 0 0 auto;
}
a.runtime-friend-link {
  font-size: 11.5px;
  letter-spacing: 0.02em;
  color: var(--text-mute);
  text-decoration: none;
  transition: color 0.16s ease;
}
a.runtime-friend-link:hover {
  color: var(--gold);
}
.footer-disclaimer {
  font-size: 11px;
  line-height: 1.6;
  color: var(--text-mute);
  max-width: 90ch;
}
.player-shell.is-theater .player-controls {
  border-top-color: var(--gold-dim);
}
.player-shell.is-light-off .player-controls {
  background: #000;
}
.player-controls button.is-active {
  color: var(--gold-bright);
}
.player-shell.is-theater video, .player-shell.is-light-off video {
  outline: none;
}
@media (max-width: 1000px) {.track-episode-shell {
    grid-template-columns: minmax(0, 1fr);
  }
.timeline-list::before {
    left: 3px;
  }
.episode-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
.overview-body {
    grid-template-columns: minmax(0, 168px) minmax(0, 1fr);
    gap: 14px;
  }}
@media (max-width: 720px) {.page-main {
    padding: 10px 10px 18px;
    gap: 11px;
  }
.overview-shell, .timeline-panel, .episodes-panel, .comments-shell, .rec-region {
    padding: 10px;
  }
.overview-body {
    grid-template-columns: minmax(0, 1fr);
  }
.overview-poster-wrap {
    width: min(220px, 62%);
    margin: 0 auto;
  }
.overview-title {
    font-size: 19px;
  }
.episode-grid {
    grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
    gap: 6px;
  }
.comments-column:nth-child(2) {
    margin-top: 0;
  }
.rec-track {
    grid-auto-columns: minmax(140px, 1fr);
  }
.player-controls {
    gap: 5px;
    padding: 7px 8px;
  }
.player-controls input[data-player-action="progress"] {
    flex: 1 1 100%;
    min-width: 0;
  }}
@media (max-width: 460px) {body {
    font-size: 12.5px;
  }
.header-inner {
    gap: 9px;
    padding: 6px 10px;
  }
.site-brand, a[data-contract="site-name"] {
    font-size: 14px;
  }
.category-bar {
    gap: 5px;
  }
a.runtime-category {
    font-size: 11.5px;
    padding: 2px 6px;
  }
.overview-poster-wrap {
    width: min(200px, 70%);
  }
.cast-card {
    width: 56px;
  }
.cast-avatar {
    width: 40px;
    height: 40px;
  }
.episode-grid {
    grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
  }
.rec-track {
    grid-auto-columns: minmax(132px, 1fr);
  }
.player-controls button {
    font-size: 11px;
    padding: 3px 7px;
  }}

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}
