*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body, h1, h2, h3, p, dl, dd, ul, ol, li {
  margin: 0;
  padding: 0;
}
ul, ol {
  list-style: none;
}
img, video {
  display: block;
  max-width: 100%;
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}
a {
  color: inherit;
}
:root {
  --ink: #0a1018;
  --ink-2: #111a26;
  --panel: #131e2b;
  --panel-2: #16232f;
  --line: #24374a;
  --line-soft: #1b2a3a;
  --text: #dbe6f1;
  --text-dim: #8fa3b8;
  --text-mute: #64788d;
  --warm: #ff8a3d;
  --warm-deep: #e2621b;
  --cold: #4a6a86;
  --red-glow: #ff3d3d;
  --radius: 3px;
  --gap: 10px;
  --pad: 12px;
  --font-sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", "Source Han Sans SC", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: "SFMono-Regular", "JetBrains Mono", Consolas, "Liberation Mono", Menlo, monospace;
}
body {
  font-family: var(--font-sans);
  background:
    radial-gradient(1200px 600px at 78% -8%, rgba(255, 61, 61, 0.12), transparent 62%),
    radial-gradient(900px 520px at 6% 4%, rgba(74, 106, 134, 0.18), transparent 60%),
    linear-gradient(180deg, #070c13 0%, #0a1018 42%, #080d14 100%);
  background-attachment: fixed;
  color: var(--text);
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.is-lights-off {
  background: #04070b;
}
body.is-lights-off .page-main {
  filter: brightness(0.62) saturate(0.8);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 9px clamp(12px, 3vw, 28px);
  background: linear-gradient(180deg, rgba(7, 12, 19, 0.96), rgba(7, 12, 19, 0.82));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
a[data-contract="site-name"] {
  color: var(--text);
  text-decoration: none;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.06em;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-right: 14px;
  border-right: 1px solid var(--line);
}
a[data-contract="site-name"]::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--warm);
  box-shadow: 0 0 10px 2px rgba(255, 138, 61, 0.65);
  transform: rotate(45deg);
  flex: 0 0 auto;
}
a[data-contract="site-name"]:hover, a[data-contract="site-name"]:focus-visible {
  color: #fff;
}
.category-strip {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1 1 200px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 1px 0;
}
.category-strip::-webkit-scrollbar {
  display: none;
}
a.runtime-category {
  white-space: nowrap;
  display: inline-block;
  flex: 0 0 auto;
  padding: 4px 10px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--cold);
  text-decoration: none;
  background: rgba(74, 106, 134, 0.1);
  border: 1px solid var(--line-soft);
  border-radius: 2px;
  transition: color 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}
