:root {
  --color-bg: #fafaf9;
  --color-surface: #ffffff;
  --color-surface-soft: #f8fafc;
  --color-ink: #0f172a;
  --color-muted: #57534e;
  --color-soft: #e7e5e4;
  --color-accent: #d97706;
  --color-accent-strong: #b45309;
  --color-accent-soft: #fef3c7;
  --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.10), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-hero: 0 25px 80px rgba(15, 23, 42, 0.35);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-bg);
  line-height: 1.65;
}

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

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

img.is-hidden {
  opacity: 0;
}

button,
input {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(231, 229, 228, 0.9);
}

.header-inner {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}

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

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #0f172a, #475569 55%, #d97706);
  box-shadow: var(--shadow-card);
}

.brand-text {
  font-size: 20px;
  letter-spacing: -0.02em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #334155;
  font-weight: 600;
}

.primary-nav a {
  transition: color 0.2s ease;
}

.primary-nav a:hover {
  color: var(--color-accent-strong);
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--color-soft);
  background: #ffffff;
  color: var(--color-ink);
}

.site-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 320px;
}

.site-search input {
  width: 100%;
  height: 42px;
  padding: 0 16px;
  border: 1px solid #d6d3d1;
  border-radius: 999px;
  color: var(--color-ink);
  background: #ffffff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-search input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.14);
}

.site-search button {
  height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: var(--color-accent);
  cursor: pointer;
}

.search-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(460px, 92vw);
  max-height: 460px;
  overflow: auto;
  padding: 10px;
  border: 1px solid var(--color-soft);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.18);
  display: none;
}

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

.search-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  padding: 10px;
  border-radius: 14px;
}

.search-item:hover {
  background: var(--color-surface-soft);
}

.search-thumb {
  width: 52px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, #0f172a, #d97706);
  overflow: hidden;
}

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

.search-title {
  display: block;
  font-weight: 700;
  color: var(--color-ink);
}

.search-meta {
  display: block;
  font-size: 12px;
  color: var(--color-muted);
}

.hero-slider {
  position: relative;
  min-height: 500px;
  height: 70vh;
  overflow: hidden;
  background: #0f172a;
}

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

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

.hero-visual {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(217, 119, 6, 0.38), transparent 30%),
    linear-gradient(135deg, #0f172a, #1e293b 50%, #111827);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.36;
  filter: saturate(1.08) contrast(1.08);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.96) 0%, rgba(15, 23, 42, 0.78) 48%, rgba(15, 23, 42, 0.20) 100%),
    linear-gradient(0deg, rgba(15, 23, 42, 0.62), rgba(15, 23, 42, 0.05));
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

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

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f59e0b;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 16px 0 14px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

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

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

.hero-meta {
  margin-top: 24px;
  color: #d6d3d1;
}

.hero-meta span,
.detail-meta span,
.movie-meta span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
}

.hero-meta span {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.12);
}

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

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

.hero-tags span,
.tag-row span,
.tag-cloud span,
.genre-links a {
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.hero-tags span {
  color: #fbbf24;
  background: rgba(217, 119, 6, 0.18);
  border: 1px solid rgba(245, 158, 11, 0.32);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #ffffff;
  background: var(--color-accent);
  box-shadow: 0 10px 28px rgba(217, 119, 6, 0.28);
}

.btn-primary:hover {
  background: var(--color-accent-strong);
}

.btn-ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn-light {
  color: var(--color-ink);
  background: #ffffff;
}

.btn-block {
  width: 100%;
}

.hero-control {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 44px;
  height: 44px;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.10);
  cursor: pointer;
  font-size: 32px;
  line-height: 1;
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

.hero-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
}

.hero-dots button.is-active {
  width: 30px;
  background: #f59e0b;
}

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

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

.section-heading h2,
.category-overview-head h2,
.detail-card h1,
.sub-hero h1 {
  margin: 6px 0 8px;
  color: var(--color-ink);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.section-heading h2,
.category-overview-head h2 {
  font-size: clamp(28px, 4vw, 42px);
}

.section-heading p,
.category-overview-head p {
  margin: 0;
  color: var(--color-muted);
  max-width: 720px;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-accent-strong);
  font-weight: 800;
  white-space: nowrap;
}

.movie-grid {
  display: grid;
  gap: 22px;
}

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

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

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

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

.movie-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.14);
}

