:root {
  --pink-50: #fff1f7;
  --pink-100: #ffe3ef;
  --pink-200: #ffc7df;
  --pink-500: #ec4899;
  --pink-600: #db2777;
  --rose-500: #f43f5e;
  --rose-600: #e11d48;
  --ink: #1f2937;
  --muted: #6b7280;
  --line: rgba(236, 72, 153, 0.18);
  --card: rgba(255, 255, 255, 0.92);
  --shadow: 0 18px 45px rgba(190, 24, 93, 0.12);
  --shadow-strong: 0 24px 70px rgba(190, 24, 93, 0.24);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, var(--pink-50) 0%, #ffffff 42%, #fff6fb 100%);
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 28px rgba(219, 39, 119, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 22px;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #ffffff;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--pink-500), var(--rose-500));
  box-shadow: 0 10px 28px rgba(236, 72, 153, 0.36);
}

.brand-text,
.footer-brand {
  font-size: 22px;
  background: linear-gradient(90deg, var(--pink-500), var(--rose-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 700;
  color: #4b5563;
}

.desktop-nav a,
.nav-dropdown button {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.nav-dropdown button:hover {
  color: var(--pink-600);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  width: 220px;
  padding: 10px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: all 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-dropdown-panel a {
  display: block;
  padding: 9px 12px;
  border-radius: 12px;
}

.nav-dropdown-panel a:hover {
  background: var(--pink-50);
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search input,
.hero-search input,
.filter-bar input,
.advanced-filter input,
.advanced-filter select {
  border: 1px solid var(--pink-200);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  outline: none;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.header-search input {
  width: 230px;
  padding: 10px 16px;
}

.header-search button,
.hero-search button,
.primary-btn,
.ghost-btn,
.back-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-search button,
.hero-search button,
.primary-btn {
  color: #ffffff;
  background: linear-gradient(90deg, var(--pink-500), var(--rose-500));
  box-shadow: 0 12px 30px rgba(236, 72, 153, 0.28);
}

.header-search button {
  padding: 10px 16px;
}

.header-search input:focus,
.hero-search input:focus,
.filter-bar input:focus,
.advanced-filter input:focus,
.advanced-filter select:focus {
  border-color: var(--pink-500);
  box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.12);
}

.primary-btn,
.ghost-btn {
  min-height: 44px;
  padding: 0 22px;
}

.primary-btn:hover,
.header-search button:hover,
.hero-search button:hover,
.back-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(236, 72, 153, 0.34);
}

.ghost-btn {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--pink-600);
  background: #ffffff;
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 14px;
  padding: 10px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.mobile-nav a {
  display: block;
  padding: 11px 13px;
  border-radius: 12px;
  color: #4b5563;
  font-weight: 700;
}

.mobile-nav a:hover {
  color: var(--pink-600);
  background: var(--pink-50);
}

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

.hero {
  position: relative;
  height: clamp(540px, 72vh, 680px);
  min-height: 540px;
  overflow: hidden;
  background: #111827;
}

.hero-track,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s ease;
}

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

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  filter: saturate(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 28%, rgba(236, 72, 153, 0.4), transparent 32%),
    linear-gradient(90deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.55) 48%, rgba(15, 23, 42, 0.86)),
    linear-gradient(0deg, rgba(15, 23, 42, 0.98), transparent 38%);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 360px;
  align-items: center;
  gap: 52px;
  color: #ffffff;
}

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

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 7px 13px;
  border-radius: 999px;
  color: #fff1f7;
  background: rgba(236, 72, 153, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-weight: 800;
  letter-spacing: 0.03em;
}

.hero-copy h1,
.page-hero h1,
.detail-info h1 {
  margin: 0 0 18px;
  font-size: clamp(34px, 6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.hero-copy p,
.page-hero p,
.detail-info .lead {
  margin: 0 0 24px;
  max-width: 780px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

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

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

.hero-meta span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

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

.hero-poster {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 30px;
  box-shadow: var(--shadow-strong);
  transform: rotate(2deg);
}

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

.hero-poster span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 10px 12px;
  color: #ffffff;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.58);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 700;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(12px);
}

.hero-prev {
  left: 22px;
}

.hero-next {
  right: 22px;
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
  width: 32px;
  background: #ffffff;
}

.hero-search {
  position: absolute;
  left: 50%;
  bottom: 70px;
  z-index: 8;
  display: flex;
  width: min(680px, calc(100% - 32px));
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  transform: translateX(-50%);
  backdrop-filter: blur(20px);
}

.hero-search input {
  flex: 1;
  min-width: 0;
  padding: 14px 18px;
}

.hero-search button {
  padding: 0 22px;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: -34px;
  position: relative;
  z-index: 9;
}

.stats-strip a {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.stats-strip strong {
  color: var(--pink-600);
  font-size: 28px;
  line-height: 1;
}

.stats-strip span {
  color: var(--muted);
  font-weight: 700;
}

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

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 38px);
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 8px 0 0;
  color: var(--muted);
}

.eyebrow {
  color: var(--pink-600);
  background: #ffffff;
  border-color: var(--line);
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 12px 28px rgba(190, 24, 93, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.movie-card:hover {
  border-color: rgba(236, 72, 153, 0.36);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, #fff1f7, #ffe4ef);
}

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

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(15, 23, 42, 0.76));
}

.play-chip,
.rank-badge {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
}

.play-chip {
  right: 12px;
  bottom: 12px;
  padding: 6px 10px;
  background: linear-gradient(90deg, var(--pink-500), var(--rose-500));
}

.rank-badge {
  left: 12px;
  top: 12px;
  padding: 6px 10px;
  background: rgba(15, 23, 42, 0.68);
  backdrop-filter: blur(10px);
}

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

.meta-row,
.info-row {
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.category-link {
  color: var(--pink-600);
}

.movie-card h3 {
  min-height: 56px;
  margin: 10px 0 8px;
  font-size: 18px;
  line-height: 1.35;
}

.movie-card h3 a:hover {
  color: var(--pink-600);
}

.movie-card p {
  min-height: 68px;
  margin: 0 0 12px;
  color: #4b5563;
  font-size: 14px;
}

.tag-row {
  margin-bottom: 12px;
}

.tag-row span,
.info-row span,
.detail-tags a,
.detail-meta-list span {
  color: var(--pink-600);
  background: var(--pink-50);
}

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

.ranking-panel {
  position: sticky;
  top: 90px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-weight: 900;
}

.panel-title a {
  color: var(--pink-600);
  font-size: 14px;
}

.movie-card-list {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  margin-bottom: 12px;
  border-radius: 18px;
}

.movie-card-list .poster-link img {
  height: 100%;
}

.movie-card-list .movie-card-body {
  padding: 12px 12px 12px 0;
}

.movie-card-list h3 {
  min-height: 0;
  font-size: 15px;
}

.movie-card-list p,
.movie-card-list .tag-row,
.movie-card-list .info-row {
  display: none;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag-cloud a {
  padding: 10px 15px;
  color: #4b5563;
  border: 1px solid var(--pink-200);
  border-radius: 999px;
  background: #ffffff;
  font-weight: 800;
  transition: all 0.2s ease;
}

.tag-cloud a:hover {
  color: var(--pink-600);
  border-color: var(--pink-500);
  background: var(--pink-50);
  transform: translateY(-2px);
}

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

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

.category-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(190, 24, 93, 0.08);
}

.category-card-main {
  display: block;
  padding: 22px;
  background: linear-gradient(135deg, #ffffff, #fff1f7);
}

.category-number {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--pink-600);
  font-size: 30px;
  font-weight: 900;
}

.category-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.category-card p {
  min-height: 54px;
  margin: 0 0 14px;
  color: var(--muted);
}

.category-card strong {
  color: var(--pink-600);
}

.category-samples {
  display: grid;
  gap: 4px;
  padding: 14px 18px 18px;
}

.category-samples a {
  overflow: hidden;
  padding: 8px 10px;
  color: #4b5563;
  border-radius: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.category-samples a:hover {
  color: var(--pink-600);
  background: var(--pink-50);
}

.center-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.masonry-grid {
  columns: 3 260px;
  column-gap: 22px;
}

.masonry-grid .movie-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 22px;
  break-inside: avoid;
}

.page-hero,
.detail-hero {
  padding: 64px 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.32), transparent 34%),
    linear-gradient(135deg, #111827, #831843 48%, #be123c);
}

.soft-hero,
.category-hero,
.search-hero {
  background:
    radial-gradient(circle at 82% 20%, rgba(236, 72, 153, 0.26), transparent 34%),
    linear-gradient(135deg, #111827, #4c0519 50%, #9f1239);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

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

.filter-bar,
.advanced-filter {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(190, 24, 93, 0.08);
}

.filter-bar input,
.advanced-filter input,
.advanced-filter select {
  min-height: 46px;
  padding: 0 16px;
}

.filter-bar input,
.advanced-filter input {
  flex: 1;
  min-width: 180px;
}

.advanced-filter select {
  min-width: 135px;
}

[data-result-count] {
  color: var(--pink-600);
  font-weight: 900;
  white-space: nowrap;
}

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

.detail-grid {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}

.detail-poster {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 30px;
  box-shadow: var(--shadow-strong);
}

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

.detail-info h1 {
  font-size: clamp(34px, 5vw, 60px);
}

.detail-meta-list {
  margin-bottom: 18px;
}

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

.player-section {
  padding-top: 64px;
}

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

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #030712;
  box-shadow: var(--shadow-strong);
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 10px;
  color: #ffffff;
  border: 0;
  background:
    radial-gradient(circle at 50% 46%, rgba(236, 72, 153, 0.42), transparent 28%),
    rgba(3, 7, 18, 0.52);
  cursor: pointer;
  text-align: center;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-circle {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  padding-left: 5px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-500), var(--rose-500));
  box-shadow: 0 18px 50px rgba(236, 72, 153, 0.45);
  font-size: 32px;
}

.player-overlay strong {
  font-size: 24px;
}

.player-overlay em {
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
}

.player-message {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 14px;
  margin: 0;
  color: #ffffff;
  text-align: center;
}

.detail-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.text-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(190, 24, 93, 0.08);
}

.text-card h2 {
  margin: 0 0 12px;
  color: var(--pink-600);
}

.text-card p {
  margin: 0;
  color: #374151;
}

.site-footer {
  margin-top: 72px;
  padding: 48px 0;
  border-top: 1px solid var(--line);
  background: linear-gradient(135deg, #fff1f7, #ffffff 60%, #ffe4ef);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 26px;
}

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

.site-footer h3 {
  margin: 0 0 12px;
  color: #831843;
}

.site-footer a:not(.footer-brand) {
  display: block;
  margin: 7px 0;
  color: #4b5563;
}

.site-footer a:hover {
  color: var(--pink-600);
}

.back-top {
  padding: 10px 16px;
  color: #ffffff;
}

@media (max-width: 1080px) {
  .desktop-nav,
  .header-search {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .hero-content {
    grid-template-columns: 1fr;
    align-content: center;
  }

  .hero-poster {
    display: none;
  }

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

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

  .ranking-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-container {
    width: min(100% - 24px, 1180px);
  }

  .hero {
    min-height: 620px;
  }

  .hero-content {
    gap: 20px;
  }

  .hero-copy h1,
  .page-hero h1,
  .detail-info h1 {
    font-size: 34px;
  }

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

  .hero-search {
    bottom: 72px;
    flex-direction: column;
    border-radius: 24px;
  }

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

  .hero-arrow {
    display: none;
  }

  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .detail-poster {
    width: min(260px, 100%);
  }

  .filter-bar,
  .advanced-filter {
    align-items: stretch;
    flex-direction: column;
  }

  .filter-bar input,
  .advanced-filter input,
  .advanced-filter select {
    width: 100%;
  }

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

@media (max-width: 520px) {
  .brand-text {
    font-size: 18px;
  }

  .movie-grid,
  .feature-grid,
  .category-grid,
  .large-category-grid,
  .detail-text,
  .stats-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .content-section {
    padding-top: 46px;
  }

  .movie-card h3,
  .movie-card p {
    min-height: auto;
  }
}
