:root {
  color-scheme: dark;
  --bg: #07111f;
  --bg-soft: #0f1f35;
  --bg-card: rgba(15, 23, 42, 0.86);
  --bg-card-strong: rgba(17, 24, 39, 0.94);
  --text: #f8fafc;
  --muted: #94a3b8;
  --line: rgba(148, 163, 184, 0.22);
  --amber: #f59e0b;
  --amber-soft: #fbbf24;
  --blue: #2563eb;
  --cyan: #22d3ee;
  --radius: 24px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(37, 99, 235, 0.35), transparent 34rem),
    radial-gradient(circle at 82% 8%, rgba(245, 158, 11, 0.18), transparent 30rem),
    linear-gradient(135deg, #020617 0%, #0f172a 44%, #10213d 100%);
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.94), rgba(30, 58, 138, 0.88), rgba(15, 23, 42, 0.94));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1240px, calc(100% - 32px));
  height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #111827;
  background: linear-gradient(135deg, #fde68a, #f59e0b, #fb923c);
  box-shadow: 0 0 34px rgba(245, 158, 11, 0.42);
}

.brand-text {
  font-size: 1.35rem;
  background: linear-gradient(90deg, #fde68a, #fbbf24, #fb923c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-toggle {
  display: none;
  padding: 10px 14px;
  color: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.6);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link {
  padding: 9px 13px;
  border-radius: 999px;
  color: #cbd5e1;
  font-weight: 700;
  font-size: 0.94rem;
  transition: 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #111827;
  background: linear-gradient(135deg, #fde68a, #f59e0b);
  box-shadow: 0 12px 28px rgba(245, 158, 11, 0.26);
}

.nav-mini {
  color: #94a3b8;
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  isolation: isolate;
}

.hero-track {
  min-height: 720px;
  position: relative;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transform: scale(1.02);
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
  filter: saturate(1.18) contrast(1.08);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(15, 23, 42, 0.86) 42%, rgba(15, 23, 42, 0.35) 100%),
    radial-gradient(circle at 72% 28%, rgba(245, 158, 11, 0.25), transparent 28rem),
    radial-gradient(circle at 25% 74%, rgba(37, 99, 235, 0.35), transparent 32rem);
}

.hero-content {
  position: relative;
  width: min(1240px, calc(100% - 32px));
  min-height: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) 380px;
  align-items: center;
  gap: 42px;
  padding: 80px 0 130px;
}

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

.hero-kicker,
.page-hero > span,
.section-heading > span,
.showcase-card > span {
  display: inline-flex;
  align-items: center;
  width: max-content;
  padding: 7px 12px;
  border-radius: 999px;
  color: #fde68a;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.28);
  font-size: 0.86rem;
  font-weight: 800;
}

