:root {
  color-scheme: dark;
  --bg: #0c0a09;
  --panel: #1c1917;
  --panel-2: #292524;
  --panel-3: #44403c;
  --text: #f5f5f4;
  --muted: #a8a29e;
  --muted-2: #78716c;
  --line: rgba(120, 113, 108, 0.35);
  --amber: #d97706;
  --amber-soft: #f59e0b;
  --amber-glow: rgba(245, 158, 11, 0.34);
  --radius: 18px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(circle at 10% 0%, rgba(217, 119, 6, 0.16), transparent 32%), var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.65;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(28, 25, 23, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
}

.site-header-inner {
  width: min(1180px, calc(100% - 32px));
  height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  color: #fff;
  background: linear-gradient(135deg, var(--amber), var(--amber-soft));
  box-shadow: 0 10px 24px var(--amber-glow);
}

.brand-text {
  font-size: 1.25rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-link,
.mobile-link {
  color: #d6d3d1;
  font-weight: 650;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
  color: var(--amber-soft);
}

.nav-link:hover {
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(68, 64, 60, 0.6);
  padding: 9px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #f5f5f4;
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 14px;
  padding: 12px;
  background: rgba(41, 37, 36, 0.96);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.mobile-nav.is-open {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.mobile-link {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(68, 64, 60, 0.42);
}

.hero {
  position: relative;
  padding: 36px 0 18px;
  overflow: hidden;
}

.hero-shell {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  min-height: 620px;
  margin: 0 auto;
  border-radius: 30px;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid rgba(245, 158, 11, 0.2);
  box-shadow: var(--shadow);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.65s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(12px) saturate(1.2) brightness(0.48);
  transform: scale(1.08);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 10, 9, 0.94), rgba(12, 10, 9, 0.72) 45%, rgba(12, 10, 9, 0.48)),
    radial-gradient(circle at 76% 18%, rgba(245, 158, 11, 0.35), transparent 32%);
}

.hero-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 42px;
  min-height: 520px;
  padding: 72px 62px 132px;
  align-items: center;
}

.hero-copy {
  max-width: 720px;
}

.hero-eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--amber-soft);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-site-title {
  margin: 0 0 8px;
  color: #fff7ed;
  font-size: clamp(2.35rem, 6vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.hero-movie-title {
  margin: 0 0 16px;
  color: var(--amber-soft);
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  line-height: 1.15;
}

.hero-copy p {
  max-width: 680px;
  margin: 0 0 22px;
  color: #d6d3d1;
  font-size: 1.08rem;
}

.hero-tags,
.tag-row,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags span,
.tag-row span,
.detail-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(68, 64, 60, 0.78);
  color: #e7e5e4;
  font-size: 0.82rem;
}

.hero-actions,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.primary-btn,
.ghost-btn,
.section-more,
.category-card-more,
.hero-search button,
.page-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 13px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.primary-btn,
.hero-search button,
.page-search button {
  color: #fff;
  background: linear-gradient(135deg, var(--amber), var(--amber-soft));
  box-shadow: 0 12px 26px var(--amber-glow);
}

.ghost-btn,
.section-more,
.category-card-more {
  color: #f5f5f4;
  background: rgba(68, 64, 60, 0.5);
  border-color: rgba(245, 158, 11, 0.24);
}

.primary-btn:hover,
.ghost-btn:hover,
.section-more:hover,
.category-card-more:hover,
.hero-search button:hover,
.page-search button:hover {
  transform: translateY(-2px);
}

.hero-poster {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.hero-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.hero-poster:hover img {
  transform: scale(1.06);
}

.hero-poster span {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(217, 119, 6, 0.94);
  color: #fff;
  font-size: 1.35rem;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.32);
}

.hero-tools {
  position: absolute;
  left: 42px;
  right: 42px;
  bottom: 34px;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: 18px;
  align-items: center;
}

.hero-search,
.page-search,
.search-controls,
.filter-box {
  display: flex;
  gap: 10px;
}

.hero-search,
.page-search {
  padding: 8px;
  border-radius: 17px;
  border: 1px solid rgba(245, 158, 11, 0.22);
  background: rgba(28, 25, 23, 0.82);
  backdrop-filter: blur(16px);
}

.hero-search input,
.page-search input,
.search-controls input,
.filter-box input,
.filter-box select,
.search-controls select {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  outline: none;
  color: var(--text);
  background: rgba(12, 10, 9, 0.75);
}

.hero-search input:focus,
.page-search input:focus,
.search-controls input:focus,
.filter-box input:focus,
.filter-box select:focus,
.search-controls select:focus {
  border-color: rgba(245, 158, 11, 0.7);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.13);
}

