:root {
  --emerald: #059669;
  --emerald-dark: #047857;
  --teal: #0d9488;
  --amber: #f59e0b;
  --ink: #111827;
  --muted: #64748b;
  --line: #dbeafe;
  --soft: #ecfdf5;
  --card: #ffffff;
  --shadow: 0 20px 45px rgba(15, 118, 110, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  background: linear-gradient(180deg, #ffffff 0%, rgba(236, 253, 245, 0.46) 48%, #ffffff 100%);
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(16, 185, 129, 0.14);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-weight: 900;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--emerald), var(--teal));
  box-shadow: 0 14px 30px rgba(5, 150, 105, 0.24);
}

.brand-name {
  font-size: 24px;
  background: linear-gradient(90deg, var(--emerald), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #334155;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--emerald), var(--teal));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--emerald);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.1);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--emerald-dark);
}

.hero-carousel {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background: radial-gradient(circle at 20% 20%, rgba(52, 211, 153, 0.28), transparent 32%), linear-gradient(135deg, #d1fae5 0%, #f0fdfa 50%, #fffbeb 100%);
}

.hero-static-copy {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.hero-track,
.hero-slide {
  min-height: 690px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.75fr);
  gap: 42px;
  align-items: center;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 82px 22px 96px;
  transition: opacity 0.65s ease, transform 0.65s ease;
  transform: translateY(10px);
}

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

.hero-backdrop {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.72) 40%, rgba(255, 255, 255, 0.12) 100%), var(--hero-image);
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
  transform: scale(1.04);
  z-index: -2;
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  margin-bottom: 18px;
  color: var(--emerald-dark);
  font-size: 14px;
  font-weight: 900;
  border-radius: 999px;
  background: rgba(209, 250, 229, 0.78);
  border: 1px solid rgba(5, 150, 105, 0.18);
}

.hero-content h1,
.hero-content h2,
.page-hero h1,
.detail-copy h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  color: #0f172a;
}

.hero-content p,
.page-hero p,
.detail-copy .lead {
  margin: 24px 0 0;
  max-width: 680px;
  color: #475569;
  font-size: 18px;
  line-height: 1.9;
}

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

.hero-tags {
  margin-top: 24px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  color: #065f46;
  font-size: 13px;
  font-weight: 800;
  border-radius: 999px;
  background: rgba(236, 253, 245, 0.9);
  border: 1px solid rgba(16, 185, 129, 0.18);
}

.hero-actions,
.center-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}

.primary-btn,
.secondary-btn,
.search-box button,
.reset-filter,
.ghost-link,
.inline-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.primary-btn,
.search-box button {
  color: #ffffff;
  background: linear-gradient(90deg, var(--emerald), var(--teal));
  box-shadow: 0 18px 38px rgba(5, 150, 105, 0.24);
}

.primary-btn:hover,
.search-box button:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(5, 150, 105, 0.32);
}

.secondary-btn,
.reset-filter,
.ghost-link,
.inline-more {
  color: var(--emerald-dark);
  background: #ffffff;
  border: 1px solid rgba(5, 150, 105, 0.16);
}

.secondary-btn:hover,
.reset-filter:hover,
.ghost-link:hover,
.inline-more:hover {
  transform: translateY(-2px);
  color: #ffffff;
  background: var(--emerald);
}

.hero-poster {
  justify-self: end;
  width: min(390px, 100%);
  aspect-ratio: 3 / 4;
  border-radius: 34px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 36px 80px rgba(15, 23, 42, 0.26);
  transform: rotate(2deg);
}

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

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

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.28);
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.active {
  width: 34px;
  background: linear-gradient(90deg, var(--emerald), var(--teal));
}

.quick-search {
  max-width: 1160px;
  margin: -48px auto 0;
  position: relative;
  z-index: 5;
  padding: 0 22px;
}

.search-box,
.filter-panel {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 185, 129, 0.15);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.search-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 12px;
  border-radius: 999px;
}

.search-box input,
.filter-search input,
.filter-controls select {
  width: 100%;
  border: 0;
  outline: 0;
  color: #0f172a;
  background: #f8fafc;
}

.search-box input {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
}

