:root {
  color-scheme: dark;
  --bg: #05070d;
  --bg-soft: #0f172a;
  --panel: rgba(17, 24, 39, 0.86);
  --panel-strong: #111827;
  --panel-light: rgba(31, 41, 55, 0.72);
  --border: rgba(148, 163, 184, 0.18);
  --text: #f8fafc;
  --muted: #aeb8c8;
  --faint: #6b7280;
  --red: #dc2626;
  --red-soft: #ef4444;
  --orange: #f97316;
  --blue: #38bdf8;
  --radius: 18px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(220, 38, 38, 0.18), transparent 28rem),
    radial-gradient(circle at 85% 0%, rgba(249, 115, 22, 0.14), transparent 26rem),
    linear-gradient(180deg, #111827 0%, #030712 46%, #0b1120 100%);
}

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

img {
  display: block;
  max-width: 100%;
  background: linear-gradient(135deg, #1f2937, #111827);
}

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.96), rgba(31, 41, 55, 0.96), rgba(17, 24, 39, 0.96));
  border-bottom: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
}

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

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

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--orange));
  box-shadow: 0 12px 24px rgba(220, 38, 38, 0.25);
  font-size: 15px;
}

.brand-text {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, #ef4444, #fb923c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

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

.nav-link,
.mobile-nav-link {
  color: #d1d5db;
  font-weight: 700;
  transition: color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
  transform: translateY(-1px);
}

.nav-link.active {
  color: #fb923c;
}

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

.header-search input,
.mobile-search input,
.hero-search input,
.search-main input,
.filter-panel input,
.filter-panel select {
  min-width: 0;
  color: var(--text);
  background: rgba(31, 41, 55, 0.88);
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 999px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-search input {
  width: 240px;
  padding: 10px 14px;
}

.header-search input:focus,
.mobile-search input:focus,
.hero-search input:focus,
.search-main input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: rgba(239, 68, 68, 0.85);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.16);
}

.header-search button,
.mobile-search button,
.hero-search button,
.search-main button {
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--orange));
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.header-search button:hover,
.mobile-search button:hover,
.hero-search button:hover,
.search-main button:hover,
.btn:hover {
  transform: translateY(-1px) scale(1.02);
  filter: brightness(1.08);
}

.mobile-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: #fff;
  background: rgba(31, 41, 55, 0.86);
  cursor: pointer;
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--border);
  padding: 14px 16px 18px;
  background: rgba(17, 24, 39, 0.98);
}

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

.mobile-search input {
  flex: 1;
  padding: 11px 14px;
}

.mobile-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.mobile-nav-link {
  padding: 12px 14px;
  background: rgba(31, 41, 55, 0.68);
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.mobile-nav-link.active,
.mobile-nav-link:hover {
  color: #fff;
  background: rgba(220, 38, 38, 0.24);
}

.hero {
  position: relative;
  min-height: 76vh;
  overflow: hidden;
  isolation: isolate;
}

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

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

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

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

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 7, 18, 0.94) 0%, rgba(3, 7, 18, 0.68) 42%, rgba(3, 7, 18, 0.18) 100%),
    linear-gradient(0deg, #030712 0%, rgba(3, 7, 18, 0.2) 44%, rgba(3, 7, 18, 0.5) 100%);
}

.hero-content {
  position: absolute;
  left: max(32px, calc((100vw - 1200px) / 2));
  bottom: 78px;
  width: min(680px, calc(100% - 64px));
  z-index: 2;
}

.hero-pill,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.92), rgba(249, 115, 22, 0.9));
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(220, 38, 38, 0.2);
}

.hero-content h2,
.page-hero h1,
.detail-copy h1,
.hero-search-panel h1 {
  margin: 16px 0;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.hero-content p,
.page-hero p,
.detail-copy .lead,
.hero-search-panel p {
  max-width: 760px;
  color: #d1d5db;
  font-size: 18px;
  line-height: 1.75;
}

.hero-meta,
.card-meta,
.detail-meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #cbd5e1;
}

.hero-meta span,
.card-meta span,
.detail-meta-list span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.15);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 900;
  transition: transform 0.2s ease, filter 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--orange));
  box-shadow: 0 14px 36px rgba(220, 38, 38, 0.26);
}

