:root {
  --primary: #f97316;
  --primary-dark: #ea580c;
  --primary-soft: #ffedd5;
  --accent: #f59e0b;
  --ink: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --page: #f9fafb;
  --card: #ffffff;
  --dark: #0f172a;
  --shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  --shadow-strong: 0 20px 45px rgba(15, 23, 42, 0.16);
  --radius: 18px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", sans-serif;
  color: var(--ink);
  background: var(--page);
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
  box-shadow: 0 1px 12px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--ink);
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.28);
}

.brand-name {
  font-size: 21px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: #374151;
  font-weight: 650;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--primary-dark);
  background: var(--primary-soft);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-search,
.inline-filter {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-search-input,
.page-filter-input,
.page-filter-select {
  width: 260px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  outline: none;
  padding: 11px 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.page-filter-select {
  width: 180px;
  border-radius: 14px;
}

.page-filter-input {
  width: min(100%, 480px);
  border-radius: 14px;
}

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

.search-button,
.primary-button,
.ghost-button,
.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  font-weight: 750;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.search-button,
.primary-button {
  padding: 11px 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 10px 20px rgba(249, 115, 22, 0.2);
}

.primary-button:hover,
.search-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(249, 115, 22, 0.28);
}

.primary-button.full {
  width: 100%;
}

.ghost-button {
  padding: 10px 17px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.ghost-button:hover {
  background: rgba(255, 255, 255, 0.22);
}

.ghost-button.light {
  width: 100%;
  color: #ffffff;
}

.text-button,
.section-more {
  color: var(--primary-dark);
  font-weight: 750;
}

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  background: #ffffff;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.mobile-nav a {
  display: block;
  padding: 14px 24px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

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

.site-search-results {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 120;
  display: none;
  width: min(430px, calc(100vw - 32px));
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow-strong);
}

.site-search-results.is-open {
  display: block;
}

.search-result-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  padding: 10px;
  border-bottom: 1px solid var(--line);
}

.search-result-item:last-child {
  border-bottom: 0;
}

.search-result-item:hover {
  background: #fff7ed;
}

.search-result-item img {
  width: 52px;
  height: 70px;
  border-radius: 10px;
  object-fit: cover;
  background: #111827;
}

.search-result-item strong {
  display: block;
  color: var(--ink);
  line-height: 1.3;
}

.search-result-item span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.hero-slider {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  color: #ffffff;
  background: #0f172a;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

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

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  filter: saturate(1.05);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 28%, rgba(249, 115, 22, 0.38), transparent 26%),
    linear-gradient(90deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.76) 44%, rgba(15, 23, 42, 0.18) 100%),
    linear-gradient(0deg, rgba(15, 23, 42, 0.9), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 650px;
  padding: 90px 0 110px;
}

