* {
  box-sizing: border-box;
}

:root {
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-850: #152035;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-500: #64748b;
  --slate-200: #e2e8f0;
  --amber-600: #d97706;
  --amber-500: #f59e0b;
  --orange-600: #ea580c;
  --page-bg: #f8fafc;
  --text: #0f172a;
  --muted: #64748b;
  --radius: 22px;
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 55%, #f8fafc 100%);
  color: var(--text);
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #fff;
  background: linear-gradient(90deg, var(--slate-950), var(--slate-800), var(--slate-950));
  box-shadow: 0 16px 40px rgba(2, 6, 23, 0.32);
}

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

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
  box-shadow: 0 12px 25px rgba(245, 158, 11, 0.35);
}

.brand-text strong {
  display: block;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: 0.5px;
  background: linear-gradient(90deg, #fbbf24, #fb923c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-text small {
  display: block;
  margin-top: 2px;
  color: #94a3b8;
  font-size: 12px;
}

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

.desktop-nav a,
.nav-more > button {
  color: #cbd5e1;
  border: 0;
  border-radius: 12px;
  padding: 10px 14px;
  background: transparent;
  cursor: pointer;
  transition: 0.25s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.nav-more:hover > button {
  color: #fff;
  background: var(--amber-500);
  box-shadow: 0 10px 24px rgba(245, 158, 11, 0.28);
}

.nav-more {
  position: relative;
}

.nav-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 180px;
  padding: 10px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.96);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: 0.2s ease;
}

.nav-more:hover .nav-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-menu a {
  display: block;
  padding: 9px 10px;
}

.top-search {
  display: flex;
  align-items: center;
  min-width: 230px;
  border-radius: 14px;
  background: rgba(51, 65, 85, 0.62);
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.15);
}

.top-search input {
  width: 150px;
  color: #fff;
  border: 0;
  outline: 0;
  padding: 11px 12px;
  background: transparent;
}

.top-search input::placeholder {
  color: #94a3b8;
}

.top-search button {
  color: #fff;
  border: 0;
  padding: 11px 14px;
  background: var(--amber-500);
  cursor: pointer;
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: rgba(51, 65, 85, 0.8);
}

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

.mobile-nav a {
  display: block;
  margin: 6px 0;
  padding: 11px 14px;
  border-radius: 12px;
  color: #cbd5e1;
  background: rgba(51, 65, 85, 0.45);
}

.mobile-nav a.active {
  color: #fff;
  background: var(--amber-500);
}

.hero {
  position: relative;
  height: 590px;
  overflow: hidden;
  background: var(--slate-950);
}

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

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

.hero-slide.is-active {
  opacity: 1;
  z-index: 2;
}

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

.hero-overlay {
  background:
    radial-gradient(circle at 18% 20%, rgba(245, 158, 11, 0.32), transparent 34%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.92) 0%, rgba(15, 23, 42, 0.72) 42%, rgba(15, 23, 42, 0.2) 100%),
    linear-gradient(0deg, rgba(2, 6, 23, 0.92), transparent 44%);
}

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

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fed7aa;
  background: rgba(15, 23, 42, 0.62);
  border: 1px solid rgba(251, 191, 36, 0.28);
  backdrop-filter: blur(12px);
}

.hero h1 {
  width: min(760px, 100%);
  margin: 0;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 1;
  letter-spacing: -2.2px;
}

.hero p {
  width: min(720px, 100%);
  margin: 22px 0 0;
  color: #dbeafe;
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.75;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-tags span,
.detail-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  color: #92400e;
  background: linear-gradient(90deg, #fef3c7, #ffedd5);
  font-size: 13px;
  font-weight: 700;
}

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

.primary-btn,
.ghost-btn,
.text-link,
.side-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-weight: 800;
  transition: 0.25s ease;
}

.primary-btn {
  color: #fff;
  padding: 13px 20px;
  background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
  box-shadow: 0 18px 36px rgba(245, 158, 11, 0.25);
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 44px rgba(245, 158, 11, 0.36);
}

.ghost-btn {
  color: #fff;
  padding: 12px 18px;
  background: rgba(15, 23, 42, 0.54);
  border: 1px solid rgba(226, 232, 240, 0.24);
  backdrop-filter: blur(12px);
}

.ghost-btn:hover {
  border-color: rgba(245, 158, 11, 0.75);
  background: rgba(245, 158, 11, 0.18);
}

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

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