.hero-category-links,
.category-button-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-category-links a,
.category-button-list a {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(41, 37, 36, 0.74);
  border: 1px solid rgba(245, 158, 11, 0.2);
  color: #e7e5e4;
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.hero-category-links a:hover,
.category-button-list a:hover {
  color: var(--amber-soft);
  border-color: rgba(245, 158, 11, 0.55);
  transform: translateY(-2px);
}

.hero-dots {
  position: absolute;
  right: 46px;
  bottom: 46px;
  z-index: 5;
  display: flex;
  gap: 9px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.25);
}

.hero-dot.is-active {
  width: 34px;
  background: var(--amber-soft);
  border-color: var(--amber-soft);
}

.content-section,
.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.content-section {
  padding: 58px 0;
}

.no-top-pad {
  padding-top: 22px;
}

.accent-section,
.page-hero,
.detail-hero,
.player-section,
.story-card,
.category-panel {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(28, 25, 23, 0.86);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.accent-section {
  width: min(1180px, calc(100% - 32px));
  padding: 36px;
}

.section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.section-title h2,
.page-hero h1,
.detail-intro h1,
.story-card h2,
.category-panel h2 {
  margin: 0;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.section-title p,
.page-hero p,
.category-panel p,
.story-card p {
  max-width: 760px;
  margin: 8px 0 0;
  color: var(--muted);
}

.movie-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.movie-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(28, 25, 23, 0.9);
  border: 1px solid rgba(120, 113, 108, 0.28);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 158, 11, 0.46);
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.32);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #1c1917;
}

.poster-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.movie-card:hover .poster-link img {
  transform: scale(1.08);
}

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.68), transparent 55%);
}

.poster-type {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  color: #fff;
  background: rgba(217, 119, 6, 0.96);
  font-size: 0.76rem;
  font-weight: 800;
}

.poster-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  opacity: 0;
  background: rgba(0, 0, 0, 0.32);
  transition: opacity 0.25s ease;
}

.movie-card:hover .poster-play {
  opacity: 1;
}

.movie-body {
  padding: 14px;
}

.movie-body h3 {
  min-height: 2.7em;
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.35;
}

.movie-body h3 a:hover,
.rank-main h3 a:hover,
.category-samples a:hover {
  color: var(--amber-soft);
}

.movie-line {
  min-height: 3.2em;
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.88rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted-2);
  font-size: 0.82rem;
}

.tag-row {
  margin-top: 10px;
}

.tag-row span {
  min-height: 24px;
  padding: 3px 8px;
  color: #d6d3d1;
  background: rgba(68, 64, 60, 0.62);
  font-size: 0.74rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
}

.category-panel {
  padding: 26px;
  align-self: start;
  position: sticky;
  top: 92px;
}

.rank-list {
  display: grid;
  gap: 12px;
}

.rank-item {
  display: grid;
  grid-template-columns: 48px 68px minmax(0, 1fr) 54px;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(28, 25, 23, 0.84);
  border: 1px solid rgba(120, 113, 108, 0.25);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.rank-item:hover {
  transform: translateX(4px);
  border-color: rgba(245, 158, 11, 0.42);
}

.rank-number,
.rank-score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-soft);
  font-size: 1.2rem;
  font-weight: 900;
}

.rank-cover {
  display: block;
  width: 68px;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 12px;
  background: #1c1917;
}

.rank-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rank-main h3 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.rank-main p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 0.88rem;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.full-rank .rank-main p {
  -webkit-line-clamp: 2;
}

.page-shell {
  padding: 34px 0 64px;
}

.page-hero {
  padding: 34px;
  margin-bottom: 28px;
  background:
    radial-gradient(circle at 85% 10%, rgba(245, 158, 11, 0.16), transparent 30%),
    rgba(28, 25, 23, 0.86);
}

.small-page-hero h1 {
  max-width: 840px;
}

.page-search {
  max-width: 680px;
  margin-top: 22px;
}

.filter-box,
.search-controls {
  margin-top: 22px;
  max-width: 820px;
}

.filter-box select,
.search-controls select {
  max-width: 170px;
}

.category-grid-section {
  padding: 18px 0 40px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.category-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(28, 25, 23, 0.86);
  border: 1px solid rgba(120, 113, 108, 0.28);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.45);
}

.category-card-title {
  color: #fff7ed;
  font-size: 1.25rem;
  font-weight: 900;
}

.category-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.category-samples {
  display: grid;
  gap: 6px;
  margin-top: auto;
  color: #d6d3d1;
  font-size: 0.86rem;
}