.quick-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.quick-links a {
  padding: 9px 15px;
  color: #047857;
  font-weight: 800;
  border-radius: 999px;
  background: rgba(236, 253, 245, 0.94);
  border: 1px solid rgba(16, 185, 129, 0.16);
}

.content-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 84px 22px;
}

.content-section.no-top-space {
  padding-top: 28px;
}

.soft-bg {
  max-width: none;
  background: linear-gradient(135deg, rgba(255, 251, 235, 0.78), rgba(236, 253, 245, 0.9), rgba(240, 253, 250, 0.78));
}

.soft-bg > * {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  text-align: center;
  margin-bottom: 42px;
}

.section-heading span {
  color: var(--emerald);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 8px 0 0;
  color: #0f172a;
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -0.04em;
}

.section-heading p {
  max-width: 680px;
  margin: 14px auto 0;
  color: var(--muted);
  line-height: 1.8;
}

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

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

.movie-card {
  min-width: 0;
}

.movie-card a {
  display: block;
  height: 100%;
  overflow: hidden;
  border-radius: 26px;
  background: var(--card);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card a:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 54px rgba(15, 118, 110, 0.18);
}

.poster-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f1f5f9;
}

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

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

.poster-type {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 6px 10px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  border-radius: 999px;
  background: rgba(4, 120, 87, 0.86);
  backdrop-filter: blur(10px);
}

.card-body {
  padding: 18px;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--emerald-dark);
  font-size: 13px;
  font-weight: 900;
}

.movie-card h3 {
  margin: 10px 0 0;
  color: #0f172a;
  font-size: 20px;
  line-height: 1.35;
}

.movie-card p {
  margin: 10px 0 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.movie-card.compact h3 {
  font-size: 17px;
}

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

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

.category-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 30px;
  color: #ffffff;
  box-shadow: var(--shadow);
}

.category-card img,
.category-overlay,
.tile-shade {
  position: absolute;
  inset: 0;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.category-card:hover img {
  transform: scale(1.08);
}

.category-overlay {
  background: linear-gradient(180deg, transparent 0%, rgba(4, 120, 87, 0.82) 100%);
}

.category-card strong,
.category-card em {
  position: relative;
  z-index: 1;
}

.category-card strong {
  font-size: 24px;
}

.category-card em {
  margin-top: 8px;
  font-style: normal;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.86);
}

.rank-strip {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-auto-rows: 240px;
  gap: 22px;
}

.feature-tile {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  color: #ffffff;
  box-shadow: var(--shadow);
}

.feature-tile.large {
  grid-row: span 2;
}

.feature-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.feature-tile:hover img {
  transform: scale(1.07);
}

.tile-shade {
  background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.78) 100%);
}

.tile-copy {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  display: grid;
  gap: 6px;
}

.tile-copy strong {
  font-size: 24px;
}

.tile-copy em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.78);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 22px 76px;
  background: radial-gradient(circle at 20% 10%, rgba(16, 185, 129, 0.24), transparent 30%), linear-gradient(135deg, #ecfdf5 0%, #f0fdfa 58%, #fffbeb 100%);
}

.page-hero > div {
  max-width: 1180px;
  margin: 0 auto;
}

.compact-hero h1,
.category-hero h1 {
  font-size: clamp(40px, 6vw, 72px);
}

.category-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(255,255,255,0.94), rgba(255,255,255,0.56)), var(--hero-image);
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.category-hero > div {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
  color: #64748b;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--emerald-dark);
}