.hero-dots button.is-active {
  width: 34px;
  background: var(--amber-500);
}

.section {
  padding: 64px 0;
}

.section-heading {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 28px;
}

.section-heading > span {
  width: 5px;
  height: 38px;
  border-radius: 99px;
  background: linear-gradient(180deg, var(--amber-500), var(--orange-600));
  flex-shrink: 0;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.15;
}

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

.light-heading h2,
.light-heading p {
  color: #fff;
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  transition: 0.3s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 158, 11, 0.38);
  box-shadow: 0 28px 56px rgba(15, 23, 42, 0.14);
}

.movie-cover {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--slate-900);
}

.movie-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.45s ease;
}

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

.movie-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(180deg, transparent, rgba(2, 6, 23, 0.74));
  transition: 0.3s ease;
}

.movie-card:hover .movie-cover::after {
  opacity: 1;
}

.movie-year,
.movie-genre {
  position: absolute;
  z-index: 2;
  top: 12px;
  border-radius: 10px;
  padding: 5px 8px;
  color: #fff;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 700;
}

.movie-year {
  left: 12px;
}

.movie-genre {
  right: 12px;
}

.movie-play {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #fff;
  background: var(--amber-500);
  box-shadow: 0 18px 36px rgba(2, 6, 23, 0.34);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.6);
  transition: 0.3s ease;
}

.movie-card:hover .movie-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.movie-body {
  padding: 16px;
}

.movie-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
}

.movie-meta span:first-child {
  color: #b45309;
  border-radius: 8px;
  padding: 4px 8px;
  background: #fef3c7;
  font-weight: 700;
}

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

.movie-card h3 a:hover,
.rank-content h3 a:hover,
.mini-title:hover {
  color: var(--amber-600);
}

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

.warm-section {
  padding: 48px;
  border-radius: 32px;
  background: linear-gradient(135deg, #fffbeb, #fff7ed);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

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

.category-entry-grid a {
  min-height: 150px;
  padding: 22px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
  transition: 0.25s ease;
}

.category-entry-grid a:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 158, 11, 0.45);
}

.category-entry-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
}

.category-entry-grid span {
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.dark-panel {
  padding: 48px;
  border-radius: 32px;
  background: linear-gradient(135deg, var(--slate-950), var(--slate-800));
  box-shadow: var(--shadow);
}

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

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

.rank-row {
  display: grid;
  grid-template-columns: 54px 116px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
}

.dark-panel .rank-row {
  background: rgba(255, 255, 255, 0.96);
}

.rank-index {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
}

.rank-poster {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 14px;
  background: var(--slate-900);
}

.rank-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.35s ease;
}

.rank-content h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.rank-meta {
  color: #b45309;
  font-size: 13px;
  font-weight: 700;
}

.rank-content p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.center-action {
  margin-top: 28px;
  text-align: center;
}

.page-hero {
  color: #fff;
  background:
    radial-gradient(circle at 16% 20%, rgba(245, 158, 11, 0.28), transparent 30%),
    linear-gradient(135deg, var(--slate-950), var(--slate-800));
}

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

.page-hero h1 {
  margin: 16px 0 0;
  font-size: clamp(36px, 5vw, 58px);
  letter-spacing: -1.4px;
}

.page-hero p {
  width: min(760px, 100%);
  margin: 16px 0 0;
  color: #cbd5e1;
  line-height: 1.8;
  font-size: 18px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: #f8fafc;
  font-size: 14px;
}

.breadcrumb a {
  color: #fbbf24;
}

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

.category-tile {
  padding: 24px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.category-tile-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.category-tile h2 {
  margin: 0 0 8px;
  font-size: 24px;
}

.category-tile p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.text-link,
.side-more {
  color: var(--amber-600);
  white-space: nowrap;
}

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

.mini-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid #eef2f7;
  transition: 0.25s ease;
}

.mini-card:hover {
  border-color: rgba(245, 158, 11, 0.35);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.mini-cover {
  display: block;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: var(--slate-900);
}

.mini-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.35s ease;
}

.mini-title {
  display: block;
  margin-bottom: 6px;
  font-weight: 800;
}

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

.filter-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 180px 180px;
  gap: 14px;
  margin-bottom: 26px;
  padding: 18px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.07);
}

.filter-toolbar label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.filter-toolbar input,
.filter-toolbar select {
  width: 100%;
  min-height: 44px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 0 14px;
  outline: none;
  background: #f8fafc;
  color: var(--text);
  transition: 0.2s ease;
}