.poster-frame {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 15%, rgba(217, 119, 6, 0.36), transparent 28%),
    linear-gradient(135deg, #0f172a, #334155);
}

.poster-frame.large-poster {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-md);
}

.poster-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, opacity 0.2s ease;
}

.movie-card:hover .poster-image,
.horizontal-card:hover .poster-image,
.rank-row:hover .poster-image {
  transform: scale(1.08);
}

.poster-badge {
  position: absolute;
  right: 10px;
  top: 10px;
  display: inline-grid;
  place-items: center;
  min-width: 40px;
  height: 28px;
  padding: 0 8px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.78);
  font-weight: 800;
  font-size: 13px;
}

.movie-card-body {
  display: flex;
  min-height: 184px;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
}

.movie-card-body strong {
  color: var(--color-ink);
  font-size: 18px;
  line-height: 1.25;
}

.movie-meta {
  color: #78716c;
  font-size: 12px;
  font-weight: 700;
}

.movie-meta span {
  padding: 3px 8px;
  background: #f5f5f4;
}

.movie-desc {
  color: var(--color-muted);
  font-size: 14px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.tag-row {
  margin-top: auto;
}

.tag-row span {
  color: #92400e;
  background: var(--color-accent-soft);
}

.feature-panel {
  padding: 42px;
  border-radius: var(--radius-lg);
  background: #f8fafc;
  box-shadow: inset 0 0 0 1px rgba(226, 232, 240, 0.8);
}

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

.category-tile {
  min-height: 210px;
  padding: 22px;
  border-radius: var(--radius-md);
  color: #ffffff;
  background:
    radial-gradient(circle at 85% 12%, rgba(245, 158, 11, 0.40), transparent 30%),
    linear-gradient(135deg, #0f172a, #334155);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease;
}

.category-tile:hover {
  transform: translateY(-4px);
}

.category-name {
  display: inline-flex;
  margin-bottom: 14px;
  color: #fbbf24;
  font-weight: 800;
}

.category-tile strong {
  display: block;
  line-height: 1.45;
}

.category-samples {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 18px;
}

.category-samples span {
  padding: 4px 8px;
  border-radius: 999px;
  color: #e7e5e4;
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px;
}

.year-wrapper {
  display: grid;
  gap: 28px;
}

.year-strip {
  padding: 24px;
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.year-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.year-title span {
  color: var(--color-ink);
  font-size: 26px;
  font-weight: 900;
}

.year-title a {
  color: var(--color-accent-strong);
  font-weight: 800;
}

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

.horizontal-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 14px;
  min-width: 0;
  padding: 10px;
  border-radius: 16px;
  background: #f8fafc;
  transition: background 0.2s ease;
}

.horizontal-card:hover {
  background: #fef3c7;
}

.horizontal-cover {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(135deg, #0f172a, #d97706);
}

.horizontal-body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}

.horizontal-body strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.horizontal-body span,
.horizontal-body small {
  color: var(--color-muted);
  font-size: 12px;
}

.sub-hero {
  padding: 86px 0 76px;
  color: #ffffff;
  background:
    radial-gradient(circle at 16% 20%, rgba(217, 119, 6, 0.42), transparent 30%),
    linear-gradient(135deg, #0f172a, #1e293b 58%, #475569);
}

.sub-hero h1 {
  color: #ffffff;
  font-size: clamp(40px, 6vw, 70px);
}

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

.pill-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.pill-nav a {
  padding: 9px 15px;
  border-radius: 999px;
  color: var(--color-muted);
  background: #ffffff;
  border: 1px solid var(--color-soft);
  font-weight: 800;
}

.pill-nav a.is-active,
.pill-nav a:hover {
  color: #ffffff;
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.category-overview {
  display: grid;
  gap: 54px;
}

.category-overview-block {
  padding-bottom: 54px;
  border-bottom: 1px solid var(--color-soft);
}

.category-overview-block:last-child {
  border-bottom: 0;
}

.category-overview-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 56px 116px 1fr 70px;
  gap: 16px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.rank-row:hover {
  background: #f8fafc;
}

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

.rank-cover {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(135deg, #0f172a, #d97706);
}

.rank-info {
  min-width: 0;
}

.rank-info strong,
.rank-info small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-info strong {
  font-size: 18px;
}

.rank-info small {
  color: var(--color-muted);
}

.rank-score {
  color: var(--color-accent-strong);
  font-size: 24px;
  font-weight: 900;
  text-align: right;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 30px;
  padding: 38px 0 76px;
}

.detail-main,
.detail-sidebar {
  display: grid;
  align-content: start;
  gap: 22px;
}

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

.breadcrumb a {
  color: var(--color-accent-strong);
  font-weight: 800;
}

.player-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #000000;
  box-shadow: var(--shadow-hero);
}

.video-element {
  display: block;
  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: 12px;
  border: 0;
  color: #ffffff;
  background: radial-gradient(circle at center, rgba(15, 23, 42, 0.26), rgba(15, 23, 42, 0.78));
  cursor: pointer;
}

.player-shell.is-playing .player-overlay {
  opacity: 0;
  pointer-events: none;
}

.play-icon {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--color-accent);
  box-shadow: 0 18px 50px rgba(217, 119, 6, 0.4);
  font-size: 30px;
  text-indent: 4px;
}

.player-state {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 4;
  padding: 7px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.58);
  font-size: 13px;
  display: none;
}

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

.detail-card,
.cover-card,
.sidebar-card {
  padding: 26px;
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.detail-card h1 {
  font-size: clamp(34px, 5vw, 54px);
}

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

.detail-meta span {
  padding: 6px 12px;
  color: #475569;
  background: #f8fafc;
  font-weight: 800;
}

.lead-text {
  margin: 0 0 18px;
  color: var(--color-muted);
  font-size: 19px;
}

.genre-links a,
.tag-cloud span {
  color: #92400e;
  background: var(--color-accent-soft);
}

.prose-card h2 {
  margin: 0 0 12px;
  color: var(--color-ink);
  font-size: 24px;
  letter-spacing: -0.02em;
}

.prose-card p {
  margin: 0 0 24px;
  color: #44403c;
  font-size: 17px;
}

.cover-card h2,
.sidebar-card h2 {
  margin: 18px 0 8px;
  color: var(--color-ink);
}

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

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

.sidebar-list .horizontal-card {
  grid-template-columns: 104px 1fr;
}

.sitemap-layout {
  display: grid;
  gap: 32px;
}

.sitemap-group {
  padding: 26px;
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.sitemap-group h2 {
  margin: 0 0 18px;
  font-size: 28px;
}

.sitemap-group h2 a {
  color: var(--color-ink);
}

.sitemap-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 4 220px;
  column-gap: 28px;
}

.sitemap-group li {
  break-inside: avoid;
  margin-bottom: 10px;
}

.sitemap-group a {
  display: inline-flex;
  flex-direction: column;
  color: var(--color-ink);
  font-weight: 700;
}

.sitemap-group a:hover {
  color: var(--color-accent-strong);
}

.sitemap-group span {
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 500;
}

.site-footer {
  color: #d6d3d1;
  background: #0f172a;
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  padding: 54px 0;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 14px;
  color: #ffffff;
}

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

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

.site-footer a {
  color: #a8a29e;
  transition: color 0.2s ease;
}

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

@media (max-width: 1180px) {
  .movie-grid-six,
  .movie-grid-five,
  .category-grid,
  .horizontal-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  .header-inner {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    justify-self: end;
  }

  .primary-nav {
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 0;
    border-top: 1px solid var(--color-soft);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 10px 0;
  }

  .site-search {
    grid-column: 1 / -1;
    min-width: 0;
    margin-bottom: 12px;
  }

  .hero-slider {
    height: 76vh;
  }

  .hero-shade {
    background: rgba(15, 23, 42, 0.78);
  }

  .section-heading,
  .category-overview-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .movie-grid-three,
  .movie-grid-four,
  .movie-grid-five,
  .movie-grid-six,
  .category-grid,
  .horizontal-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .detail-sidebar {
    grid-row: auto;
  }

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

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

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

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

  .hero-control {
    display: none;
  }

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

  .feature-panel {
    padding: 24px 14px;
  }

  .movie-grid-three,
  .movie-grid-four,
  .movie-grid-five,
  .movie-grid-six,
  .category-grid,
  .horizontal-list {
    grid-template-columns: 1fr;
  }

  .rank-row {
    grid-template-columns: 40px 82px 1fr;
  }

  .rank-score {
    grid-column: 3;
    text-align: left;
    font-size: 18px;
  }

  .horizontal-card {
    grid-template-columns: 100px 1fr;
  }

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