.filter-panel {
  max-width: 1180px;
  margin: -34px auto 34px;
  position: relative;
  z-index: 4;
  border-radius: 28px;
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.filter-search input,
.filter-controls select {
  min-height: 46px;
  border-radius: 16px;
  padding: 0 15px;
  border: 1px solid rgba(15, 118, 110, 0.12);
}

.filter-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.filter-controls select {
  width: auto;
  min-width: 150px;
}

.category-overview {
  max-width: 1180px;
  margin: 0 auto;
  padding: 62px 22px 92px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.category-overview-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 20px;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.category-thumb-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.category-thumb-stack img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 16px;
}

.category-overview-card h2 {
  margin: 0;
  font-size: 26px;
}

.category-overview-card p {
  color: var(--muted);
  line-height: 1.8;
}

.ranking-list {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 22px 90px;
  display: grid;
  gap: 16px;
}

.rank-link {
  display: grid;
  grid-template-columns: 70px 92px 1fr;
  gap: 18px;
  align-items: center;
  padding: 14px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(15, 118, 110, 0.16);
}

.rank-number {
  color: var(--emerald);
  font-size: 30px;
  font-weight: 950;
}

.rank-link img {
  width: 92px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 16px;
}

.rank-info {
  display: grid;
  gap: 6px;
}

.rank-info strong {
  font-size: 22px;
}

.rank-info em,
.rank-info span {
  color: var(--muted);
  font-style: normal;
  line-height: 1.6;
}

.detail-hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 44px 22px 54px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(260px, 380px) 1fr;
  gap: 52px;
  align-items: center;
  margin-top: 30px;
}

.detail-poster {
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.18);
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.detail-copy h1 {
  font-size: clamp(38px, 5vw, 70px);
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.detail-meta span {
  padding: 9px 14px;
  color: #065f46;
  font-weight: 900;
  border-radius: 16px;
  background: rgba(236, 253, 245, 0.86);
  border: 1px solid rgba(16, 185, 129, 0.16);
}

.player-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 22px 62px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #020617;
  box-shadow: 0 32px 80px rgba(2, 6, 23, 0.28);
}

.player-shell video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.player-veil {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.2), rgba(2, 6, 23, 0.55));
  cursor: pointer;
}

.player-veil.hidden {
  display: none;
}

.play-circle {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  padding-left: 5px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 34px;
  background: linear-gradient(135deg, var(--emerald), var(--teal));
  box-shadow: 0 18px 42px rgba(5, 150, 105, 0.42);
}

.detail-content {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 22px 42px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.story-card {
  padding: 28px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.story-card h2 {
  margin: 0 0 14px;
  font-size: 26px;
}

.story-card p {
  margin: 0;
  color: #475569;
  line-height: 1.95;
}

.related-section {
  padding-top: 34px;
}

.site-footer {
  border-top: 1px solid rgba(16, 185, 129, 0.15);
  background: linear-gradient(180deg, rgba(236, 253, 245, 0.88), #ffffff);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 42px 22px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 28px;
}

.footer-brand {
  color: var(--emerald-dark);
  font-size: 22px;
}

.site-footer p {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  align-content: start;
}

.footer-links a {
  padding: 8px 12px;
  color: #047857;
  font-weight: 800;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(16, 185, 129, 0.16);
}

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

@media (max-width: 1080px) {
  .movie-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .hero-slide {
    grid-template-columns: 1fr 320px;
  }

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

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

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 70px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    padding: 14px 16px;
    border-radius: 16px;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: rgba(236, 253, 245, 0.9);
  }

  .nav-links a::after {
    display: none;
  }

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

  .hero-slide {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 24px;
  }

  .hero-poster {
    justify-self: start;
    width: 220px;
    border-radius: 24px;
  }

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

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

  .rank-strip {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .feature-tile.large {
    grid-row: span 1;
  }

  .detail-layout,
  .detail-content,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .brand-name {
    font-size: 20px;
  }

  .hero-content h1,
  .hero-content h2,
  .page-hero h1,
  .detail-copy h1 {
    font-size: 38px;
  }

  .hero-carousel,
  .hero-track,
  .hero-slide {
    min-height: 720px;
  }

  .hero-slide {
    padding-top: 58px;
    padding-bottom: 86px;
  }

  .hero-content p,
  .page-hero p,
  .detail-copy .lead {
    font-size: 16px;
  }

  .content-section {
    padding: 62px 16px;
  }

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

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

  .rank-link {
    grid-template-columns: 48px 76px 1fr;
    gap: 12px;
  }

  .rank-number {
    font-size: 22px;
  }

  .rank-link img {
    width: 76px;
  }

  .rank-info span {
    display: none;
  }

  .filter-controls select,
  .filter-controls button,
  .filter-controls a {
    width: 100%;
  }
}