.filter-toolbar input:focus,
.filter-toolbar select:focus {
  border-color: var(--amber-500);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.13);
}

.empty-state {
  display: none;
  padding: 42px 20px;
  text-align: center;
  color: var(--muted);
  border-radius: 22px;
  background: #fff;
  border: 1px dashed #cbd5e1;
}

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

.ranking-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 26px;
  align-items: start;
}

.side-panel,
.related-panel,
.detail-card,
.player-card {
  border-radius: 24px;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.side-panel,
.related-panel {
  position: sticky;
  top: 100px;
  padding: 22px;
}

.side-panel h2,
.related-panel h2 {
  margin: 0 0 18px;
  font-size: 22px;
}

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

.side-links a {
  padding: 12px 14px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  transition: 0.2s ease;
}

.side-links a:hover {
  color: var(--amber-600);
  border-color: rgba(245, 158, 11, 0.35);
}

.detail-wrap {
  padding: 32px 0 74px;
}

.detail-breadcrumb {
  color: var(--muted);
  margin-bottom: 18px;
}

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

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

.player-card {
  overflow: hidden;
  background: #000;
}

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

.player-panel video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.player-start {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.36);
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: 0.25s ease;
}

.player-start span {
  margin-left: 5px;
  font-size: 32px;
}

.player-start:hover {
  transform: translate(-50%, -50%) scale(1.08);
}

.player-panel.is-playing .player-start {
  opacity: 0;
  pointer-events: none;
}

.detail-card {
  padding: 28px;
}

.detail-card h1 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 28px;
}

.detail-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 12px;
  color: #334155;
  background: #f1f5f9;
  font-weight: 700;
  font-size: 14px;
}

.detail-section {
  margin-top: 24px;
}

.detail-section h2,
.review-box h2 {
  margin: 0 0 10px;
  font-size: 21px;
}

.detail-section p,
.review-box p {
  margin: 0;
  color: #475569;
  line-height: 1.9;
  font-size: 16px;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.review-box {
  margin-top: 26px;
  padding: 22px;
  border-left: 5px solid var(--amber-500);
  border-radius: 18px;
  background: linear-gradient(135deg, #fffbeb, #fff7ed);
}

.related-panel .mini-list {
  margin-bottom: 18px;
}

.site-footer {
  color: #cbd5e1;
  background: linear-gradient(180deg, var(--slate-900), var(--slate-950));
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 28px;
  display: grid;
  grid-template-columns: 1.2fr 0.6fr 1fr;
  gap: 38px;
}

.footer-brand p {
  max-width: 460px;
  color: #94a3b8;
  line-height: 1.8;
}

.inline-brand .brand-mark {
  width: 38px;
  height: 38px;
}

.site-footer h3 {
  color: #fff;
  margin: 0 0 14px;
}

.site-footer a {
  display: block;
  margin: 8px 0;
  color: #94a3b8;
  transition: 0.2s ease;
}

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

.footer-links {
  columns: 2;
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 28px;
  color: #64748b;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  font-size: 14px;
}

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

  .mobile-toggle {
    display: block;
  }

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

  .top-search {
    margin-left: auto;
  }

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

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

  .compact-rank,
  .category-overview,
  .ranking-layout,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .side-panel,
  .related-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .header-inner {
    height: auto;
    min-height: 72px;
    flex-wrap: wrap;
    padding: 12px 0;
  }

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

  .brand-text small {
    display: none;
  }

  .top-search {
    order: 3;
    width: 100%;
  }

  .top-search input {
    width: 100%;
    flex: 1;
  }

  .hero {
    height: 650px;
  }

  .hero h1 {
    letter-spacing: -1px;
  }

  .hero-actions {
    width: 100%;
  }

  .primary-btn,
  .ghost-btn {
    width: 100%;
  }

  .section {
    padding: 42px 0;
  }

  .warm-section,
  .dark-panel {
    width: min(100% - 32px, 1180px);
    padding: 26px;
  }

  .movie-grid,
  .featured-grid,
  .category-entry-grid {
    grid-template-columns: 1fr;
  }

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

  .rank-row {
    grid-template-columns: 48px 96px 1fr;
  }

  .rank-content p {
    display: none;
  }

  .category-tile-head {
    display: grid;
  }

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

  .footer-links {
    columns: 1;
  }
}
