:root {
  --bg: #fff7ed;
  --paper: #ffffff;
  --paper-soft: #fffbeb;
  --ink: #1f2937;
  --muted: #6b7280;
  --line: rgba(245, 158, 11, 0.22);
  --amber: #d97706;
  --orange: #f97316;
  --yellow: #facc15;
  --dark: #111827;
  --shadow: 0 20px 60px rgba(146, 64, 14, 0.16);
  --soft-shadow: 0 14px 35px rgba(120, 53, 15, 0.12);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(251, 191, 36, 0.22), transparent 34rem),
    linear-gradient(180deg, #fff7ed 0%, #fffbeb 36%, #ffffff 100%);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, #d97706 0%, #f97316 56%, #facc15 100%);
  box-shadow: 0 12px 34px rgba(194, 65, 12, 0.28);
}

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

.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: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.brand-text {
  color: #fff;
  font-size: 24px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-link,
.mobile-link {
  color: #fff;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link {
  padding: 10px 16px;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
  background: rgba(255, 255, 255, 0.18);
  color: #fff7ed;
}

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

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: #fff;
}

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

.mobile-nav.is-open {
  display: grid;
  gap: 8px;
}

.mobile-link {
  padding: 12px 14px;
}

.hero-slider {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 48%, #facc15 100%);
}

.hero-slider::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  background: linear-gradient(0deg, var(--bg), transparent);
  z-index: 1;
}

.hero-bg-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(32px);
  opacity: 0.28;
  background: #fff7ad;
  animation: pulseGlow 5s ease-in-out infinite;
}

.orb-one {
  width: 330px;
  height: 330px;
  top: 48px;
  left: 7vw;
}

.orb-two {
  width: 440px;
  height: 440px;
  right: 8vw;
  bottom: 50px;
  animation-delay: 0.9s;
}

@keyframes pulseGlow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.22;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.34;
  }
}

.hero-slides {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  min-height: 590px;
  margin: 0 auto;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.64fr);
  align-items: center;
  gap: 54px;
  opacity: 0;
  transform: translateY(24px);
  pointer-events: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

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

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #92400e;
  background: rgba(255, 247, 237, 0.72);
  border: 1px solid rgba(251, 191, 36, 0.4);
  border-radius: 999px;
  padding: 6px 13px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-copy .eyebrow,
.page-hero .eyebrow,
.detail-intro .eyebrow {
  color: #fff7ed;
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.26);
}

.hero-copy h1 {
  margin: 20px 0 18px;
  font-size: clamp(42px, 7vw, 74px);
  line-height: 1.04;
  letter-spacing: -0.05em;
  text-shadow: 0 14px 40px rgba(124, 45, 18, 0.3);
}

.hero-copy p {
  max-width: 720px;
  margin: 0 0 22px;
  color: #fff7ed;
  font-size: clamp(17px, 2vw, 22px);
}

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

.hero-tags span,
.detail-tags span,
.tag-row span {
  border-radius: 999px;
  padding: 6px 11px;
  color: #92400e;
  background: #fffbeb;
  border: 1px solid rgba(251, 191, 36, 0.44);
  font-size: 12px;
  font-weight: 700;
}

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

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

.primary-button {
  padding: 13px 24px;
  color: #fff;
  background: linear-gradient(90deg, #d97706, #ea580c);
  box-shadow: 0 16px 34px rgba(194, 65, 12, 0.28);
}

.ghost-button {
  padding: 13px 24px;
  color: #92400e;
  background: #fff;
  box-shadow: 0 14px 26px rgba(124, 45, 18, 0.14);
}

.primary-button:hover,
.ghost-button:hover,
.text-link:hover {
  transform: translateY(-2px) scale(1.02);
}

.hero-poster {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4.15;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 38px 90px rgba(124, 45, 18, 0.38);
  transform: rotate(2deg);
  background: rgba(255, 255, 255, 0.2);
}

.hero-poster::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: inherit;
  z-index: 2;
  pointer-events: none;
}

.hero-poster img,
.poster-link img,
.category-card img,
.category-overview-card img,
.ranking-poster img,
.detail-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #fde68a;
}

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

.hero-control,
.hero-dot {
  border: 0;
  cursor: pointer;
}

.hero-control {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  font-size: 30px;
  line-height: 1;
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
}

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

