:root {
  --bg: #fff7ed;
  --text: #111827;
  --muted: #6b7280;
  --line: #f3e4d1;
  --amber: #f59e0b;
  --orange: #ea580c;
  --dark: #111827;
  --header-a: #78350f;
  --header-b: #92400e;
  --header-c: #7c2d12;
  --shadow: 0 20px 50px rgba(120, 53, 15, 0.16);
}

body {
  min-height: 100vh;
  background: linear-gradient(180deg, #fff7ed 0%, #ffffff 36%, #fff7ed 100%);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

img {
  object-fit: cover;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #ffffff;
  background: linear-gradient(90deg, var(--header-a), var(--header-b), var(--header-c));
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

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

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

.brand-mark,
.footer-brand span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #78350f;
  background: #fcd34d;
  box-shadow: 0 6px 20px rgba(252, 211, 77, 0.32);
}

.brand:hover .brand-mark {
  transform: rotate(12deg) scale(1.05);
}

.brand-mark {
  transition: transform 0.25s ease;
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 600;
}

.nav-link {
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: #fde68a;
}

.header-search {
  width: min(280px, 25vw);
  display: flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 6px 4px 14px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.header-search input,
.mobile-search input,
.search-page-form input,
.filter-bar input,
.filter-bar select,
.search-filters select {
  width: 100%;
  outline: none;
  color: inherit;
  background: transparent;
}

.header-search input::placeholder,
.mobile-search input::placeholder,
.search-page-form input::placeholder,
.filter-bar input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.header-search button {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.menu-toggle {
  display: none;
  font-size: 1.45rem;
}

.mobile-panel {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 14px 16px 18px;
}

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

.mobile-nav {
  display: grid;
  gap: 10px;
}

.mobile-nav-link {
  font-weight: 700;
  padding: 9px 0;
}

.mobile-search {
  margin-top: 14px;
  display: flex;
  gap: 8px;
}

.mobile-search input {
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.18);
}

.mobile-search button,
.search-page-form button {
  border-radius: 999px;
  padding: 10px 18px;
  color: #78350f;
  font-weight: 800;
  background: #ffffff;
}

.hero-section {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background: linear-gradient(100deg, #78350f 0%, #9a3412 48%, #78350f 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image: radial-gradient(circle at center, rgba(255, 255, 255, 0.85) 0 2px, transparent 2px);
  background-size: 60px 60px;
  animation: softPulse 3s ease-in-out infinite;
}

@keyframes softPulse {
  0%, 100% { opacity: 0.12; }
  50% { opacity: 0.24; }
}

.hero-wrapper {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.72fr);
  gap: 48px;
  align-items: center;
  color: #ffffff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease, visibility 0.55s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

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

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #fde68a;
  font-weight: 800;
}

.hero-eyebrow span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(252, 211, 77, 0.18);
  border: 1px solid rgba(252, 211, 77, 0.32);
}

.hero-copy h1 {
  font-size: clamp(2.7rem, 6vw, 4.8rem);
  line-height: 1.03;
  margin-bottom: 24px;
  font-weight: 900;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.25);
}

.hero-copy p {
  max-width: 700px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.18rem;
  line-height: 1.8;
}

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

.hero-tags span,
.detail-tags span,
.movie-tags span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-tags span {
  color: #fff7ed;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

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

.primary-button,
.ghost-button,
.cta-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 900;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.primary-button {
  color: #78350f;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.primary-button:hover,
.cta-actions a:hover {
  transform: translateY(-2px) scale(1.02);
  background: #fef3c7;
}

.ghost-button {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
}

.ghost-button:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}

.hero-poster {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  max-height: 470px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.34);
  transform: rotate(2deg);
}

.hero-poster::after,
.movie-cover::after,
.ranking-spotlight-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.64));
  pointer-events: none;
}

.hero-poster img,
.movie-cover img,
.detail-info-card img,
.ranking-spotlight-card img,
.horizontal-cover img {
  width: 100%;
  height: 100%;
}

.hero-poster span {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 1;
  border-radius: 999px;
  padding: 8px 14px;
  color: #78350f;
  font-weight: 900;
  background: #fcd34d;
}

.hero-dots {
  position: absolute;
  left: 0;
  bottom: 34px;
  display: flex;
  gap: 10px;
  z-index: 3;
}

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

.hero-dot.is-active {
  width: 34px;
  background: #fcd34d;
}

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

.white-section {
  background: #ffffff;
}