.btn-ghost {
  color: #fff;
  background: rgba(31, 41, 55, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.hero-dots {
  position: absolute;
  right: max(32px, calc((100vw - 1200px) / 2));
  bottom: 42px;
  z-index: 4;
  display: flex;
  gap: 9px;
}

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

.hero-dot.is-active {
  width: 34px;
  background: var(--red-soft);
}

.hero-search-panel {
  position: absolute;
  top: 94px;
  right: max(32px, calc((100vw - 1200px) / 2));
  z-index: 3;
  width: min(430px, calc(100% - 64px));
  padding: 24px;
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-search-panel h1 {
  font-size: clamp(28px, 3.2vw, 44px);
}

.hero-search {
  margin-top: 20px;
}

.hero-search input,
.search-main input {
  flex: 1;
  width: 100%;
  padding: 13px 16px;
}

.page-section {
  padding: 56px 0;
}

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

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

.section-heading a,
.text-link {
  color: #60a5fa;
  font-weight: 800;
}

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

.category-tile {
  position: relative;
  min-height: 210px;
  padding: 18px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.category-tile:hover {
  transform: translateY(-5px);
  border-color: rgba(239, 68, 68, 0.55);
}

.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  transition: transform 0.4s ease, opacity 0.25s ease;
}

.category-tile:hover img {
  opacity: 0.52;
  transform: scale(1.08);
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 7, 18, 0.9), rgba(3, 7, 18, 0.16));
}

.category-tile span,
.category-tile p {
  position: relative;
  z-index: 1;
}

.category-tile span {
  display: block;
  margin-top: 88px;
  font-size: 22px;
  font-weight: 900;
}

.category-tile p {
  color: #d1d5db;
  line-height: 1.65;
  margin: 10px 0 0;
}

.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-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  border-color: rgba(239, 68, 68, 0.55);
  box-shadow: 0 24px 62px rgba(220, 38, 38, 0.12);
}

.card-cover {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.card-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.68), transparent 58%);
}

.card-chip,
.rank-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.card-chip.top {
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  background: rgba(220, 38, 38, 0.92);
}

.card-chip.bottom {
  right: 12px;
  bottom: 12px;
  padding: 6px 10px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.rank-badge {
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  box-shadow: 0 10px 26px rgba(220, 38, 38, 0.34);
}

.card-body {
  padding: 16px;
}

.card-body h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 18px;
  line-height: 1.35;
}

.card-body h3 a:hover,
.rank-copy h3 a:hover {
  color: #f87171;
}

.card-body p,
.rank-copy p,
.text-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.card-body p {
  min-height: 52px;
  margin: 0 0 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  gap: 8px;
  margin-bottom: 12px;
  font-size: 12px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-row span {
  color: #d1d5db;
  background: rgba(75, 85, 99, 0.5);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 12px;
}

.tinted-section {
  width: min(1200px, calc(100% - 32px));
  border-radius: 28px;
  padding: 34px;
  background: linear-gradient(90deg, rgba(30, 58, 138, 0.24), rgba(88, 28, 135, 0.2));
  border: 1px solid rgba(96, 165, 250, 0.16);
}

.movie-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(230px, 270px);
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 14px;
  scrollbar-width: thin;
}

.movie-card.rail .card-body p {
  min-height: auto;
}

.rank-section {
  padding-top: 32px;
}

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

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

.rank-item {
  display: grid;
  grid-template-columns: 54px 126px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(17, 24, 39, 0.78);
  border: 1px solid var(--border);
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.rank-item:hover {
  transform: translateY(-2px);
  background: rgba(31, 41, 55, 0.86);
  border-color: rgba(249, 115, 22, 0.46);
}

.rank-number {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--orange));
}

.rank-thumb {
  display: block;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 16 / 10;
}

.rank-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rank-copy h3 {
  margin: 0 0 6px;
}

