:root {
  --bg: #0b0e16;
  --bg-2: #0f1220;
  --surface: #141a2c;
  --surface-2: #1a2138;
  --line: rgba(255, 255, 255, 0.08);
  --text: #eef1f6;
  --muted: #9aa3b6;
  --muted-2: #6c7689;
  --gold: #e8a14d;
  --gold-2: #f0b96e;
  --ice: #7fc8e8;
  --ice-2: #a8dbf2;
  --danger: #e06c6c;
  --shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.65);
  --radius: 16px;
  --radius-sm: 10px;
  --max: 1180px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.85;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 45% at 12% -6%, rgba(127, 200, 232, 0.12), transparent 60%),
    radial-gradient(50% 40% at 92% 4%, rgba(232, 161, 77, 0.12), transparent 60%),
    radial-gradient(70% 60% at 50% 110%, rgba(127, 200, 232, 0.06), transparent 60%);
}

::selection {
  background: rgba(232, 161, 77, 0.35);
  color: #fff;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: #2a3350;
  border-radius: 999px;
  border: 2px solid var(--bg);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--gold);
  color: #1a1206;
  padding: 10px 18px;
  border-radius: 0 0 12px 0;
  font-weight: 700;
}

.skip-link:focus {
  left: 0;
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 120;
  background: linear-gradient(90deg, var(--ice), var(--gold));
  transition: width 0.1s linear;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 14px 30px;
  background: rgba(11, 14, 22, 0.82);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  font-size: 21px;
  font-weight: 800;
  color: #1a1206;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 8px 22px -8px rgba(232, 161, 77, 0.7);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 15px;
}

.brand-en {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.nav-links {
  display: flex;
  gap: 4px;
}

.nav-links a {
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 14px;
  color: var(--muted);
  transition: color 0.25s, background 0.25s;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-meta {
  font-size: 12.5px;
  color: var(--muted-2);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  content: "";
  position: relative;
  transition: 0.3s;
}

.menu-toggle span::before {
  position: absolute;
  top: -6px;
}

.menu-toggle span::after {
  position: absolute;
  top: 6px;
}

main {
  display: block;
}

.hero {
  position: relative;
  padding: 72px 30px 64px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(55% 70% at 70% 20%, rgba(232, 161, 77, 0.14), transparent 60%),
    radial-gradient(45% 60% at 12% 80%, rgba(127, 200, 232, 0.14), transparent 60%);
  filter: blur(4px);
}

.hero-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 56px;
  align-items: center;
}

.hero-cover {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: rotate(-1.5deg);
}

.hero-cover img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
}

.hero-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.hero-cover figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 34px 16px 14px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.86);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
}

.eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold-2);
  background: rgba(232, 161, 77, 0.12);
  border: 1px solid rgba(232, 161, 77, 0.28);
}

h1 {
  font-size: clamp(30px, 4.6vw, 52px);
  line-height: 1.22;
  font-weight: 900;
  letter-spacing: 0.01em;
  margin: 18px 0 14px;
}

h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--gold), var(--gold-2), var(--ice));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}

.hero-dek {
  color: var(--muted);
  font-size: 16px;
  max-width: 62ch;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s, color 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #1a1206;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 14px 32px -12px rgba(232, 161, 77, 0.8);
}

.btn-primary:hover {
  box-shadow: 0 18px 40px -12px rgba(232, 161, 77, 0.95);
}

.btn-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.play-ico {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 11px solid currentColor;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
  max-width: 480px;
}

.hero-meta div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 14px;
  border-left: 2px solid rgba(232, 161, 77, 0.5);
}

.hero-meta span {
  font-size: 12px;
  color: var(--muted-2);
  letter-spacing: 0.04em;
}

.hero-meta i {
  font-style: normal;
  font-weight: 600;
  font-size: 15.5px;
}

.layout {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px 30px 60px;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 48px;
}

.aside {
  position: sticky;
  top: 100px;
  align-self: start;
}

.toc {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}

.toc-title {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 14px;
}

.toc ol {
  list-style: none;
  counter-reset: toc;
}

.toc li {
  counter-increment: toc;
}