a.runtime-category:hover, a.runtime-category:focus-visible {
  color: var(--text);
  background: rgba(74, 106, 134, 0.22);
  border-color: var(--cold);
}
.page-main {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(12px, 2.2vw, 22px) clamp(12px, 3vw, 26px) 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section-heading {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: var(--text);
  text-transform: none;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
}
.section-heading::before {
  content: "";
  width: 3px;
  height: 15px;
  background: linear-gradient(180deg, var(--warm), var(--warm-deep));
  flex: 0 0 auto;
}
.hero-cabin {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.35fr) minmax(0, 1fr);
  grid-template-areas:
    "poster info synopsis"
    "cast cast cast";
  gap: 16px 18px;
  padding: 16px;
  background:
    radial-gradient(560px 260px at 88% 0%, rgba(255, 61, 61, 0.16), transparent 70%),
    linear-gradient(160deg, #16232f 0%, #0e1721 58%, #0b131c 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.hero-cabin::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.024) 0 1px,
    transparent 1px 46px
  );
  pointer-events: none;
}
.hero-poster-frame {
  grid-area: poster;
  align-self: start;
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: 2px;
  overflow: hidden;
  background: #0c141d;
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px -16px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(255, 138, 61, 0.08) inset;
}
.hero-poster-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  filter: saturate(0.92) contrast(1.06);
}
.hero-poster-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 12, 19, 0) 46%, rgba(7, 12, 19, 0.72) 100%),
    radial-gradient(120% 70% at 20% 10%, rgba(255, 61, 61, 0.1), transparent 60%);
  pointer-events: none;
}
.hero-info-strip {
  grid-area: info;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-self: start;
}
.hero-title {
  font-size: clamp(22px, 3.4vw, 34px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: #fff;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.75);
}
.hero-tagline {
  font-size: 13px;
  color: var(--warm);
  font-weight: 600;
  letter-spacing: 0.04em;
  padding-left: 10px;
  border-left: 2px solid var(--warm);
  line-height: 1.4;
}
.hero-player-wrap {
  position: relative;
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.hero-player-wrap video[data-contract="player"] {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #05080c;
  border: 1px solid var(--line);
  border-radius: 2px;
  object-fit: cover;
}
.hero-player-wrap.is-theater {
  position: fixed;
  inset: 0;
  z-index: 90;
  margin: 0;
  padding: 0;
  background: #000;
  justify-content: center;
  align-items: center;
}
.hero-player-wrap.is-theater video[data-contract="player"] {
  width: min(100vw, 177.78vh);
  height: auto;
  border: 0;
  border-radius: 0;
}
.hero-player-wrap.is-theater .player-controls {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  max-width: min(100% - 24px, 900px);
  background: rgba(5, 8, 12, 0.86);
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: 6px;
  background: rgba(11, 19, 28, 0.72);
  border: 1px solid var(--line-soft);
  border-radius: 2px;
}
.player-controls button {
  flex: 0 0 auto;
  padding: 4px 9px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text-dim);
  background: rgba(74, 106, 134, 0.12);
  border: 1px solid var(--line-soft);
  border-radius: 2px;
  transition: color 0.14s ease, background 0.14s ease, border-color 0.14s ease;
}
.player-controls button:hover {
  color: #fff;
  background: rgba(74, 106, 134, 0.3);
  border-color: var(--cold);
}
.player-controls button.is-active {
  color: #0a1018;
  background: var(--warm);
  border-color: var(--warm);
  font-weight: 800;
}
.player-controls button:focus-visible {
  outline: 2px solid var(--warm);
  outline-offset: 1px;
}
.episode-status {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 7px 10px;
  background: rgba(74, 106, 134, 0.09);
  border: 1px solid var(--line-soft);
  border-left: 2px solid var(--warm);
  border-radius: 2px;
}
.status-current {
  font-size: 13px;
  font-weight: 800;
  color: var(--warm);
  letter-spacing: 0.03em;
}
.status-total {
  font-size: 12px;
  color: var(--text-mute);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
  padding-left: 8px;
  border-left: 1px solid var(--line);
}
.hero-meta {
  min-width: 0;
}
.detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line-soft);
}
.detail-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 5px 8px 5px 0;
  min-width: 0;
  border-bottom: 1px solid var(--line-soft);
}
.detail-row:nth-child(odd) {
  padding-right: 12px;
  border-right: 1px solid var(--line-soft);
}
.detail-row:nth-child(even) {
  padding-left: 12px;
}
.detail-row dt {
  flex: 0 0 auto;
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.06em;
}
.detail-row dd {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
  overflow-wrap: anywhere;
}
.hero-synopsis {
  grid-area: synopsis;
  min-width: 0;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  background: linear-gradient(180deg, rgba(22, 35, 47, 0.72), rgba(14, 23, 33, 0.5));
  border: 1px solid var(--line-soft);
  border-radius: 2px;
}
.synopsis-lead {
  font-size: 12.5px;
  font-weight: 900;
  color: var(--warm);
  letter-spacing: 0.08em;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--line);
}
.synopsis-para {
  font-size: 12.5px;
  line-height: 1.72;
  color: var(--text-dim);
  overflow-wrap: anywhere;
}
.synopsis-para:first-of-type {
  color: var(--text);
}
.cast-strip {
  grid-area: cast;
  min-width: 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.cast-heading {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: var(--text-mute);
  margin-bottom: 8px;
}
.cast-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}
.cast-cell {
  position: relative;
  min-width: 0;
  aspect-ratio: 3 / 4;
  border-radius: 2px;
  overflow: hidden;
  background:
    radial-gradient(80% 60% at 50% 26%, rgba(74, 106, 134, 0.42), transparent 70%),
    linear-gradient(170deg, #1d2f41 0%, #101a25 70%, #0b131c 100%);
  border: 1px solid var(--line);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.cast-cell::before {
  content: "";
  position: absolute;
  top: 16%;
  left: 50%;
  width: 34%;
  aspect-ratio: 1;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(143, 163, 184, 0.22);
  box-shadow: 0 0 0 1px rgba(143, 163, 184, 0.12);
}
.cast-cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 12, 19, 0) 42%, rgba(7, 12, 19, 0.9) 100%);
  pointer-events: none;
}
.cast-name {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 6px 4px 5px;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.9);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.timeline-section {
  min-width: 0;
}
.timeline-track {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}
.timeline-track::-webkit-scrollbar {
  height: 6px;
}
.timeline-track::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 3px;
}
.timeline-node {
  position: relative;
  flex: 0 0 auto;
  width: clamp(148px, 17vw, 196px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px 11px 11px;
  background: linear-gradient(180deg, rgba(22, 35, 47, 0.76), rgba(12, 20, 29, 0.6));
  border: 1px solid var(--line-soft);
  border-top: 2px solid var(--cold);
  border-radius: 2px;
  transition: border-color 0.16s ease, background 0.16s ease, transform 0.16s ease;
}
.timeline-node::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cold);
  box-shadow: 0 0 0 3px rgba(74, 106, 134, 0.16);
}
.node-timecode {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--cold);
}
.node-label {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--text-dim);
  overflow-wrap: anywhere;
}
.timeline-node-active {
  border-color: var(--warm);
  border-top-color: var(--warm);
  background: linear-gradient(180deg, rgba(255, 138, 61, 0.16), rgba(226, 98, 27, 0.06));
  box-shadow: 0 0 22px -6px rgba(255, 138, 61, 0.5);
}
.timeline-node-active::before {
  background: var(--warm);
  box-shadow: 0 0 0 3px rgba(255, 138, 61, 0.22), 0 0 12px 2px rgba(255, 138, 61, 0.7);
}
.timeline-node-active .node-timecode {
  color: var(--warm);
}
.timeline-node-active .node-label {
  color: var(--text);
  font-weight: 600;
}
.episodes-section {
  min-width: 0;
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.episode-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas:
    "num title"
    "num summary"
    "num dur";
  align-content: start;
  gap: 3px 12px;
  padding: 11px 12px 11px 14px;
  background: linear-gradient(180deg, rgba(22, 35, 47, 0.6), rgba(11, 19, 28, 0.48));
  border: 1px solid var(--line-soft);
  border-left: 2px solid var(--line);
  border-radius: 2px;
  transition: border-color 0.16s ease, background 0.16s ease;
}
.episode-card:hover {
  border-left-color: var(--cold);
  background: linear-gradient(180deg, rgba(22, 35, 47, 0.85), rgba(11, 19, 28, 0.6));
}
.episode-number {
  grid-area: num;
  align-self: start;
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--cold);
  padding-top: 2px;
  min-width: 42px;
}
.episode-title {
  grid-area: title;
  font-size: 14px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1.3;
  overflow-wrap: anywhere;
}
.episode-summary {
  grid-area: summary;
  font-size: 12px;
  line-height: 1.62;
  color: var(--text-dim);
  overflow-wrap: anywhere;
}
.episode-duration {
  grid-area: dur;
  justify-self: start;
  margin-top: 5px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--text-mute);
  padding: 2px 7px;
  background: rgba(74, 106, 134, 0.12);
  border: 1px solid var(--line-soft);
  border-radius: 2px;
}
.episode-card-current {
  border-color: var(--warm);
  border-left-color: var(--warm);
  background: linear-gradient(180deg, rgba(255, 138, 61, 0.14), rgba(226, 98, 27, 0.05));
  box-shadow: 0 0 26px -10px rgba(255, 138, 61, 0.6);
}
.episode-card-current .episode-number {
  color: var(--warm);
  text-shadow: 0 0 18px rgba(255, 138, 61, 0.5);
}
.episode-card-current .episode-duration {
  color: var(--warm);
  border-color: rgba(255, 138, 61, 0.4);
  background: rgba(255, 138, 61, 0.12);
}
.comments-section {
  min-width: 0;
}
.comment-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 22px;
  border-top: 1px solid var(--line);
}
.comment-item {
  min-width: 0;
  padding: 10px 0 11px;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.comment-nickname {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: lowercase;
  color: var(--warm);
}
.comment-text {
  font-size: 12.5px;
  line-height: 1.68;
  color: var(--text-dim);
  overflow-wrap: anywhere;
}
.recommend-region {
  min-width: 0;
}
.recommend-heading {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.recommend-heading::before {
  content: "";
  width: 14px;
  height: 2px;
  background: var(--warm);
  flex: 0 0 auto;
}
.recommend-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 8px;
  align-items: start;
}
a[data-runtime="recommendation"] {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
  padding: 7px;
  background: linear-gradient(180deg, rgba(22, 35, 47, 0.62), rgba(11, 19, 28, 0.5));
  border: 1px solid var(--line-soft);
  border-radius: 2px;
  color: var(--text-dim);
  text-decoration: none;
  transition: border-color 0.16s ease, background 0.16s ease, transform 0.16s ease;
}
a[data-runtime="recommendation"]:hover, a[data-runtime="recommendation"]:focus-visible {
  border-color: var(--cold);
  background: linear-gradient(180deg, rgba(22, 35, 47, 0.9), rgba(11, 19, 28, 0.7));
  transform: translateY(-1px);
}
a[data-runtime="recommendation"] img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  border-radius: 1px;
  background: #0a1018;
  filter: saturate(0.9) contrast(1.05);
}
a[data-runtime="recommendation"] [data-runtime="name"] {
  font-size: 12.5px;
  font-weight: 800;
  color: #fff;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
a[data-runtime="recommendation"] [data-runtime="blurb"] {
  font-size: 11.5px;
  line-height: 1.55;
  color: var(--text-mute);
  overflow-wrap: anywhere;
}
.site-footer {
  margin-top: 8px;
  padding: 16px clamp(12px, 3vw, 28px) 22px;
  background: linear-gradient(180deg, rgba(7, 12, 19, 0.5), rgba(5, 9, 14, 0.95));
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-disclaimer {
  font-size: 11.5px;
  line-height: 1.7;
  color: var(--text-mute);
  max-width: 78ch;
  overflow-wrap: anywhere;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding: 9px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
a[data-contract="footer-home"], a[data-contract="footer-sitemap"] {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.14s ease;
}
a[data-contract="footer-home"]:hover, a[data-contract="footer-sitemap"]:hover, a[data-contract="footer-home"]:focus-visible, a[data-contract="footer-sitemap"]:focus-visible {
  color: var(--warm);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-friends {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 12px;
}
.friends-label {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  color: var(--text-mute);
  flex: 0 0 auto;
  padding-right: 10px;
  border-right: 1px solid var(--line);
}
a.runtime-friend-link {
  font-size: 11.5px;
  color: var(--cold);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.14s ease;
}
a.runtime-friend-link:hover, a.runtime-friend-link:focus-visible {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 1020px) {.hero-cabin {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
    grid-template-areas:
      "poster info"
      "synopsis synopsis"
      "cast cast";
  }
.hero-poster-frame {
    max-width: 320px;
  }
.recommend-list {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }}
@media (max-width: 760px) {body {
    font-size: 13.5px;
  }
.hero-cabin {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "poster"
      "info"
      "synopsis"
      "cast";
    gap: 14px;
    padding: 13px;
  }
.hero-poster-frame {
    max-width: 260px;
    justify-self: start;
  }
.detail-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.cast-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.episode-grid {
    grid-template-columns: minmax(0, 1fr);
  }
.comment-stack {
    grid-template-columns: minmax(0, 1fr);
    column-gap: 0;
  }
.recommend-list {
    grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
  }}
@media (max-width: 520px) {.site-header {
    gap: 8px;
    padding: 8px 12px;
  }
a[data-contract="site-name"] {
    border-right: 0;
    padding-right: 0;
    font-size: 15px;
  }
.category-strip {
    flex-basis: 100%;
  }
.page-main {
    gap: 16px;
    padding: 12px 12px 24px;
  }
.hero-poster-frame {
    max-width: 220px;
  }
.hero-title {
    font-size: 23px;
  }
.detail-list {
    grid-template-columns: minmax(0, 1fr);
  }
.detail-row:nth-child(odd) {
    padding-right: 0;
    border-right: 0;
  }
.detail-row:nth-child(even) {
    padding-left: 0;
  }
.cast-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.player-controls button {
    font-size: 11px;
    padding: 4px 8px;
  }
.recommend-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.footer-friends {
    gap: 6px 10px;
  }}
@media (min-width: 1021px) {.recommend-region {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }}
@media (prefers-reduced-motion: reduce) {*, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }}

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}
