:root {
  --rose-50: #fff1f2;
  --rose-100: #ffe4e6;
  --rose-500: #f43f5e;
  --rose-600: #e11d48;
  --pink-500: #ec4899;
  --orange-500: #f97316;
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-100: #f1f5f9;
  --white: #ffffff;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.14);
  --shadow-card: 0 12px 30px rgba(15, 23, 42, 0.10);
  --radius-xl: 24px;
  --radius-lg: 18px;
}

* {
  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(--slate-900);
  background: linear-gradient(180deg, #fff7f8 0%, #ffffff 26%, #fff8f1 100%);
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(244, 63, 94, 0.12);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(244, 63, 94, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand-mark,
.footer-logo span {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--rose-500), var(--pink-500), var(--orange-500));
  box-shadow: 0 10px 20px rgba(244, 63, 94, 0.28);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

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

.brand-text em {
  margin-top: 4px;
  font-size: 12px;
  color: #64748b;
  font-style: normal;
}

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

.nav-link,
.nav-drop-button {
  border: 0;
  background: transparent;
  color: var(--slate-700);
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.nav-drop-button:hover {
  color: var(--rose-500);
}

.nav-dropdown {
  position: relative;
  padding: 22px 0;
}

.dropdown-menu {
  position: absolute;
  top: 66px;
  left: 50%;
  width: 190px;
  padding: 10px;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-card);
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 9px 12px;
  border-radius: 10px;
  color: var(--slate-700);
}

.dropdown-menu a:hover {
  background: var(--rose-50);
  color: var(--rose-600);
}

.header-search,
.mobile-search,
.wide-search,
.search-page-form {
  display: flex;
  align-items: center;
}

.header-search input,
.mobile-search input,
.wide-search input,
.search-page-form input,
.local-search {
  height: 42px;
  border: 1px solid #fecdd3;
  outline: 0;
  background: #fff;
  color: var(--slate-900);
}

.header-search input {
  width: 210px;
  padding: 0 16px;
  border-radius: 999px 0 0 999px;
}

.header-search button,
.mobile-search button,
.wide-search button,
.search-page-form button {
  height: 42px;
  border: 0;
  padding: 0 18px;
  color: #fff;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(90deg, var(--rose-500), var(--pink-500));
  cursor: pointer;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid #fecdd3;
  border-radius: 14px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--rose-500);
  border-radius: 2px;
}

.mobile-panel {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 18px;
}

.mobile-link {
  display: block;
  padding: 10px 0;
  color: var(--slate-700);
  font-weight: 600;
}

.mobile-link.active {
  color: var(--rose-500);
}

.hero-section {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: linear-gradient(90deg, var(--rose-600), var(--pink-500), var(--orange-500));
}

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

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

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.24;
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.20), transparent 28%),
    linear-gradient(90deg, rgba(159, 18, 57, 0.94) 0%, rgba(219, 39, 119, 0.78) 48%, rgba(249, 115, 22, 0.58) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  backdrop-filter: blur(12px);
}

.hero-content h1 {
  margin: 22px 0 18px;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.hero-content p {
  margin: 0;
  max-width: 680px;
  color: #fff1f2;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.75;
}

.hero-tags,
.hero-actions,
.detail-meta,
.card-meta,
.tag-row,
.filter-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

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

.hero-tags span,
.detail-meta span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.hero-actions {
  margin-top: 30px;
}

.primary-button,
.ghost-button,
.more-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-button {
  color: var(--rose-600);
  background: #fff;
  box-shadow: 0 16px 32px rgba(255, 255, 255, 0.20);
}

.ghost-button {
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.14);
}

.primary-button:hover,
.ghost-button:hover,
.more-link:hover,
.movie-card:hover {
  transform: translateY(-3px);
}

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

.hero-prev,
.hero-next,
.hero-dot {
  border: 0;
  color: #fff;
  cursor: pointer;
}

.hero-prev,
.hero-next {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-size: 30px;
  line-height: 1;
}

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

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

.hero-dot.active {
  width: 28px;
  background: #fff;
}

.section-wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0;
}

.search-panel {
  margin-top: -44px;
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: 1fr minmax(320px, 520px);
  gap: 24px;
  align-items: center;
  padding: 26px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.search-panel h2,
.section-heading h2,
.panel-title h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.15;
}

.search-panel p,
.section-heading span,
.panel-title span {
  color: var(--rose-500);
  font-weight: 800;
}

