:root {
  --concrete: #8d8f8a;
  --concrete-dark: #5f625e;
  --concrete-deep: #3f423e;
  --chalk: #e8e6de;
  --chalk-dim: #c8c6bc;
  --typhoon: #2d3b40;
  --typhoon-deep: #1d282c;
  --typhoon-mid: #37484e;
  --orange: #c07a4a;
  --orange-dim: #a3653b;
  --ink: #1f2320;
  --paper: #d6d4cb;
  --line: rgba(31, 35, 32, 0.22);
  --line-soft: rgba(31, 35, 32, 0.12);
  --font-hand: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
  --font-body: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
  --gap-xs: 4px;
  --gap-sm: 8px;
  --gap-md: 12px;
  --gap-lg: 18px;
  --radius: 3px;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink);
  background-color: #b4b3ab;
  background-image:
    radial-gradient(circle at 18% 12%, rgba(45, 59, 64, 0.16), transparent 42%),
    radial-gradient(circle at 82% 78%, rgba(45, 59, 64, 0.14), transparent 46%),
    linear-gradient(168deg, #bcbbb3 0%, #a9a8a0 38%, #b8b6ae 62%, #9d9c94 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h2, h3, p, ul, ol, dl, dd {
  margin: 0;
  padding: 0;
}
ul, ol {
  list-style: none;
}
img {
  display: block;
  max-width: 100%;
  border: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button, input, video {
  font: inherit;
  color: inherit;
}
button {
  cursor: pointer;
  background: none;
  border: 0;
}
::selection {
  background: rgba(192, 122, 74, 0.35);
  color: var(--typhoon-deep);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(180deg, rgba(45, 59, 64, 0.96), rgba(29, 40, 44, 0.94));
  border-bottom: 1px solid rgba(232, 230, 222, 0.18);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.header-bar {
  display: flex;
  align-items: center;
  gap: var(--gap-lg);
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 16px;
}
a[data-contract="site-name"].site-brand {
  font-family: var(--font-hand);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #e8e6de;
  text-decoration: none;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
  flex: 0 0 auto;
  white-space: nowrap;
}
a[data-contract="site-name"].site-brand:hover {
  color: var(--orange);
}
.category-rail {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2px 10px;
  flex: 1 1 auto;
  min-width: 0;
}
a.runtime-category {
  font-size: 13px;
  letter-spacing: 0.06em;
  white-space: nowrap;
  color: rgba(232, 230, 222, 0.72);
  text-decoration: none;
  padding: 2px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
a.runtime-category:hover, a.runtime-category:focus-visible {
  color: var(--orange);
  border-bottom-color: var(--orange-dim);
  text-decoration: none;
}
.movie-detail {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 16px 22px;
  display: flex;
  flex-direction: column;
  gap: var(--gap-lg);
}
.player-shell {
  position: relative;
  width: 100%;
  min-width: 0;
}
.player-shell.is-theater {
  width: 100%;
}
.player-frame {
  position: relative;
  width: 100%;
  min-width: 0;
  background: var(--typhoon-deep);
  border: 1px solid rgba(29, 40, 44, 0.55);
  box-shadow: 0 6px 18px rgba(29, 40, 44, 0.28);
  overflow: hidden;
}
.player-shell.is-lights-off .player-frame {
  box-shadow: 0 0 0 9999px rgba(12, 16, 18, 0.94);
}
.player-frame video {
  display: block;
  width: 100%;
  background: #111;
  object-fit: cover;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  padding: 7px 9px;
  background: linear-gradient(180deg, rgba(55, 72, 78, 0.96), rgba(29, 40, 44, 0.98));
  border-top: 1px solid rgba(232, 230, 222, 0.12);
}
.ctrl-btn {
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 4px 9px;
  color: rgba(232, 230, 222, 0.82);
  background: rgba(232, 230, 222, 0.07);
  border: 1px solid rgba(232, 230, 222, 0.2);
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.ctrl-btn:hover {
  background: rgba(232, 230, 222, 0.16);
  color: #f2f0e8;
}
.ctrl-btn.is-active {
  color: var(--typhoon-deep);
  background: var(--orange);
  border-color: var(--orange-dim);
}
.ctrl-btn.is-playing, .ctrl-btn.play {
  color: #f2f0e8;
  border-color: var(--orange-dim);
}
.ctrl-btn.is-paused, .ctrl-btn.mute, .ctrl-btn.speed, .ctrl-btn.pip, .ctrl-btn.fullscreen, .ctrl-btn.theater, .ctrl-btn.light {
  color: rgba(232, 230, 222, 0.82);
}
.ctrl-progress {
  flex: 1 1 180px;
  min-width: 120px;
  height: 4px;
  margin: 0;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  background: rgba(232, 230, 222, 0.22);
  border-radius: 2px;
  cursor: pointer;
}
.ctrl-progress::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--orange);
  border: 1px solid var(--orange-dim);
}
.ctrl-progress::-moz-range-thumb {
  width: 11px;
  height: 11px;
  border: 1px solid var(--orange-dim);
  border-radius: 50%;
  background: var(--orange);
}
.ctrl-progress.progress {
  flex: 1 1 180px;
}
.ctrl-volume {
  flex: 0 1 90px;
  min-width: 64px;
  height: 4px;
  margin: 0;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  background: rgba(232, 230, 222, 0.22);
  border-radius: 2px;
  cursor: pointer;
}
.ctrl-volume.volume {
  flex: 0 1 90px;
}
.ctrl-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--chalk-dim);
  border: 1px solid var(--concrete-dark);
}
.ctrl-volume::-moz-range-thumb {
  width: 11px;
  height: 11px;
  border: 1px solid var(--concrete-dark);
  border-radius: 50%;
  background: var(--chalk-dim);
}
.overview-unit {
  position: relative;
  display: grid;
  grid-template-columns: 186px minmax(0, 1fr);
  grid-template-areas:
    "poster info"
    "poster cast"
    "synopsis synopsis"
    "status status"
    "facts facts";
  align-items: start;
  gap: var(--gap-md) var(--gap-lg);
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(214, 212, 203, 0.94), rgba(200, 198, 188, 0.9)),
    repeating-linear-gradient(115deg, rgba(45, 59, 64, 0.05) 0 2px, transparent 2px 7px);
  border: 1px solid rgba(63, 66, 62, 0.4);
  border-radius: var(--radius);
  box-shadow: 0 4px 14px rgba(29, 40, 44, 0.18), inset 0 1px 0 rgba(232, 230, 222, 0.55);
}
.overview-poster-wrap {
  grid-area: poster;
  align-self: start;
  width: 100%;
  line-height: 0;
  border: 1px solid rgba(63, 66, 62, 0.45);
  background: var(--concrete-deep);
  box-shadow: 0 2px 8px rgba(29, 40, 44, 0.24);
}
.overview-poster {
  width: 100%;
  aspect-ratio: 2 / 3;
  height: auto;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.04) brightness(0.97);
}
.overview-info {
  grid-area: info;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 2px;
}
.overview-title {
  font-family: var(--font-hand);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.25;
  color: var(--typhoon-deep);
  text-shadow: 0 1px 0 rgba(232, 230, 222, 0.7);
}
.overview-tagline {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--orange-dim);
  padding-left: 10px;
  border-left: 2px solid rgba(192, 122, 74, 0.55);
}
.section-heading {
  font-family: var(--font-hand);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--typhoon-mid);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
}
.section-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 28px;
  height: 1px;
  background: var(--orange);
}
.cast-rail {
  grid-area: cast;
  align-self: start;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
}
.cast-list {
  display: flex;
  gap: var(--gap-sm);
  overflow-x: auto;
  padding-bottom: 4px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
.cast-list::-webkit-scrollbar {
  height: 5px;
}
.cast-list::-webkit-scrollbar-thumb {
  background: rgba(63, 66, 62, 0.35);
  border-radius: 3px;
}
.cast-card {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 128px;
  max-width: 168px;
  padding: 6px 9px;
  scroll-snap-align: start;
  background: rgba(232, 230, 222, 0.5);
  border-left: 2px solid rgba(55, 72, 78, 0.55);
}
.cast-name {
  font-family: var(--font-hand);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--typhoon-deep);
}
.cast-note {
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--concrete-dark);
}
.synopsis-block {
  grid-area: synopsis;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
  padding-top: 4px;
}
.seo-line {
  font-size: 13.5px;
  line-height: 1.68;
  color: var(--ink);
  padding: 8px 10px;
  background: rgba(232, 230, 222, 0.46);
  border-left: 2px solid rgba(192, 122, 74, 0.5);
  text-align: justify;
}
.synopsis-paras {
  column-count: 2;
  column-gap: var(--gap-lg);
  column-rule: 1px solid var(--line-soft);
}
.synopsis-paras p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--concrete-deep);
  margin-bottom: 7px;
  text-align: justify;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
}
.synopsis-paras p:last-child {
  margin-bottom: 0;
}
.episode-status {
  grid-area: status;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 12px;
  padding: 7px 10px;
  background: linear-gradient(90deg, rgba(55, 72, 78, 0.14), rgba(55, 72, 78, 0.03));
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.status-current {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--orange-dim);
  padding-right: 12px;
  border-right: 1px solid var(--line);
}
.status-total {
  font-size: 12.5px;
  letter-spacing: 0.05em;
  color: var(--concrete-dark);
}
.detail-facts {
  grid-area: facts;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
}
.facts-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 1px 0;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}
.fact {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 5px 8px;
  background: rgba(232, 230, 222, 0.52);
  min-width: 0;
}
.fact dt {
  flex: 0 0 auto;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--concrete-dark);
}
.fact dd {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 12.5px;
  color: var(--typhoon-deep);
  word-break: break-word;
}
.timeline-section {
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
  padding: 12px 14px 14px;
  background: linear-gradient(180deg, rgba(55, 72, 78, 0.9), rgba(29, 40, 44, 0.92));
  border: 1px solid rgba(29, 40, 44, 0.6);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(232, 230, 222, 0.1);
}
.timeline-section > .section-heading {
  color: rgba(232, 230, 222, 0.86);
  border-bottom-color: rgba(232, 230, 222, 0.16);
}
.timeline-track {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}
.timeline-track::-webkit-scrollbar {
  height: 6px;
}
.timeline-track::-webkit-scrollbar-track {
  background: rgba(232, 230, 222, 0.08);
  border-radius: 3px;
}
.timeline-track::-webkit-scrollbar-thumb {
  background: rgba(232, 230, 222, 0.28);
  border-radius: 3px;
}
.timeline-list {
  display: flex;
  align-items: flex-start;
  gap: 0;
  min-width: max-content;
  padding: 4px 2px 0;
  position: relative;
}
.timeline-list::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(232, 230, 222, 0.08), rgba(232, 230, 222, 0.3) 12%, rgba(232, 230, 222, 0.3) 88%, rgba(232, 230, 222, 0.08));
}
.timeline-node {
  position: relative;
  flex: 0 0 auto;
  width: 158px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 0 12px 0 0;
  border-right: 1px dashed rgba(232, 230, 222, 0.16);
  margin-right: 12px;
}
.timeline-node:last-child {
  border-right: 0;
  margin-right: 0;
  padding-right: 0;
}
.node-dot {
  position: relative;
  z-index: 1;
  display: block;
  width: 9px;
  height: 9px;
  margin: 8px 0 6px;
  border-radius: 50%;
  background: rgba(232, 230, 222, 0.55);
  box-shadow: 0 0 0 3px rgba(45, 59, 64, 0.9), 0 0 6px rgba(232, 230, 222, 0.28);
}
.node-time {
  font-family: var(--font-hand);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(232, 230, 222, 0.55);
}
.node-label {
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(232, 230, 222, 0.8);
}
.timeline-node.is-current .node-dot {
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(45, 59, 64, 0.9), 0 0 10px rgba(192, 122, 74, 0.6);
}
.timeline-node.is-current .node-time {
  color: var(--orange);
}
.timeline-node.is-current .node-label {
  color: #f2f0e8;
}
.episodes-section {
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
}
.episode-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gap-sm) var(--gap-lg);
  align-items: start;
}
.episode-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: var(--gap-md);
  align-items: start;
  padding: 9px 10px;
  background: rgba(214, 212, 203, 0.62);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.episode-item:hover {
  background: rgba(232, 230, 222, 0.78);
  border-color: rgba(63, 66, 62, 0.35);
}
.episode-index {
  font-family: var(--font-hand);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--concrete-dark);
  padding-top: 2px;
  padding-right: 8px;
  border-right: 2px solid rgba(55, 72, 78, 0.28);
  white-space: nowrap;
}
.episode-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.episode-title {
  font-family: var(--font-hand);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--typhoon-deep);
}
.episode-summary {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--concrete-deep);
  text-align: justify;
}
.episode-duration {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--concrete);
  padding-top: 1px;
}
.episode-item.is-current {
  background: rgba(232, 230, 222, 0.9);
  border: 1px solid var(--orange-dim);
  box-shadow: inset 0 0 0 1px rgba(192, 122, 74, 0.16);
}
.episode-item.is-current .episode-index {
  color: var(--orange-dim);
  border-right-color: rgba(192, 122, 74, 0.6);
}
.episode-item.is-current .episode-title {
  color: var(--orange-dim);
}
.comments-section {
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
}
.comments-masonry {
  column-count: 2;
  column-gap: var(--gap-md);
}
.comment-card {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  display: block;
  margin-bottom: var(--gap-md);
  padding: 8px 10px;
  background: rgba(232, 230, 222, 0.66);
  border: 1px solid var(--line-soft);
  border-left: 2px solid rgba(55, 72, 78, 0.4);
  border-radius: var(--radius);
}
.comment-card:nth-child(3n) {
  border-left-color: rgba(192, 122, 74, 0.55);
}
.comment-nick {
  display: block;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--concrete-dark);
  margin-bottom: 3px;
}
.comment-text {
  font-size: 12.5px;
  line-height: 1.62;
  color: var(--ink);
  text-align: justify;
}
.recommend-region {
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
}
.recommend-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap-md);
  align-items: start;
}
a.recommend-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  padding: 6px;
  background: rgba(214, 212, 203, 0.72);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  color: var(--ink);
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
a.recommend-card:hover, a.recommend-card:focus-visible {
  background: rgba(232, 230, 222, 0.92);
  border-color: rgba(192, 122, 74, 0.6);
  text-decoration: none;
}
[data-runtime="recommendation"] img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  display: block;
  background: var(--concrete-dark);
  filter: saturate(0.78) contrast(1.03);
}
.recommend-pic {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.recommend-name {
  font-family: var(--font-hand);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--typhoon-deep);
  line-height: 1.4;
}
.recommend-blurb {
  font-size: 11.5px;
  line-height: 1.55;
  color: var(--concrete-dark);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.site-footer {
  margin-top: 10px;
  background: linear-gradient(180deg, rgba(45, 59, 64, 0.95), rgba(29, 40, 44, 0.98));
  border-top: 1px solid rgba(232, 230, 222, 0.14);
  color: rgba(232, 230, 222, 0.66);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-disclaimer {
  font-size: 11.5px;
  line-height: 1.6;
  color: rgba(232, 230, 222, 0.5);
  max-width: 900px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 16px;
}
a[data-contract="footer-home"].footer-link, a[data-contract="footer-sitemap"].footer-link {
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: rgba(232, 230, 222, 0.78);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}
a[data-contract="footer-home"].footer-link:hover, a[data-contract="footer-sitemap"].footer-link:hover {
  color: var(--orange);
  border-bottom-color: var(--orange-dim);
  text-decoration: none;
}
.friend-links {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 3px 12px;
  padding-top: 6px;
  border-top: 1px solid rgba(232, 230, 222, 0.1);
}
.friend-links-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(232, 230, 222, 0.42);
  white-space: nowrap;
}
a.runtime-friend-link {
  font-size: 11.5px;
  color: rgba(232, 230, 222, 0.6);
  text-decoration: none;
  white-space: nowrap;
}
a.runtime-friend-link:hover {
  color: var(--orange);
  text-decoration: underline;
  text-decoration-color: var(--orange-dim);
}
@media (max-width: 980px) {.overview-unit {
    grid-template-columns: 158px minmax(0, 1fr);
  }
.episode-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--gap-sm) var(--gap-md);
  }
.synopsis-paras {
    column-count: 2;
  }}
@media (max-width: 760px) {.overview-unit {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "info"
      "poster"
      "cast"
      "synopsis"
      "status"
      "facts";
  }
.overview-poster-wrap {
    max-width: 220px;
  }
.overview-title {
    font-size: 21px;
  }
.episode-list {
    grid-template-columns: minmax(0, 1fr);
  }
.comments-masonry {
    column-count: 1;
  }
.recommend-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.synopsis-paras {
    column-count: 1;
    column-rule: 0;
  }
.movie-detail {
    gap: 14px;
    padding: 12px 12px 18px;
  }
.header-bar {
    gap: var(--gap-sm);
    padding: 7px 12px;
  }}
@media (max-width: 520px) {.recommend-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.player-controls {
    gap: 5px 6px;
    padding: 6px 7px;
  }
.ctrl-btn {
    padding: 4px 7px;
    font-size: 11.5px;
  }
.ctrl-progress {
    flex: 1 1 100%;
    order: 10;
  }
.ctrl-volume {
    flex: 1 1 100%;
    order: 11;
  }
.episode-item {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: var(--gap-sm);
  }
.overview-poster-wrap {
    max-width: 180px;
  }}

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}