.search-block,
.stats-strip,
.content-section,
.breadcrumb,
.page-hero,
.detail-hero,
.player-section,
.filter-panel {
  width: min(1180px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.search-block {
  position: relative;
  z-index: 3;
  margin-top: -42px;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 460px);
  gap: 22px;
  align-items: center;
  padding: 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.search-block h2 {
  margin: 0 0 4px;
  font-size: 26px;
}

.search-block p {
  margin: 0;
  color: var(--muted);
}

.search-box,
.filter-search {
  display: grid;
  gap: 8px;
  color: #92400e;
  font-weight: 800;
}

.search-box input,
.filter-search input,
.filter-select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: 16px;
  padding: 0 16px;
  color: var(--ink);
  background: #fffaf0;
  outline: none;
}

.search-box input:focus,
.filter-search input:focus,
.filter-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.global-results {
  grid-column: 1 / -1;
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.global-results.is-visible {
  display: grid;
}

.result-link {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 18px;
  background: #fff7ed;
  border: 1px solid var(--line);
}

.result-link img {
  width: 58px;
  height: 78px;
  border-radius: 12px;
  object-fit: cover;
  background: #fde68a;
}

.result-link strong,
.result-link span {
  display: block;
}

.result-link span {
  color: var(--muted);
  font-size: 13px;
}

.stats-strip {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stats-strip div {
  min-height: 112px;
  padding: 24px;
  border-radius: 26px;
  background: var(--paper);
  box-shadow: var(--soft-shadow);
  border: 1px solid rgba(251, 191, 36, 0.16);
}

.stats-strip strong,
.stats-strip span {
  display: block;
}

.stats-strip strong {
  color: var(--amber);
  font-size: 24px;
}

.stats-strip span {
  color: var(--muted);
  margin-top: 4px;
}

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

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

.section-heading h2 {
  margin: 10px 0 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
}

.section-heading > a,
.text-link {
  color: #d97706;
  font-weight: 900;
}

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

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

.movie-card {
  overflow: hidden;
  border-radius: 26px;
  background: var(--paper);
  box-shadow: var(--soft-shadow);
  border: 1px solid rgba(251, 191, 36, 0.16);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(146, 64, 14, 0.2);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4.12;
  overflow: hidden;
  background: #fde68a;
}

.poster-link img {
  transition: transform 0.35s ease;
}

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

.type-badge,
.score-badge,
.rank-badge {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 900;
}

.type-badge {
  left: 12px;
  top: 12px;
  color: #92400e;
  background: #fffbeb;
}

.score-badge {
  right: 12px;
  bottom: 12px;
  color: #fff;
  background: rgba(217, 119, 6, 0.92);
}

.rank-badge {
  left: 12px;
  bottom: 12px;
  color: #fff;
  background: linear-gradient(90deg, #d97706, #ea580c);
}

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

.movie-card-body h2 {
  margin: 0 0 8px;
  font-size: 19px;
  line-height: 1.35;
}

.movie-card-body h2 a:hover,
.ranking-body h2 a:hover {
  color: var(--orange);
}

.movie-card-body p {
  margin: 0 0 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  color: #92400e;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 12px;
}

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

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

.warm-panel {
  padding: 42px;
  margin-top: 58px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255, 251, 235, 0.96), rgba(255, 237, 213, 0.88));
  box-shadow: var(--shadow);
}

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

.category-card,
.category-overview-card {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  border-radius: 26px;
  background: #111827;
  color: #fff;
  box-shadow: var(--soft-shadow);
}

.category-card img,
.category-overview-card img {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  filter: saturate(1.08);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.category-card:hover img,
.category-overview-card:hover img {
  transform: scale(1.08);
  opacity: 0.66;
}

.category-card::after,
.category-overview-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 24, 39, 0.82), transparent 70%);
}

.category-card span,
.category-card small,
.category-overview-card div {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
}

.category-card span {
  bottom: 54px;
  font-size: 24px;
  font-weight: 900;
}

.category-card small {
  bottom: 18px;
  color: #fde68a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.category-overview-card {
  min-height: 230px;
}

.category-overview-card div {
  bottom: 18px;
}

.category-overview-card span {
  display: block;
  margin-bottom: 6px;
  font-size: 25px;
  font-weight: 900;
}

.category-overview-card p {
  margin: 0;
  color: #ffedd5;
}

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

