:root {
  --site-coffee-950: #17110c;
  --site-coffee-900: #2a1f15;
  --site-coffee-800: #3d2e1f;
  --site-coffee-700: #54402a;
  --site-coffee-600: #6f5536;
  --site-coffee-500: #8b6f47;
  --site-cream-50: #fefdfb;
  --site-cream-100: #fdf9f3;
  --site-cream-200: #faf3e6;
  --site-cream-300: #f5e8d0;
  --site-gold: #d7b46a;
  --site-red: #cc3d2e;
  --site-shadow: 0 24px 70px rgba(42, 31, 21, 0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(180deg, var(--site-cream-50), var(--site-cream-200));
  color: var(--site-coffee-900);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", Arial, sans-serif;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(254, 253, 251, 0.92);
  border-bottom: 1px solid rgba(111, 85, 54, 0.12);
  backdrop-filter: blur(18px);
}

.header-inner {
  height: 72px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--site-coffee-900);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.logo {
  font-size: 1.35rem;
  flex: none;
}

.logo-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--site-coffee-600), var(--site-coffee-900));
  box-shadow: 0 14px 30px rgba(42, 31, 21, 0.25);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  font-weight: 600;
  color: var(--site-coffee-700);
}

.nav-menu a,
.mobile-menu a,
.footer-links a,
.category-strip a,
.text-link {
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.nav-menu a:hover,
.mobile-menu a:hover,
.footer-links a:hover,
.category-strip a:hover,
.text-link:hover {
  color: var(--site-coffee-500);
}

.header-search-link {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--site-cream-50);
  background: var(--site-coffee-800);
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(42, 31, 21, 0.18);
}

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

.mobile-nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: var(--site-coffee-800);
}

.mobile-menu {
  display: none;
  padding: 0 1rem 1rem;
  background: rgba(254, 253, 251, 0.96);
}

.mobile-menu a {
  display: block;
  padding: 12px 0;
  border-top: 1px solid rgba(111, 85, 54, 0.12);
  font-weight: 700;
}

.hero-slider {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  background: var(--site-coffee-950);
}

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

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

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

.hero-bg,
.detail-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 30%, rgba(215, 180, 106, 0.22), transparent 34%),
    linear-gradient(90deg, rgba(23, 17, 12, 0.95), rgba(42, 31, 21, 0.72) 48%, rgba(23, 17, 12, 0.6));
}

.hero-content {
  position: relative;
  min-height: 660px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: center;
  gap: 56px;
  color: #fff;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin-bottom: 16px;
  padding: 8px 13px;
  border: 1px solid rgba(253, 249, 243, 0.22);
  border-radius: 999px;
  color: var(--site-cream-200);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--site-coffee-600);
  border-color: rgba(111, 85, 54, 0.18);
  background: rgba(111, 85, 54, 0.08);
}

.hero-copy h1,
.hero-copy h2,
.page-hero h1,
.detail-intro h1 {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.hero-copy h1,
.hero-copy h2 {
  max-width: 760px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.95;
}

.hero-copy p,
.page-hero p,
.detail-intro p,
.rank-copy p {
  margin-top: 24px;
  color: rgba(253, 249, 243, 0.86);
  font-size: 1.08rem;
  line-height: 1.85;
}

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

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

.hero-tags span,
.detail-tags a,
.tag-row span {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-tags span,
.detail-tags a {
  color: var(--site-cream-100);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.tag-row span {
  color: var(--site-coffee-600);
  background: rgba(111, 85, 54, 0.09);
}

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

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0.5rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 700;
  backdrop-filter: blur(14px);
}

.btn-ghost.light {
  color: var(--site-coffee-900);
  border-color: rgba(111, 85, 54, 0.18);
  background: rgba(255, 255, 255, 0.76);
}

.hero-poster {
  position: relative;
  display: block;
  border-radius: 28px;
  padding: 12px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.06));
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.38);
  transform: rotate(2deg);
}

.hero-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  object-fit: cover;
}

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

.hero-dots button {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dots button.is-active {
  width: 36px;
  background: var(--site-cream-100);
}

.home-search-band {
  margin-top: -42px;
  position: relative;
  z-index: 6;
}

.search-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 470px);
  gap: 24px;
  align-items: center;
  padding: 28px;
  border-radius: 28px;
  background: rgba(254, 253, 251, 0.96);
  box-shadow: var(--site-shadow);
}