.hero-copy {
  width: min(720px, 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 7px 13px;
  border-radius: 999px;
  color: #fed7aa;
  background: rgba(249, 115, 22, 0.16);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.hero-copy h1,
.hero-copy h2 {
  margin: 0;
  text-wrap: balance;
}

.hero-copy h1 {
  font-size: clamp(38px, 7vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.hero-copy h2 {
  margin-top: 16px;
  color: #ffedd5;
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.12;
}

.hero-copy p {
  width: min(640px, 100%);
  margin: 22px 0 0;
  color: #e5e7eb;
  font-size: clamp(17px, 2.2vw, 21px);
}

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

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

.hero-tags span,
.hero-tags a,
.tag-row span,
.detail-meta span,
.detail-meta a {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-weight: 700;
}

.hero-tags span,
.hero-tags a {
  padding: 7px 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
}

.tag-row span,
.detail-meta span,
.detail-meta a {
  padding: 6px 11px;
  color: #9a3412;
  background: #ffedd5;
  font-size: 14px;
}

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

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

.hero-prev,
.hero-next,
.hero-dot {
  border: 0;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.hero-prev,
.hero-next {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 30px;
  line-height: 1;
}

.hero-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  transition: width 0.2s ease, background 0.2s ease;
}

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

.quick-search-panel,
.section-block,
.split-section,
.filter-panel,
.page-hero,
.detail-layout,
.breadcrumb,
.category-overview-grid {
  margin-top: 34px;
}

.quick-search-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.quick-search-panel h2,
.quick-search-panel p {
  margin: 0;
}

.quick-search-panel h2 {
  font-size: 28px;
}

.quick-search-panel p {
  color: var(--muted);
}

.section-block {
  padding: 8px 0;
}

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

.section-heading.compact {
  align-items: flex-start;
  margin-bottom: 18px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
}

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

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.category-tile {
  position: relative;
  min-height: 138px;
  overflow: hidden;
  border-radius: 18px;
  background: #111827;
  box-shadow: var(--shadow);
}

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

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

.category-tile span {
  position: absolute;
  inset: auto 12px 12px 12px;
  color: #ffffff;
}

.category-tile strong,
.category-tile em {
  display: block;
  font-style: normal;
}

.category-tile strong {
  font-size: 18px;
}

.category-tile em {
  color: #e5e7eb;
  font-size: 13px;
}

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

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

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

.movie-card {
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.poster-wrap {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #111827;
}

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

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

.poster-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.55), transparent 42%);
}

.play-pill {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(249, 115, 22, 0.92);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.86);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

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

.rank-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  display: grid;
  place-items: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, #f97316, #dc2626);
  font-weight: 900;
}

.card-body {
  display: block;
  padding: 16px;
}

.card-title {
  display: -webkit-box;
  overflow: hidden;
  min-height: 46px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-line {
  display: -webkit-box;
  overflow: hidden;
  min-height: 44px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  color: #6b7280;
  font-size: 13px;
}

.card-meta span {
  padding: 4px 8px;
  border-radius: 999px;
  background: #f3f4f6;
}

.split-section {
  display: grid;
  grid-template-columns: 1.55fr 0.9fr;
  gap: 22px;
}

.section-panel,
.detail-card,
.sidebar-card,
.category-card-large,
.filter-panel {
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.section-panel,
.detail-card,
.sidebar-card {
  padding: 24px;
}

.orange-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
  background:
    radial-gradient(circle at 80% 15%, rgba(255, 255, 255, 0.28), transparent 28%),
    linear-gradient(135deg, #fb923c, #ea580c);
}

.orange-panel h2 {
  margin: 0 0 10px;
  font-size: 34px;
}

.orange-panel p {
  margin: 0 0 22px;
  color: #fff7ed;
}

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

.rank-row {
  display: grid;
  grid-template-columns: auto 58px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.rank-row:hover {
  border-color: rgba(249, 115, 22, 0.5);
  transform: translateX(2px);
}

.rank-row img {
  width: 58px;
  height: 76px;
  border-radius: 10px;
  object-fit: cover;
  background: #111827;
}

.rank-row strong,
.rank-row em {
  display: block;
}

.rank-row strong {
  font-size: 16px;
  line-height: 1.35;
}

.rank-row em {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.rank-row b {
  color: var(--primary-dark);
}

.rank-number {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  color: #ffffff;
  background: var(--primary);
  font-weight: 900;
}

.page-main {
  padding-bottom: 24px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 58px;
  border-radius: 28px;
  color: #ffffff;
  background:
    radial-gradient(circle at 85% 20%, rgba(249, 115, 22, 0.52), transparent 28%),
    linear-gradient(135deg, #0f172a, #1f2937);
  box-shadow: var(--shadow-strong);
}

.page-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

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

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

.filter-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 18px;
}

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

.category-card-large {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 22px;
  overflow: hidden;
  padding: 18px;
}

.category-cover {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  border-radius: 16px;
  background: #111827;
}

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

.category-cover span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.78);
  font-weight: 800;
}

.category-card-large h2 {
  margin: 4px 0 10px;
  font-size: 24px;
}

.category-card-large p {
  margin: 0 0 14px;
  color: var(--muted);
}

.detail-main {
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.12), transparent 30%),
    var(--page);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--primary-dark);
  font-weight: 700;
}

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

.detail-content,
.detail-sidebar {
  display: grid;
  gap: 24px;
}