.toc li a {
  display: flex;
  gap: 12px;
  align-items: baseline;
  padding: 8px 0;
  font-size: 14px;
  color: var(--muted);
  border-bottom: 1px dashed var(--line);
  transition: color 0.2s, padding-left 0.2s;
}

.toc li:last-child a {
  border-bottom: none;
}

.toc li a::before {
  content: counter(toc, decimal-leading-zero);
  font-size: 11px;
  color: var(--gold);
  font-weight: 700;
}

.toc li a:hover {
  color: var(--text);
  padding-left: 4px;
}

.toc-aside {
  margin-top: 16px;
  background: linear-gradient(135deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  font-size: 13.5px;
  color: var(--muted);
}

.toc-aside b {
  display: block;
  color: var(--text);
  font-size: 14px;
  margin-bottom: 8px;
}

.toc-aside p + p {
  margin-top: 8px;
}

.article {
  min-width: 0;
}

section {
  margin-bottom: 56px;
}

.sec-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.sec-title .num {
  color: var(--gold);
  font-weight: 900;
  margin-right: 8px;
}

.lede {
  font-size: 17px;
  color: var(--ice-2);
  font-weight: 500;
  margin-bottom: 18px;
}

.article p {
  color: #c8d0de;
  margin-bottom: 16px;
}

.article p strong {
  color: var(--gold-2);
}

.act {
  font-size: 19px;
  font-weight: 700;
  margin: 34px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 12px;
}

.act span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #1a1206;
  background: linear-gradient(135deg, var(--ice), var(--ice-2));
  padding: 4px 10px;
  border-radius: 999px;
}

.figure {
  margin: 24px 0;
}

.figure img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.figure figcaption {
  margin-top: 10px;
  font-size: 13.5px;
  color: var(--muted);
  text-align: center;
}

.figure figcaption b {
  color: var(--gold);
}

.figure-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.check-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}

.check-list li {
  position: relative;
  padding: 14px 16px 14px 42px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  color: #c8d0de;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-weight: 800;
}

.check-list strong {
  color: var(--text);
}

.player-frame {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.player-screen {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #05070c;
  overflow: hidden;
}

.player-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 14px;
  background: radial-gradient(60% 60% at 50% 50%, transparent, rgba(5, 7, 12, 0.72));
}

.big-play {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  color: #1a1206;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 16px 40px -10px rgba(232, 161, 77, 0.9);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}

.big-play:hover {
  transform: scale(1.08);
  box-shadow: 0 20px 48px -10px rgba(232, 161, 77, 1);
}

.big-play .play-ico {
  border-left-width: 22px;
  border-top-width: 14px;
  border-bottom-width: 14px;
  margin-left: 6px;
}

.player-ep {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.player-info {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 14px 18px;
}

.badge {
  font-size: 12.5px;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--ice-2);
  background: rgba(127, 200, 232, 0.12);
  border: 1px solid rgba(127, 200, 232, 0.28);
}

.episode-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(112px, 1fr));
  gap: 12px;
}

.episode-grid a {
  position: relative;
  display: grid;
  place-items: center;
  padding: 16px 10px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform 0.2s var(--ease), border-color 0.2s, background 0.2s, color 0.2s;
}

.episode-grid a:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 161, 77, 0.5);
  background: var(--surface-2);
}

.episode-grid a.latest {
  color: #1a1206;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border-color: transparent;
  font-weight: 800;
}

.episode-grid a.latest::after {
  content: "最新";
  position: absolute;
  top: -9px;
  right: -6px;
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 999px;
  background: var(--danger);
  color: #fff;
  font-weight: 700;
}

.rating-wrap {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  margin-bottom: 26px;
}

.rating-total {
  text-align: center;
  padding-right: 26px;
  border-right: 1px solid var(--line);
}

.rating-total .score {
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(120deg, var(--gold), var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.rating-total .score small {
  font-size: 20px;
}

.rating-total p {
  font-size: 13px;
  color: var(--muted-2);
  margin: 8px 0;
}

.stars {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 16px;
}

.stars .empty {
  color: var(--muted-2);
}

.rating-detail .row {
  display: grid;
  grid-template-columns: 74px 1fr 40px;
  gap: 14px;
  align-items: center;
  margin-bottom: 12px;
}

.rating-detail .row:last-child {
  margin-bottom: 0;
}

.rating-detail .label {
  font-size: 13.5px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.rating-detail .label small {
  font-size: 10.5px;
  color: var(--muted-2);
  letter-spacing: 0.04em;
}

.bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.bar i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ice), var(--gold));
}