.ranking-column {
  position: sticky;
  top: 88px;
  padding: 24px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.slim-heading h2 {
  font-size: 28px;
}

.ranking-list {
  display: grid;
  gap: 14px;
}

.ranking-item {
  position: relative;
  display: grid;
  grid-template-columns: auto 78px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: 20px;
  background: #fffaf0;
  border: 1px solid var(--line);
}

.ranking-page-list .ranking-item {
  grid-template-columns: auto 104px 1fr auto;
}

.list-rank {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(90deg, #d97706, #f97316);
  font-weight: 900;
}

.ranking-poster {
  width: 78px;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  overflow: hidden;
}

.ranking-page-list .ranking-poster {
  width: 104px;
}

.ranking-body h2 {
  margin: 0 0 4px;
  font-size: 17px;
}

.ranking-page-list .ranking-body h2 {
  font-size: 22px;
}

.ranking-body p {
  margin: 0 0 10px;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.page-hero,
.detail-hero {
  margin-top: 34px;
  border-radius: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.24), transparent 24rem),
    linear-gradient(135deg, #d97706 0%, #f97316 55%, #facc15 100%);
  box-shadow: var(--shadow);
}

.page-hero {
  padding: 56px;
}

.page-hero h1 {
  margin: 18px 0 12px;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.08;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: #fff7ed;
  font-size: 18px;
}

.compact-hero {
  min-height: 280px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: #92400e;
  font-weight: 800;
}

.breadcrumb a:hover {
  color: var(--orange);
}

.filter-panel {
  margin-top: 26px;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 18px;
  align-items: end;
  padding: 22px;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

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

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

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

.detail-poster {
  aspect-ratio: 3 / 4.12;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 26px 64px rgba(124, 45, 18, 0.32);
  background: #fde68a;
}

.detail-intro h1 {
  margin: 16px 0 10px;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.06;
}

.lead-text {
  margin: 0 0 18px;
  color: #fff7ed;
  font-size: 19px;
}

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

.detail-meta-grid div {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.detail-meta-grid strong,
.detail-meta-grid span {
  display: block;
}

.detail-meta-grid strong {
  font-size: 12px;
  color: #ffedd5;
}

.detail-meta-grid span {
  margin-top: 4px;
  font-weight: 900;
}

.anchor-button {
  width: max-content;
}

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

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

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

.play-cover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.12), rgba(17, 24, 39, 0.56));
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.play-cover.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.play-circle {
  width: 92px;
  height: 92px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #d97706, #f97316);
  box-shadow: 0 22px 50px rgba(124, 45, 18, 0.36);
  font-size: 34px;
  padding-left: 5px;
}

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

.detail-text-block {
  padding: 30px;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.detail-text-block h2 {
  margin: 0 0 14px;
  font-size: 28px;
}

.detail-text-block p {
  margin: 0;
  color: #4b5563;
  font-size: 17px;
}

.site-footer {
  margin-top: 80px;
  padding: 56px 0 28px;
  color: #d1d5db;
  background: linear-gradient(180deg, #1f2937, #0f172a);
}

.footer-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 34px;
}

.footer-brand {
  color: #fff;
  font-size: 23px;
}

.footer-grid p {
  max-width: 480px;
  color: #9ca3af;
}

.footer-grid h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 18px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a:hover {
  color: #fbbf24;
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #9ca3af;
}

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

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

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

  .ranking-column {
    position: static;
  }
}

@media (max-width: 820px) {
  .desktop-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero-slider {
    min-height: 760px;
  }

  .hero-slides {
    min-height: 700px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 42px;
  }

  .hero-poster {
    width: min(280px, 72vw);
    margin: 0 auto;
  }

  .search-block,
  .filter-panel,
  .detail-hero,
  .detail-content,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .page-hero {
    padding: 34px;
  }

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

  .ranking-item,
  .ranking-page-list .ranking-item {
    grid-template-columns: auto 78px 1fr;
  }

  .ranking-item .text-link {
    grid-column: 2 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .header-inner {
    width: min(100% - 22px, 1180px);
  }

  .brand-text {
    font-size: 20px;
  }

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

  .movie-grid,
  .compact-grid,
  .featured-grid,
  .category-grid,
  .category-overview-grid,
  .stats-strip,
  .detail-meta-grid {
    grid-template-columns: 1fr;
  }

  .search-block,
  .stats-strip,
  .content-section,
  .breadcrumb,
  .page-hero,
  .detail-hero,
  .player-section,
  .filter-panel {
    width: min(100% - 22px, 1180px);
  }

  .warm-panel {
    padding: 24px;
  }

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

  .ranking-body p {
    -webkit-line-clamp: 3;
  }
}