.hero h1,
.hero h2 {
  margin: 24px 0 18px;
  font-size: clamp(2.5rem, 6vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  background: linear-gradient(90deg, #ffffff, #fde68a 54%, #60a5fa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p,
.page-hero p,
.section-heading p,
.showcase-card p {
  color: #cbd5e1;
  font-size: 1.08rem;
  line-height: 1.85;
}

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

.hero-tags span,
.tag-row span {
  padding: 6px 10px;
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(37, 99, 235, 0.16);
  border: 1px solid rgba(96, 165, 250, 0.22);
  font-size: 0.78rem;
  font-weight: 700;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

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

.btn.primary {
  color: #111827;
  background: linear-gradient(135deg, #fde68a, #f59e0b, #fb923c);
  box-shadow: 0 18px 42px rgba(245, 158, 11, 0.3);
}

.btn.ghost {
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(15, 23, 42, 0.52);
  backdrop-filter: blur(14px);
}

.hero-feature {
  position: relative;
  display: grid;
  gap: 13px;
  padding: 18px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.78), rgba(15, 23, 42, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-feature::before {
  content: "";
  position: absolute;
  inset: -30% 25% 60% -20%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.32), transparent 60%);
}

.hero-feature img {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 24px;
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
}

.hero-feature span,
.hero-feature em {
  position: relative;
  color: var(--muted);
  font-style: normal;
  line-height: 1.65;
}

.hero-feature strong {
  position: relative;
  font-size: 1.25rem;
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 6;
}

.hero-nav,
.hero-dot {
  border: 0;
  cursor: pointer;
}

.hero-nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #f8fafc;
  font-size: 1.8rem;
  background: rgba(15, 23, 42, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-dots {
  display: flex;
  gap: 9px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
}

.hero-dot.is-active {
  width: 32px;
  background: linear-gradient(90deg, #fbbf24, #60a5fa);
}

.hero-search {
  position: absolute;
  left: 50%;
  bottom: 98px;
  transform: translateX(-50%);
  z-index: 8;
  width: min(720px, calc(100% - 32px));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.hero-search input,
.toolbar input {
  width: 100%;
  color: #f8fafc;
  border: 1px solid rgba(148, 163, 184, 0.2);
  outline: 0;
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.48);
}

.hero-search input {
  min-height: 48px;
  padding: 0 18px;
}

.hero-search button {
  min-width: 112px;
  border: 0;
  border-radius: 999px;
  color: #111827;
  font-weight: 900;
  background: linear-gradient(135deg, #fde68a, #f59e0b);
  cursor: pointer;
}

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

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

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.section-heading h2,
.page-hero h1,
.detail-copy h1,
.player-section h2,
.story-card h2 {
  margin: 0;
  letter-spacing: -0.03em;
}

.section-heading h2,
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

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

.category-tile {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.16), rgba(2, 6, 23, 0.92));
}

.category-tile span,
.category-tile strong {
  position: relative;
  z-index: 1;
  display: block;
}

.category-tile span {
  color: #fde68a;
  font-weight: 900;
  font-size: 1.22rem;
}

.category-tile strong {
  margin-top: 82px;
  color: #dbeafe;
  line-height: 1.65;
  font-size: 0.92rem;
}

.category-tile:hover img {
  transform: scale(1.08);
  opacity: 0.34;
}

.split-showcase {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 24px;
  align-items: start;
}

.showcase-card {
  position: sticky;
  top: 96px;
  padding: 34px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 90% 10%, rgba(245, 158, 11, 0.25), transparent 20rem),
    linear-gradient(135deg, rgba(30, 58, 138, 0.86), rgba(15, 23, 42, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.showcase-card h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
  margin: 22px 0 12px;
}

.showcase-list,
.rank-list {
  display: grid;
  gap: 14px;
}

.movie-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.movie-card {
  min-width: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 158, 11, 0.38);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
}

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
}

.poster-link img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

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

.poster-glow {
  position: absolute;
  inset: auto 14px 14px 14px;
  height: 52px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(245, 158, 11, 0.18), rgba(37, 99, 235, 0.18));
  filter: blur(18px);
}

.rank-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  padding: 6px 10px;
  color: #111827;
  background: linear-gradient(135deg, #fde68a, #f59e0b);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.card-body {
  padding: 16px;
}

.card-meta,
.rank-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: #93c5fd;
  font-size: 0.8rem;
  font-weight: 800;
}

.card-meta span,
.card-meta a,
.rank-meta span,
.rank-meta strong {
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(96, 165, 250, 0.16);
}

.card-body h3 {
  margin: 12px 0 8px;
  font-size: 1.08rem;
  line-height: 1.35;
}

.card-body p,
.rank-content p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.92rem;
}

.toolbar {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.toolbar input {
  min-height: 48px;
  padding: 0 18px;
}

.large-toolbar input {
  min-height: 58px;
  font-size: 1.05rem;
}

.empty-state {
  display: none;
  padding: 24px;
  text-align: center;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
}

.empty-state.show {
  display: block;
}

.page-main {
  padding-bottom: 50px;
}

.page-hero {
  margin: 36px 0 12px;
  padding: 48px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 90% 16%, rgba(245, 158, 11, 0.18), transparent 24rem),
    linear-gradient(135deg, rgba(15, 23, 42, 0.86), rgba(30, 58, 138, 0.62));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.page-hero h1 {
  margin: 20px 0 14px;
}

.rank-row {
  display: grid;
  grid-template-columns: 72px 98px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 14px;
  border-radius: 24px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

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

.rank-number {
  display: grid;
  place-items: center;
  min-height: 54px;
  border-radius: 18px;
  color: #111827;
  font-size: 1rem;
  font-weight: 900;
  background: linear-gradient(135deg, #fde68a, #f59e0b);
}

.rank-thumb img {
  width: 98px;
  height: 130px;
  object-fit: cover;
  border-radius: 18px;
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
}

.rank-content h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 28px 0 20px;
  color: var(--muted);
}

.breadcrumbs a:hover {
  color: #fbbf24;
}

.detail-hero {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 34px;
  padding: 30px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 92% 18%, rgba(245, 158, 11, 0.18), transparent 22rem),
    linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 58, 138, 0.42));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 26px;
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.detail-copy {
  align-self: center;
}

.detail-copy h1 {
  margin: 20px 0 16px;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 1.05;
}

.lead {
  color: #cbd5e1;
  font-size: 1.1rem;
  line-height: 1.85;
}

.player-section {
  margin-top: 34px;
}

.player-section h2 {
  margin-bottom: 18px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.player-box {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.movie-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  color: #f8fafc;
  border: 0;
  cursor: pointer;
  background: rgba(2, 6, 23, 0.38);
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-overlay img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  filter: saturate(1.08);
}

.player-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(245, 158, 11, 0.2), transparent 18rem),
    linear-gradient(180deg, rgba(2, 6, 23, 0.08), rgba(2, 6, 23, 0.82));
}