.warm-section {
  background: linear-gradient(180deg, #fff7ed 0%, #ffffff 100%);
}

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

.section-heading.centered {
  display: block;
  text-align: center;
}

.section-heading.compact-heading {
  align-items: center;
}

.section-heading h2,
.rank-panel-title h2,
.detail-main h1,
.detail-main h2,
.detail-side h2 {
  color: #111827;
  font-weight: 900;
}

.section-heading h2,
.rank-panel-title h2 {
  font-size: clamp(1.8rem, 3vw, 2.35rem);
}

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

.section-heading a {
  color: var(--orange);
  font-weight: 900;
}

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

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

.movie-card {
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 8px 26px rgba(17, 24, 39, 0.09);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.movie-cover {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #231307;
}

.movie-card-compact .movie-cover {
  aspect-ratio: 16 / 11;
}

.movie-cover img {
  transition: transform 0.45s ease;
}

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

.movie-play,
.movie-duration,
.rank-badge {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  font-weight: 900;
}

.movie-play {
  left: 14px;
  bottom: 14px;
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.movie-card:hover .movie-play {
  opacity: 1;
}

.movie-duration {
  top: 14px;
  right: 14px;
  padding: 4px 10px;
  color: #ffffff;
  background: var(--orange);
  font-size: 0.78rem;
}

.rank-badge {
  top: 12px;
  left: 12px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #78350f;
  background: #fcd34d;
}

.movie-info {
  padding: 18px;
}

.movie-meta,
.movie-stats,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.82rem;
}

.movie-meta span,
.detail-meta span {
  display: inline-flex;
  border-radius: 999px;
  padding: 4px 9px;
  background: #fff7ed;
  color: #c2410c;
  font-weight: 800;
}

.movie-info h2 {
  margin: 12px 0 8px;
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.35;
}

.movie-info h2 a:hover {
  color: var(--orange);
}

.movie-info p {
  min-height: 3em;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.movie-tags {
  margin-top: 14px;
}

.movie-tags span,
.detail-tags span {
  color: #92400e;
  background: #fef3c7;
}

.movie-stats {
  justify-content: space-between;
  margin-top: 14px;
  font-weight: 800;
}

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

.category-card,
.overview-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 26px;
  padding: 24px;
  color: #ffffff;
  background: linear-gradient(135deg, #f97316, #92400e);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover,
.overview-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(120, 53, 15, 0.24);
}

.category-icon,
.overview-card span {
  font-size: 2.3rem;
  margin-bottom: 18px;
}

.category-card strong,
.overview-card strong {
  font-size: 1.28rem;
  font-weight: 900;
}

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

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

.rank-panel {
  position: sticky;
  top: 88px;
  border-radius: 28px;
  padding: 24px;
  background: linear-gradient(180deg, #111827, #030712);
  color: #ffffff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.rank-panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.rank-panel-title h2 {
  color: #ffffff;
}

.rank-panel-title span {
  color: #fcd34d;
  font-weight: 900;
}

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

.horizontal-card {
  position: relative;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  border-radius: 18px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease, transform 0.2s ease;
}

.white-section .horizontal-card,
.detail-side .horizontal-card {
  background: #fff7ed;
}

.horizontal-card:hover {
  transform: translateX(4px);
  background: rgba(245, 158, 11, 0.18);
}

.horizontal-cover {
  width: 84px;
  height: 62px;
  overflow: hidden;
  border-radius: 14px;
  background: #2a1608;
}

.horizontal-info {
  display: grid;
  min-width: 0;
}

.horizontal-info strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 900;
}

.horizontal-info em,
.horizontal-info small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--muted);
  font-style: normal;
}

.rank-panel .horizontal-info em,
.rank-panel .horizontal-info small {
  color: rgba(255, 255, 255, 0.65);
}

.mini-rank {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #78350f;
  background: #fcd34d;
  font-weight: 900;
}

.cta-section {
  padding-top: 20px;
  background: #ffffff;
}

.cta-card {
  border-radius: 34px;
  padding: clamp(32px, 6vw, 64px);
  text-align: center;
  color: #ffffff;
  background: linear-gradient(90deg, #f97316, #f59e0b, #ea580c);
  box-shadow: var(--shadow);
}

.cta-card h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
}

.cta-card p {
  max-width: 720px;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.cta-actions {
  justify-content: center;
}

.cta-actions a {
  color: #ea580c;
  background: #ffffff;
}

.page-hero,
.detail-hero {
  color: #ffffff;
  background: linear-gradient(105deg, #78350f, #9a3412, #111827);
}

.page-hero {
  padding: 72px 0;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
  font-weight: 900;
}

.page-hero p {
  max-width: 820px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
  line-height: 1.8;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

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

.category-switches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.category-switches a {
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-weight: 800;
}

.filter-bar,
.search-filters {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 160px 160px;
  gap: 12px;
  margin-bottom: 26px;
}

.filter-bar input,
.filter-bar select,
.search-filters select,
.search-page-form input {
  border-radius: 999px;
  border: 1px solid #fed7aa;
  padding: 12px 16px;
  color: #111827;
  background: #fff7ed;
}

.filter-bar input::placeholder,
.search-page-form input::placeholder {
  color: #9ca3af;
}

.empty-state {
  display: none;
  border-radius: 22px;
  padding: 30px;
  text-align: center;
  color: #92400e;
  background: #fef3c7;
  font-weight: 900;
}

.empty-state.is-visible {
  display: block;
}

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

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

.ranking-spotlight-card img {
  position: absolute;
  inset: 0;
}

.ranking-spotlight-card span,
.ranking-spotlight-card strong,
.ranking-spotlight-card em {
  position: relative;
  z-index: 2;
}

.ranking-spotlight-card span {
  width: max-content;
  border-radius: 999px;
  padding: 7px 12px;
  margin-bottom: 12px;
  color: #78350f;
  background: #fcd34d;
  font-weight: 900;
}

.ranking-spotlight-card strong {
  font-size: 1.4rem;
  font-weight: 900;
}

.ranking-spotlight-card em {
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
}

.wide-rank-list .horizontal-card {
  grid-template-columns: 110px minmax(0, 1fr) 42px;
  padding: 14px;
}

.wide-rank-list .horizontal-cover {
  width: 110px;
  height: 76px;
}

.search-page-form {
  display: flex;
  gap: 12px;
  max-width: 760px;
  margin-top: 28px;
}

.search-page-form input {
  color: #111827;
  background: rgba(255, 255, 255, 0.94);
}

.search-filters {
  max-width: 520px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 14px;
}

.detail-hero {
  padding: 42px 0 58px;
}

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

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #000000;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.32);
  aspect-ratio: 16 / 9;
}

.movie-video {
  width: 100%;
  height: 100%;
  background: #000000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.62));
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.play-circle {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #78350f;
  background: #fcd34d;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
  font-size: 2rem;
}

.player-overlay strong {
  max-width: 80%;
  text-align: center;
  font-size: 1.35rem;
  font-weight: 900;
}

.detail-info-card {
  overflow: hidden;
  border-radius: 28px;
  padding: 14px;
  color: #111827;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.detail-info-card img {
  aspect-ratio: 3 / 4;
  border-radius: 22px;
  background: #2a1608;
}

.detail-score {
  margin: 14px 0;
  color: #92400e;
  font-weight: 900;
  font-size: 1.2rem;
}

.full-button {
  width: 100%;
  background: linear-gradient(90deg, #f59e0b, #f97316);
  color: #ffffff;
}

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

.detail-main {
  border-radius: 28px;
  padding: clamp(24px, 4vw, 42px);
  background: #ffffff;
  box-shadow: 0 8px 30px rgba(17, 24, 39, 0.08);
}

.detail-main h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
}

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

.lead-text {
  color: #9a3412;
  font-size: 1.1rem;
  font-weight: 800;
}

.detail-main h2 {
  margin: 28px 0 12px;
  font-size: 1.45rem;
}

.detail-main p {
  color: #374151;
  line-height: 1.9;
}

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

.detail-side {
  position: sticky;
  top: 88px;
  border-radius: 28px;
  padding: 22px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.detail-side h2 {
  margin-bottom: 14px;
  font-size: 1.35rem;
}

.side-links {
  display: grid;
  gap: 12px;
}

.site-footer {
  color: #d1d5db;
  background: linear-gradient(180deg, #111827, #000000);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 30px;
  padding: 48px 0;
}

.footer-brand {
  color: #ffffff;
  font-size: 1.25rem;
}

.site-footer p {
  margin-top: 14px;
  color: #9ca3af;
  line-height: 1.8;
}

.site-footer h2 {
  margin-bottom: 14px;
  color: #ffffff;
  font-weight: 900;
}

.site-footer li + li {
  margin-top: 8px;
}

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

.footer-bottom {
  border-top: 1px solid #1f2937;
  padding: 22px 16px;
  text-align: center;
  color: #6b7280;
}

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

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

  .rank-panel,
  .detail-side {
    position: static;
  }
}

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

  .menu-toggle {
    display: block;
  }

  .hero-section,
  .hero-wrapper {
    min-height: 760px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 38px 0 70px;
  }

  .hero-poster {
    max-height: 320px;
    transform: none;
  }

  .hero-dots {
    bottom: 24px;
  }

  .movie-grid,
  .small-grid,
  .category-grid,
  .overview-grid,
  .ranking-spotlight,
  .detail-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .filter-bar {
    grid-template-columns: 1fr;
  }
}

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

  .hero-copy h1,
  .page-hero h1 {
    font-size: 2.35rem;
  }

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

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

  .section-heading {
    display: block;
  }

  .section-heading a {
    display: inline-flex;
    margin-top: 12px;
  }

  .movie-grid,
  .small-grid,
  .category-grid,
  .overview-grid,
  .ranking-spotlight,
  .detail-grid,
  .detail-content-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .search-page-form,
  .search-filters {
    grid-template-columns: 1fr;
    display: grid;
  }

  .wide-rank-list .horizontal-card,
  .horizontal-card {
    grid-template-columns: 80px minmax(0, 1fr) 34px;
  }

  .wide-rank-list .horizontal-cover,
  .horizontal-cover {
    width: 80px;
    height: 58px;
  }

  .detail-info-card {
    display: none;
  }
}