.movie-player {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #000000;
  box-shadow: var(--shadow-strong);
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: #ffffff;
  background:
    radial-gradient(circle at center, rgba(249, 115, 22, 0.18), transparent 28%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.18));
}

.player-overlay span {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.94);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
  font-size: 34px;
}

.movie-player.is-playing .player-overlay {
  display: none;
}

.player-message {
  position: absolute;
  inset: auto 16px 16px 16px;
  display: none;
  padding: 12px 14px;
  border-radius: 12px;
  color: #ffffff;
  background: rgba(127, 29, 29, 0.86);
  text-align: center;
}

.movie-player.has-error .player-message {
  display: block;
}

.detail-card h1,
.detail-card h2,
.sidebar-card h2 {
  margin-top: 0;
}

.detail-card h1 {
  margin-bottom: 14px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
}

.detail-card h2,
.sidebar-card h2 {
  margin-bottom: 14px;
  font-size: 23px;
}

.detail-card p {
  color: #374151;
  font-size: 16px;
}

.lead-text {
  margin: 0 0 18px;
  padding-left: 16px;
  border-left: 4px solid var(--primary);
  color: #4b5563;
  font-size: 19px;
  font-style: italic;
}

.detail-meta,
.tag-row {
  margin: 16px 0;
}

.poster-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  object-fit: cover;
  background: #111827;
}

.poster-card h2 {
  margin-top: 18px;
  line-height: 1.25;
}

.poster-card p {
  color: var(--muted);
}

.compact-list .rank-row {
  grid-template-columns: auto 52px 1fr;
}

.compact-list .rank-row b {
  display: none;
}

.movie-card.is-compact .card-line,
.movie-card.is-compact .card-meta {
  display: none;
}

.movie-card.is-compact .card-title {
  min-height: 42px;
  font-size: 16px;
}

.standalone-card {
  max-width: 880px;
}

.button-stack {
  display: grid;
  gap: 12px;
}

.site-footer {
  margin-top: 56px;
  color: #d1d5db;
  background: #111827;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
  padding: 48px 0;
}

.site-footer h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 20px;
}

.site-footer p {
  margin: 0;
  color: #d1d5db;
}

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

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

.footer-bottom {
  padding: 18px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #9ca3af;
  text-align: center;
}

.is-hidden {
  display: none !important;
}

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

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

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

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

@media (max-width: 860px) {
  .main-nav,
  .site-search .search-button {
    display: none;
  }

  .mobile-menu-button {
    display: inline-grid;
    place-items: center;
  }

  .site-search-input {
    width: min(46vw, 260px);
  }

  .hero-slider,
  .hero-content {
    min-height: 590px;
  }

  .quick-search-panel,
  .section-heading,
  .filter-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .inline-filter {
    width: 100%;
  }

  .inline-filter .site-search-input,
  .page-filter-input,
  .page-filter-select {
    width: 100%;
  }

  .category-grid,
  .movie-grid,
  .movie-grid.wide-grid,
  .movie-grid.related-grid,
  .category-overview-grid,
  .footer-grid,
  .detail-sidebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-card-large {
    grid-template-columns: 1fr;
  }
}

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

  .header-inner {
    min-height: 66px;
    gap: 10px;
  }

  .brand-name {
    font-size: 18px;
  }

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

  .site-search {
    display: none;
  }

  .hero-slider,
  .hero-content {
    min-height: 560px;
  }

  .hero-content {
    padding: 70px 0 90px;
  }

  .hero-actions,
  .hero-tags {
    gap: 8px;
  }

  .hero-controls {
    bottom: 18px;
  }

  .quick-search-panel,
  .section-panel,
  .detail-card,
  .sidebar-card {
    padding: 18px;
  }

  .page-hero {
    padding: 34px 22px;
    border-radius: 22px;
  }

  .category-grid,
  .movie-grid,
  .movie-grid.wide-grid,
  .movie-grid.related-grid,
  .category-overview-grid,
  .footer-grid,
  .detail-sidebar {
    grid-template-columns: 1fr;
  }

  .rank-row {
    grid-template-columns: auto 52px 1fr;
  }

  .rank-row b {
    display: none;
  }
}