.rank-copy p {
  margin: 0 0 9px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.intro-card,
.text-panel,
.category-overview-card,
.filter-panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.intro-card {
  padding: 34px;
}

.intro-card h2,
.text-panel h2 {
  margin-top: 0;
}

.sub-page {
  padding-bottom: 40px;
}

.page-hero,
.detail-hero {
  padding: 58px 0 20px;
}

.small-hero {
  padding-bottom: 34px;
}

.page-hero h1 {
  margin-top: 20px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  margin-top: 20px;
}

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

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

.category-overview-card {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 20px;
  padding: 18px;
}

.category-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  overflow: hidden;
  border-radius: 16px;
}

.category-preview img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.category-overview-card h2 {
  margin: 6px 0 10px;
}

.category-overview-card p {
  color: var(--muted);
  line-height: 1.7;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px 180px;
  gap: 14px;
  padding: 18px;
  margin-bottom: 24px;
}

.filter-panel label {
  display: block;
  margin-bottom: 8px;
  color: #cbd5e1;
  font-weight: 800;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  padding: 12px 14px;
}

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

.full-rank {
  gap: 12px;
}

.full-rank .rank-item {
  grid-template-columns: 64px 160px minmax(0, 1fr);
}

.empty-state {
  margin-top: 20px;
  padding: 24px;
  color: var(--muted);
  text-align: center;
  border: 1px dashed rgba(148, 163, 184, 0.24);
  border-radius: 18px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 36px;
  align-items: end;
}

.detail-poster {
  overflow: hidden;
  border-radius: 28px;
  background: var(--panel-strong);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

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

.detail-copy .lead {
  margin-bottom: 22px;
}

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

.detail-tags {
  margin-bottom: 24px;
}

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

.player-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

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

.play-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background:
    radial-gradient(circle at center, rgba(220, 38, 38, 0.16), transparent 22rem),
    rgba(0, 0, 0, 0.28);
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.play-overlay span {
  width: 82px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--orange));
  box-shadow: 0 18px 46px rgba(220, 38, 38, 0.36);
  font-size: 30px;
  padding-left: 5px;
}

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

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

.text-panel {
  padding: 28px;
}

.text-panel p {
  margin-bottom: 0;
  font-size: 16px;
}

.search-main {
  width: min(720px, 100%);
  margin-top: 22px;
}

.search-results {
  min-height: 220px;
}

.site-footer {
  margin-top: 42px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.94), #030712);
}

.footer-inner {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) 1fr 1fr;
  gap: 28px;
}

.footer-brand p {
  color: var(--muted);
  line-height: 1.7;
}

.brand-footer .brand-text {
  font-size: 21px;
}

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

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.footer-links a {
  color: var(--muted);
}

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

.footer-bottom {
  padding: 18px 16px;
  color: var(--faint);
  text-align: center;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

[hidden] {
  display: none !important;
}

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

  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

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

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

  .home-rank,
  .category-overview-grid,
  .detail-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .hero {
    min-height: 88vh;
  }

  .hero-search-panel {
    position: relative;
    top: auto;
    right: auto;
    width: min(calc(100% - 32px), 520px);
    margin: 88px auto 0;
  }

  .hero-content {
    bottom: 42px;
  }

  .hero-dots {
    right: 24px;
    bottom: 24px;
  }

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

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

  .detail-grid,
  .category-overview-card {
    grid-template-columns: 1fr;
  }

  .detail-poster {
    max-width: 320px;
  }

  .full-rank .rank-item,
  .rank-item {
    grid-template-columns: 42px 96px minmax(0, 1fr);
  }

  .rank-number {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

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

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 1200px);
  }

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

  .hero-content h2,
  .page-hero h1,
  .detail-copy h1,
  .hero-search-panel h1 {
    font-size: 34px;
  }

  .hero-content {
    left: 16px;
    width: calc(100% - 32px);
  }

  .hero-search,
  .search-main {
    flex-direction: column;
    align-items: stretch;
  }

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

  .card-body p {
    min-height: auto;
  }

  .rank-copy p {
    display: none;
  }

  .full-rank .rank-item,
  .rank-item {
    grid-template-columns: 40px 82px minmax(0, 1fr);
    gap: 10px;
    padding: 10px;
  }

  .page-section {
    padding: 38px 0;
  }

  .tinted-section {
    padding: 22px;
  }

  .text-panel {
    padding: 22px;
  }
}