.rating-detail .val {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-2);
  text-align: right;
}

.comment {
  display: flex;
  gap: 14px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
}

.comment .av {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-weight: 800;
  color: #1a1206;
  background: linear-gradient(135deg, var(--ice), var(--ice-2));
}

.comment .head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}

.comment .head time {
  font-size: 12px;
  color: var(--muted-2);
  font-weight: 400;
}

.comment p {
  font-size: 14.5px;
  color: #c8d0de;
  margin: 0;
}

.tag-praise {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 999px;
  color: var(--gold-2);
  background: rgba(232, 161, 77, 0.14);
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform 0.2s var(--ease), border-color 0.2s, background 0.2s;
}

.share-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(232, 161, 77, 0.5);
  background: var(--surface-2);
}

.share-btn span {
  font-weight: 800;
  color: var(--gold);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 30px;
  transform: translate(-50%, 20px);
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #1a1206;
  background: var(--gold);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 200;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-item summary {
  padding: 16px 20px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 20px;
  color: var(--gold);
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item summary:hover {
  background: rgba(255, 255, 255, 0.03);
}

.faq-item p {
  padding: 0 20px 18px;
  font-size: 14.5px;
  color: var(--muted);
  margin: 0;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.rel-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s var(--ease), border-color 0.25s;
}

.rel-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 161, 77, 0.5);
}

.rel-card .pic {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.rel-card .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.rel-card:hover .pic img {
  transform: scale(1.06);
}

.rel-card .info {
  padding: 14px 16px 16px;
}

.rel-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.4;
}

.rel-card p {
  font-size: 12.5px;
  color: var(--muted-2);
  margin: 0;
}

footer {
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  padding: 56px 30px 30px;
  margin-top: 40px;
}

footer .grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
}

footer h5 {
  font-size: 14px;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  color: var(--text);
}

footer p {
  font-size: 13.5px;
  color: var(--muted);
  max-width: 46ch;
}

footer ul {
  list-style: none;
}

footer ul li {
  margin-bottom: 8px;
}

footer ul a {
  font-size: 13.5px;
  color: var(--muted);
  transition: color 0.2s;
}

footer ul a:hover {
  color: var(--gold);
}

footer .bottom {
  max-width: var(--max);
  margin: 44px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--muted-2);
}

.brand-mini {
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--gold);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.modal.open {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 5, 10, 0.86);
  backdrop-filter: blur(6px);
}

.modal-body {
  position: relative;
  width: min(880px, 100%);
  z-index: 1;
}

.modal-close {
  position: absolute;
  top: -46px;
  right: 0;
  width: 40px;
  height: 40px;
  font-size: 26px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: background 0.2s, transform 0.2s;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.modal-video {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #05070c;
}

.modal-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.modal-playing {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.modal-playing .play-ico {
  border-left-width: 26px;
  border-top-width: 16px;
  border-bottom-width: 16px;
  color: var(--gold);
  margin-bottom: 6px;
}

.modal-playing p {
  font-size: 18px;
  font-weight: 700;
}

.modal-playing small {
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-cover {
    max-width: 340px;
    margin: 0 auto;
  }

  .layout {
    grid-template-columns: 1fr;
  }

  .aside {
    position: static;
    display: none;
  }

  .rating-wrap {
    grid-template-columns: 1fr;
  }

  .rating-total {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding-right: 0;
    padding-bottom: 22px;
  }

  footer .grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .nav-links,
  .nav-meta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav.nav-open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 2px;
    padding: 12px 20px 18px;
    background: rgba(11, 14, 22, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .hero {
    padding: 44px 20px 44px;
  }

  .layout {
    padding: 10px 20px 40px;
  }

  .figure-row {
    grid-template-columns: 1fr;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .hero-meta {
    grid-template-columns: 1fr 1fr;
  }

  footer .grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