.search-band-inner h2,
.section-heading h2,
.rank-copy h2,
.content-card h2 {
  margin: 0;
  color: var(--site-coffee-900);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.search-band-inner p {
  margin: 8px 0 0;
  color: var(--site-coffee-600);
}

.search-form {
  display: flex;
  gap: 10px;
  padding: 8px;
  border: 1px solid rgba(111, 85, 54, 0.14);
  border-radius: 18px;
  background: #fff;
}

.search-form input,
.filter-bar input {
  min-width: 0;
  flex: 1;
  padding: 12px 14px;
  color: var(--site-coffee-900);
  outline: none;
}

.search-form button,
.filter-bar a {
  flex: none;
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  background: var(--site-coffee-800);
  font-weight: 800;
}

.category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.category-strip a {
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--site-coffee-700);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 26px rgba(42, 31, 21, 0.08);
  font-weight: 700;
}

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

.text-link {
  color: var(--site-coffee-600);
  font-weight: 800;
}

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

.movie-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 46px rgba(42, 31, 21, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.movie-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 70px rgba(42, 31, 21, 0.18);
}

.poster-wrap {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(145deg, var(--site-coffee-700), var(--site-coffee-950));
}

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

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

.poster-play,
.rank-badge {
  position: absolute;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25);
}

.poster-play {
  right: 12px;
  bottom: 12px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(42, 31, 21, 0.76);
  backdrop-filter: blur(10px);
}

.rank-badge {
  left: 12px;
  top: 12px;
  min-width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--site-red), var(--site-coffee-700));
}

.movie-card-body {
  padding: 16px;
}

.movie-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--site-coffee-500);
  font-size: 0.78rem;
  font-weight: 800;
}

.movie-card h3 {
  margin: 8px 0 7px;
  color: var(--site-coffee-900);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.35;
}

.movie-card p {
  display: -webkit-box;
  min-height: 3.2em;
  margin: 0 0 12px;
  overflow: hidden;
  color: var(--site-coffee-600);
  font-size: 0.92rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

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

.compact-grid .movie-card-body {
  padding: 13px;
}

.compact-grid .movie-card h3 {
  font-size: 0.96rem;
}

.soft-section {
  background:
    radial-gradient(circle at top right, rgba(215, 180, 106, 0.14), transparent 30%),
    rgba(255, 255, 255, 0.4);
}

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

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

.category-tile {
  display: grid;
  gap: 16px;
  overflow: hidden;
  border-radius: 24px;
  padding: 14px;
  color: var(--site-coffee-900);
  background: #fff;
  box-shadow: 0 16px 46px rgba(42, 31, 21, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(42, 31, 21, 0.18);
}

.category-tile-images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.category-tile-images img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  object-fit: cover;
  background: var(--site-coffee-800);
}

.category-tile-content strong,
.category-tile-content em {
  display: block;
}

.category-tile-content strong {
  margin-bottom: 6px;
  font-size: 1.2rem;
  font-weight: 900;
}

.category-tile-content em {
  color: var(--site-coffee-600);
  font-style: normal;
  line-height: 1.65;
}

.rank-section {
  color: #fff;
  background:
    radial-gradient(circle at 12% 12%, rgba(215, 180, 106, 0.2), transparent 22%),
    linear-gradient(135deg, var(--site-coffee-950), var(--site-coffee-800));
}

.rank-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: center;
}

.rank-copy h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 4rem);
}

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

.mini-rank-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
}

.mini-rank-item img {
  width: 72px;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  object-fit: cover;
  background: var(--site-coffee-900);
}

.mini-rank-item strong,
.mini-rank-item em {
  display: block;
}

.mini-rank-item strong {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: 900;
}

.mini-rank-item em {
  margin-top: 5px;
  overflow: hidden;
  color: rgba(253, 249, 243, 0.72);
  font-size: 0.85rem;
  font-style: normal;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.page-main {
  min-height: 70vh;
}

.page-hero {
  position: relative;
  padding: 90px 0 70px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(215, 180, 106, 0.28), transparent 28%),
    linear-gradient(135deg, var(--site-coffee-950), var(--site-coffee-700));
}

.compact-hero h1,
.category-hero h1,
.ranking-hero h1 {
  max-width: 820px;
  font-size: clamp(2.6rem, 6vw, 5rem);
}

.compact-hero p,
.category-hero p,
.ranking-hero p {
  max-width: 740px;
}

.category-hero-inner,
.ranking-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 32px;
  align-items: start;
}

.ranking-hero-inner {
  grid-template-columns: minmax(0, 0.8fr) 300px 360px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(253, 249, 243, 0.72);
  font-size: 0.9rem;
}