.play-circle,
.player-overlay strong {
  position: relative;
  z-index: 1;
}

.play-circle {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #111827;
  font-size: 2rem;
  background: linear-gradient(135deg, #fde68a, #f59e0b);
  box-shadow: 0 20px 60px rgba(245, 158, 11, 0.4);
}

.player-overlay strong {
  max-width: min(86%, 760px);
  text-align: center;
  font-size: clamp(1.3rem, 4vw, 2.6rem);
}

.player-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}

.story-card {
  padding: 26px;
  border-radius: 26px;
  background: var(--bg-card);
  border: 1px solid var(--line);
}

.story-card p {
  color: #cbd5e1;
  line-height: 1.9;
}

.meta-card {
  grid-column: 1 / -1;
}

.meta-card dl {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 0;
}

.meta-card dl div {
  padding: 18px;
  border-radius: 18px;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(96, 165, 250, 0.18);
}

.meta-card dt {
  color: #93c5fd;
  font-weight: 900;
  margin-bottom: 8px;
}

.meta-card dd {
  margin: 0;
  color: #e2e8f0;
}

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

.movie-card.compact .card-body p {
  display: none;
}

.site-footer {
  margin-top: 32px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(2, 6, 23, 0.72);
}

.footer-shell {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 0;
  display: grid;
  gap: 22px;
  color: var(--muted);
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 10px;
  color: #fbbf24;
  font-size: 1.35rem;
  font-weight: 900;
}

.footer-links,
.footer-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a,
.footer-cats a {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.84);
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.footer-links a:hover,
.footer-cats a:hover {
  color: #fbbf24;
}

.footer-bottom {
  padding-top: 18px;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.is-hidden-card {
  display: none !important;
}

@media (max-width: 1180px) {
  .movie-grid,
  .category-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

@media (max-width: 960px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    padding: 16px;
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding-top: 54px;
  }

  .hero-feature {
    max-width: 420px;
  }

  .split-showcase,
  .detail-hero,
  .detail-content {
    grid-template-columns: 1fr;
  }

  .showcase-card {
    position: relative;
    top: auto;
  }

  .meta-card dl {
    grid-template-columns: repeat(2, 1fr);
  }

  .movie-grid,
  .category-grid,
  .related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 680px) {
  .nav-shell,
  .content-section,
  .page-main,
  .footer-shell {
    width: min(100% - 24px, 1240px);
  }

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

  .hero,
  .hero-track,
  .hero-content {
    min-height: 760px;
  }

  .hero-search {
    grid-template-columns: 1fr;
    border-radius: 28px;
  }

  .hero-search button {
    min-height: 46px;
  }

  .hero-controls {
    bottom: 24px;
  }

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

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

  .category-tile {
    min-height: 178px;
  }

  .rank-row {
    grid-template-columns: 52px 76px minmax(0, 1fr);
    gap: 10px;
  }

  .rank-thumb img {
    width: 76px;
    height: 104px;
    border-radius: 14px;
  }

  .page-hero,
  .detail-hero {
    padding: 24px;
    border-radius: 26px;
  }

  .detail-poster {
    max-width: 260px;
  }

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

@media (max-width: 440px) {
  .movie-grid,
  .category-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy p,
  .page-hero p {
    font-size: 1rem;
  }

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

  .rank-number {
    width: 76px;
  }
}