.category-card-more {
  align-self: flex-start;
  min-height: 38px;
  padding: 0 14px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumb a:hover {
  color: var(--amber-soft);
}

.detail-hero {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 34px;
  padding: 30px;
  align-items: center;
}

.detail-cover {
  overflow: hidden;
  border-radius: 22px;
  aspect-ratio: 2 / 3;
  background: #1c1917;
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.28);
}

.detail-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-line {
  max-width: 780px;
  color: #d6d3d1;
  font-size: 1.06rem;
}

.detail-meta {
  margin-top: 18px;
}

.detail-tags {
  margin-top: 16px;
}

.player-section,
.detail-content {
  margin-top: 28px;
}

.player-section {
  padding: 28px;
}

.compact-title {
  margin-bottom: 18px;
}

.player-box {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #000;
  aspect-ratio: 16 / 9;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.movie-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000;
}

.player-cover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  color: #fff;
  background: #000;
}

.player-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.48) saturate(1.1);
}

.play-ring {
  position: relative;
  z-index: 2;
  width: 86px;
  height: 86px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: rgba(217, 119, 6, 0.96);
  border: 2px solid rgba(255, 255, 255, 0.74);
  font-size: 2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.38);
  transition: transform 0.2s ease, background 0.2s ease;
}

.player-cover:hover .play-ring {
  transform: scale(1.08);
  background: var(--amber-soft);
}

.detail-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.story-card {
  padding: 28px;
}

.story-card p {
  color: #d6d3d1;
  font-size: 1rem;
}

.related-section {
  padding-bottom: 0;
}

.related-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.search-panel {
  margin-top: 8px;
}

.search-results {
  margin-top: 24px;
}

.empty-state {
  padding: 24px;
  border-radius: 18px;
  background: rgba(28, 25, 23, 0.84);
  border: 1px solid var(--line);
  color: var(--muted);
}

.site-footer {
  margin-top: 40px;
  background: #1c1917;
  border-top: 1px solid var(--line);
}

.footer-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr;
  gap: 34px;
}

.footer-brand {
  color: #fff7ed;
  font-size: 1.2rem;
}

.site-footer p,
.footer-links a {
  color: var(--muted);
}

.site-footer h2 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 16px;
}

.footer-links a:hover {
  color: var(--amber-soft);
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 26px;
  border-top: 1px solid var(--line);
  color: var(--muted-2);
  font-size: 0.92rem;
}

@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-panel {
    grid-template-columns: 1fr 260px;
    padding: 58px 38px 150px;
  }

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

  .movie-grid,
  .related-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-section {
    grid-template-columns: 1fr;
  }

  .category-panel {
    position: static;
  }
}

@media (max-width: 780px) {
  .site-header-inner {
    height: 62px;
  }

  .brand-text {
    font-size: 1.05rem;
  }

  .hero-shell {
    min-height: 760px;
    border-radius: 22px;
  }

  .hero-panel {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 38px 22px 250px;
  }

  .hero-poster {
    width: min(240px, 70vw);
  }

  .hero-tools {
    left: 18px;
    right: 18px;
    bottom: 58px;
  }

  .hero-search,
  .page-search,
  .search-controls,
  .filter-box {
    flex-direction: column;
  }

  .hero-dots {
    left: 22px;
    right: auto;
    bottom: 20px;
  }

  .content-section,
  .page-shell,
  .accent-section {
    width: min(100% - 24px, 1180px);
  }

  .accent-section,
  .page-hero,
  .detail-hero,
  .player-section,
  .story-card {
    padding: 22px;
  }

  .section-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .movie-grid,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
  }

  .movie-body {
    padding: 11px;
  }

  .movie-body h3 {
    font-size: 0.95rem;
  }

  .movie-line {
    font-size: 0.82rem;
  }

  .rank-item {
    grid-template-columns: 36px 58px minmax(0, 1fr);
  }

  .rank-score {
    display: none;
  }

  .rank-cover {
    width: 58px;
  }

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

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

  .detail-cover {
    width: min(250px, 80vw);
  }

  .detail-content {
    grid-template-columns: 1fr;
  }

  .filter-box select,
  .search-controls select {
    max-width: none;
  }

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

@media (max-width: 480px) {
  .mobile-nav.is-open {
    grid-template-columns: 1fr;
  }

  .hero-site-title {
    font-size: 2.25rem;
  }

  .hero-movie-title {
    font-size: 1.35rem;
  }

  .hero-copy p {
    font-size: 0.96rem;
  }

  .movie-grid,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tag-row span:nth-child(n + 3) {
    display: none;
  }
}