.breadcrumb a:hover {
  color: #fff;
}

.filter-bar {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 26px;
  padding: 10px;
  border: 1px solid rgba(111, 85, 54, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 44px rgba(42, 31, 21, 0.08);
}

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

.ranking-lead-card {
  overflow: hidden;
  border-radius: 24px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.ranking-lead-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.ranking-lead-card span {
  display: block;
  padding: 16px;
}

.ranking-lead-card strong,
.ranking-lead-card em {
  display: block;
}

.ranking-lead-card strong {
  margin-bottom: 8px;
  font-size: 1.2rem;
  font-weight: 900;
}

.ranking-lead-card em {
  display: -webkit-box;
  overflow: hidden;
  color: rgba(253, 249, 243, 0.78);
  font-style: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.detail-hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  color: #fff;
  background: var(--site-coffee-950);
}

.detail-bg-mask {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 20%, rgba(215, 180, 106, 0.18), transparent 30%),
    linear-gradient(90deg, rgba(23, 17, 12, 0.96), rgba(42, 31, 21, 0.78) 56%, rgba(23, 17, 12, 0.72));
}

.detail-hero-inner {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.detail-poster {
  overflow: hidden;
  border-radius: 28px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.36);
}

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

.detail-intro h1 {
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 1.02;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}

.detail-main-column,
.detail-side-column {
  display: grid;
  gap: 22px;
}

.player-card,
.content-card {
  overflow: hidden;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 54px rgba(42, 31, 21, 0.11);
}

.player-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

.player-shell video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000;
  object-fit: contain;
  z-index: 1;
}

.play-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  gap: 12px;
  color: #fff;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.52));
  cursor: pointer;
}

.play-layer.is-hidden {
  display: none;
}

.play-layer span {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(111, 85, 54, 0.92);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
  font-size: 2rem;
}

.play-layer strong {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.content-card {
  padding: 26px;
}

.content-card p {
  margin: 14px 0 0;
  color: var(--site-coffee-700);
  line-height: 1.9;
}

.meta-card dl {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
}

.meta-card dl div {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(111, 85, 54, 0.12);
}

.meta-card dt {
  color: var(--site-coffee-500);
  font-weight: 800;
}

.meta-card dd {
  margin: 0;
  color: var(--site-coffee-900);
  font-weight: 700;
}

.page-search {
  max-width: 780px;
  margin-top: 28px;
}

.search-status {
  margin-bottom: 20px;
  color: var(--site-coffee-700);
  font-size: 1.05rem;
  font-weight: 900;
}

.site-footer {
  padding: 54px 0 24px;
  color: rgba(253, 249, 243, 0.82);
  background: var(--site-coffee-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
  gap: 30px;
}

.footer-logo {
  color: #fff;
  font-size: 1.3rem;
}

.site-footer p {
  max-width: 620px;
  margin-top: 12px;
  color: rgba(253, 249, 243, 0.7);
}

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

.footer-links a {
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--site-cream-100);
  background: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(253, 249, 243, 0.58);
  font-size: 0.9rem;
}

.is-filtered-out {
  display: none;
}

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

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

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

  .ranking-hero-inner {
    grid-template-columns: minmax(0, 1fr) 320px;
  }

  .ranking-hero-inner .hero-side-list {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .nav-menu,
  .header-search-link {
    display: none;
  }

  .mobile-nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .mobile-menu.is-open {
    display: block;
  }

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

  .hero-content,
  .search-band-inner,
  .rank-layout,
  .category-hero-inner,
  .ranking-hero-inner,
  .detail-hero-inner,
  .detail-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-poster,
  .detail-poster {
    max-width: 260px;
    margin: 0 auto;
  }

  .detail-hero-inner {
    padding: 48px 1rem;
  }

  .movie-grid,
  .category-movie-grid,
  .ranking-grid,
  .compact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 640px) {
  .header-inner {
    height: 64px;
  }

  .logo {
    font-size: 1.1rem;
  }

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

  .hero-content {
    gap: 28px;
    padding-top: 38px;
    padding-bottom: 64px;
  }

  .hero-copy h1,
  .hero-copy h2 {
    font-size: clamp(2.45rem, 17vw, 4.5rem);
  }

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

  .home-search-band {
    margin-top: 0;
  }

  .search-band-inner,
  .filter-bar,
  .search-form {
    display: grid;
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: grid;
    align-items: start;
  }

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

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

  .page-hero {
    padding: 60px 0 48px;
  }

  .content-card {
    padding: 20px;
  }

  .meta-card dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