.wide-search input,
.search-page-form input {
  width: 100%;
  padding: 0 18px;
  border-radius: 999px 0 0 999px;
}

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

.section-heading a {
  color: var(--rose-600);
  font-weight: 800;
}

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

.category-card,
.category-overview {
  position: relative;
  overflow: hidden;
  min-height: 160px;
  padding: 24px;
  border-radius: var(--radius-xl);
  color: #fff;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover,
.category-overview:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.18);
}

.category-card span {
  font-size: 36px;
}

.category-card strong,
.category-overview h2 {
  display: block;
  margin-top: 16px;
  font-size: 21px;
}

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

.grad-rose { background: linear-gradient(135deg, #f43f5e, #ec4899); }
.grad-orange { background: linear-gradient(135deg, #fb7185, #f97316); }
.grad-pink { background: linear-gradient(135deg, #ec4899, #a855f7); }
.grad-purple { background: linear-gradient(135deg, #a855f7, #6366f1); }
.grad-slate { background: linear-gradient(135deg, #334155, #0f172a); }
.grad-amber { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.grad-fuchsia { background: linear-gradient(135deg, #d946ef, #f43f5e); }
.grad-cyan { background: linear-gradient(135deg, #06b6d4, #3b82f6); }
.grad-emerald { background: linear-gradient(135deg, #10b981, #0f766e); }
.grad-blue { background: linear-gradient(135deg, #3b82f6, #8b5cf6); }

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

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

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

.movie-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.movie-card:hover {
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.18);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, var(--rose-500), var(--orange-500));
}

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

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

.score-badge {
  position: absolute;
  right: 12px;
  top: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(90deg, var(--rose-500), var(--orange-500));
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.22);
}

.card-body {
  padding: 16px;
}

.card-title {
  display: -webkit-box;
  min-height: 48px;
  overflow: hidden;
  color: var(--slate-900);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.4;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-title:hover {
  color: var(--rose-600);
}

.card-body p {
  display: -webkit-box;
  min-height: 44px;
  margin: 10px 0 12px;
  overflow: hidden;
  color: #64748b;
  font-size: 14px;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-meta {
  gap: 6px;
  color: #64748b;
  font-size: 13px;
}

.card-meta span {
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--slate-100);
}

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

.tag-row span {
  color: var(--rose-600);
  background: var(--rose-50);
}

.rank-panel {
  position: sticky;
  top: 96px;
  padding: 22px;
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.panel-title {
  margin-bottom: 16px;
}

.rank-item {
  display: grid;
  grid-template-columns: 32px 58px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
}

.rank-num {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--rose-500), var(--orange-500));
}

.rank-item img {
  width: 58px;
  height: 76px;
  object-fit: cover;
  border-radius: 12px;
}

.rank-text {
  min-width: 0;
}

.rank-text strong,
.rank-text em {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rank-text strong {
  font-weight: 900;
}

.rank-text em {
  margin-top: 5px;
  color: #64748b;
  font-size: 13px;
  font-style: normal;
}

.more-link {
  width: 100%;
  margin-top: 18px;
  color: #fff;
  background: linear-gradient(90deg, var(--rose-500), var(--pink-500));
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
}

.small-hero {
  padding: 90px 0;
  background: linear-gradient(90deg, var(--rose-600), var(--pink-500), var(--orange-500));
}

.page-hero > div {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.page-hero h1,
.detail-info h1 {
  margin: 18px 0;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.08;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.90);
  font-size: 19px;
  line-height: 1.75;
}

.category-hero {
  padding: 82px 0;
}

.category-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.category-topline span {
  font-size: 38px;
}

.category-topline a {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  font-weight: 800;
}

.category-samples {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.category-samples a {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #fff;
}

.filter-area {
  padding-top: 34px;
}

.inline-search {
  margin-bottom: 18px;
}

.local-search {
  width: 100%;
  padding: 0 18px;
  border-radius: 999px;
}

.filter-chips {
  margin-bottom: 26px;
}

.filter-chip {
  border: 0;
  padding: 9px 15px;
  border-radius: 999px;
  color: var(--rose-600);
  background: var(--rose-50);
  cursor: pointer;
}

.filter-chip.active {
  color: #fff;
  background: linear-gradient(90deg, var(--rose-500), var(--pink-500));
}

.empty-state {
  padding: 46px;
  border-radius: var(--radius-xl);
  color: #64748b;
  text-align: center;
  background: #fff;
  box-shadow: var(--shadow-card);
}

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

.rank-row {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.rank-cover img {
  width: 112px;
  height: 150px;
  object-fit: cover;
  border-radius: 16px;
}

.rank-row-head {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 58px;
  gap: 10px;
  align-items: center;
}

.rank-row-head span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--rose-500), var(--orange-500));
}

.rank-row-head a {
  overflow: hidden;
  font-size: 22px;
  font-weight: 900;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rank-row-head strong {
  color: var(--rose-600);
  font-size: 22px;
}

.rank-row-body p {
  color: #64748b;
  line-height: 1.7;
}

.search-main {
  padding-top: 34px;
}

.search-page-form {
  max-width: 760px;
  margin: 0 auto 32px;
}

.detail-hero {
  min-height: 620px;
  background: var(--slate-950);
}

.detail-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  filter: blur(2px);
}

.detail-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.94), rgba(159, 18, 57, 0.82), rgba(249, 115, 22, 0.48));
}

.detail-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 64px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  color: rgba(255, 255, 255, 0.80);
  font-size: 14px;
}

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

.breadcrumb em {
  font-style: normal;
  color: #fff;
}

.detail-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  margin-top: 34px;
}

.detail-poster img {
  width: 300px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 6px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-xl);
  box-shadow: 0 26px 55px rgba(0, 0, 0, 0.32);
}

.lead-text {
  max-width: 780px;
  color: #fff1f2;
  font-size: 21px;
  line-height: 1.75;
}

.detail-meta {
  margin: 22px 0;
}

.large-tags span {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.detail-info .primary-button {
  margin-top: 26px;
}

.player-section {
  padding-bottom: 34px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #000;
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.24);
}

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

.play-button {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 0;
  color: #fff;
  background: radial-gradient(circle at center, rgba(244, 63, 94, 0.28), rgba(2, 6, 23, 0.66));
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.play-button span {
  width: 82px;
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-500), var(--pink-500));
  box-shadow: 0 18px 35px rgba(244, 63, 94, 0.35);
  font-size: 34px;
}

.play-button strong {
  font-size: 20px;
}

.player-shell.playing .play-button {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.detail-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
  padding-top: 34px;
}

.detail-content article,
.info-box {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.detail-content h2,
.info-box h2 {
  margin: 0 0 16px;
  font-size: 26px;
}

.detail-content p {
  color: #475569;
  font-size: 17px;
  line-height: 1.9;
}

.info-box dl {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 12px 14px;
  margin: 0;
}

.info-box dt {
  color: #94a3b8;
}

.info-box dd {
  margin: 0;
  color: var(--slate-900);
  font-weight: 700;
}

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

.site-footer {
  margin-top: 64px;
  color: #fff;
  background: linear-gradient(90deg, #881337, #831843, #9a3412);
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo strong {
  font-size: 22px;
}

.site-footer h3 {
  margin: 0 0 16px;
}

.site-footer p,
.site-footer a,
.footer-bottom {
  color: #ffe4e6;
}

.site-footer p {
  line-height: 1.8;
}

.site-footer ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
}

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

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

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

  .rank-panel {
    position: static;
  }

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

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

  .brand-text strong {
    font-size: 18px;
  }

  .brand-text em {
    display: none;
  }

  .hero-section {
    height: 560px;
  }

  .hero-content {
    justify-content: flex-end;
    padding-bottom: 105px;
  }

  .hero-content h1 {
    font-size: 38px;
  }

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

  .hero-actions {
    gap: 10px;
  }

  .primary-button,
  .ghost-button {
    min-height: 42px;
    padding: 0 18px;
  }

  .section-wrap {
    padding: 42px 0;
  }

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

  .category-grid,
  .overview-grid,
  .movie-grid,
  .movie-grid.four-col,
  .category-movies,
  .related-grid {
    grid-template-columns: 1fr;
  }

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

  .rank-row {
    grid-template-columns: 84px minmax(0, 1fr);
  }

  .rank-cover img {
    width: 84px;
    height: 118px;
  }

  .rank-row-head {
    grid-template-columns: 32px minmax(0, 1fr);
  }

  .rank-row-head strong {
    grid-column: 2;
  }

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

  .detail-poster img {
    width: 220px;
  }

  .detail-hero {
    min-height: auto;
  }

  .detail-inner {
    padding-bottom: 42px;
  }

  .info-box dl {
    grid-template-columns: 1fr;
  }
}
