:root {
  --page-bg: #f7f7f6;
  --surface: #ffffff;
  --surface-soft: #fdf8f3;
  --primary-50: #fdf8f3;
  --primary-100: #faeee1;
  --primary-200: #f4dac2;
  --primary-300: #ecbe98;
  --primary-400: #e39d6c;
  --primary-600: #a74f35;
  --primary-700: #854132;
  --primary-800: #6c372b;
  --primary-900: #343332;
  --secondary-50: #f7f7f6;
  --secondary-100: #e4e4e2;
  --secondary-200: #c9c8c5;
  --secondary-400: #85847e;
  --secondary-500: #6d6c67;
  --secondary-600: #575651;
  --secondary-700: #474643;
  --secondary-800: #3c3b39;
  --secondary-900: #343332;
  --secondary-950: #1f1e1d;
  --accent-500: #f08444;
  --accent-600: #dd4f16;
  --accent-700: #b73a14;
  --shadow-soft: 0 18px 45px rgba(52, 51, 50, 0.12);
  --shadow-card: 0 14px 32px rgba(52, 51, 50, 0.14);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--page-bg);
  color: var(--primary-900);
  font-family: Georgia, Cambria, "Times New Roman", "Songti SC", "Noto Serif CJK SC", serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(135deg, rgba(52, 51, 50, 0.96), rgba(31, 30, 29, 0.98));
  color: var(--primary-50);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

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

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-600);
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(221, 79, 22, 0.35);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-copy strong {
  font-size: 20px;
  letter-spacing: 0.05em;
}

.brand-copy em {
  margin-top: 2px;
  color: var(--primary-300);
  font-size: 12px;
  font-style: normal;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  font-weight: 700;
}

.desktop-nav > a,
.nav-dropdown > a {
  color: var(--primary-50);
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active,
.nav-dropdown:hover > a {
  color: var(--accent-500);
}

.nav-dropdown {
  position: relative;
  padding: 26px 0;
}

.nav-dropdown-panel {
  position: absolute;
  top: 68px;
  left: 0;
  min-width: 168px;
  padding: 10px;
  display: grid;
  gap: 4px;
  background: var(--surface);
  color: var(--primary-900);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-panel a {
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 14px;
}

.nav-dropdown-panel a:hover {
  background: var(--primary-100);
  color: var(--primary-700);
}

.top-search {
  display: flex;
  width: min(310px, 32vw);
  border: 1px solid rgba(236, 190, 152, 0.34);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.top-search input {
  width: 100%;
  min-width: 0;
  padding: 10px 14px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
}

.top-search input::placeholder {
  color: var(--primary-300);
}

.top-search button {
  padding: 0 16px;
  border: 0;
  background: var(--accent-600);
  color: #fff;
  cursor: pointer;
}

.mobile-nav-toggle {
  display: none;
  margin-left: auto;
  padding: 8px 12px;
  border: 1px solid rgba(236, 190, 152, 0.42);
  border-radius: 999px;
  background: transparent;
  color: var(--primary-50);
}

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

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

.mobile-nav a {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

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

.hero {
  position: relative;
  height: 540px;
  overflow: hidden;
  background: var(--secondary-900);
  color: var(--primary-50);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s ease, visibility 0.9s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.02);
  transform: scale(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 42%, rgba(240, 132, 68, 0.24), transparent 32%),
    linear-gradient(90deg, rgba(31, 30, 29, 0.94), rgba(52, 51, 50, 0.74) 44%, rgba(0, 0, 0, 0.2)),
    linear-gradient(0deg, rgba(31, 30, 29, 0.92), transparent 36%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) 360px;
  gap: 46px;
  align-items: center;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(221, 79, 22, 0.92);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.eyebrow.dark {
  background: var(--primary-100);
  color: var(--primary-700);
}

.hero h1,
.hero h2 {
  margin: 0;
  font-size: clamp(38px, 6vw, 70px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  text-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
}

.hero-movie-title {
  margin: 14px 0 0;
  color: var(--primary-300);
  font-size: 26px;
  font-weight: 800;
}

.hero-copy > p:not(.hero-movie-title) {
  max-width: 650px;
  margin: 20px 0 0;
  color: var(--secondary-100);
  font-size: 18px;
}

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

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

.primary-button {
  background: var(--accent-600);
  color: #fff;
  box-shadow: 0 12px 26px rgba(221, 79, 22, 0.28);
}

.primary-button:hover {
  background: var(--accent-700);
  transform: translateY(-2px);
}

.ghost-button {
  border: 1px solid rgba(253, 248, 243, 0.4);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.ghost-button:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.hero-poster {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
  transform: rotate(1.5deg);
}

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

.hero-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: inherit;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.42);
  color: #fff;
  font-size: 34px;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.72);
}

.hero-prev {
  left: 22px;
}

.hero-next {
  right: 22px;
}

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

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

.hero-dot.is-active {
  width: 28px;
  border-radius: 999px;
  background: var(--accent-500);
}

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

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

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

.section-heading p {
  margin: 8px 0 0;
  color: var(--secondary-500);
}

.section-more {
  flex-shrink: 0;
  color: var(--primary-600);
  font-weight: 800;
}

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

.category-chip {
  min-height: 118px;
  padding: 18px;
  border: 1px solid var(--primary-200);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--surface), var(--primary-50));
  box-shadow: 0 8px 26px rgba(52, 51, 50, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.category-chip:hover {
  transform: translateY(-4px);
  border-color: var(--primary-400);
  box-shadow: var(--shadow-card);
}

.category-chip strong {
  display: block;
  color: var(--primary-800);
  font-size: 18px;
}

.category-chip span {
  display: block;
  margin-top: 8px;
  color: var(--secondary-500);
  font-size: 14px;
}

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(201, 200, 197, 0.64);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(52, 51, 50, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-300);
  box-shadow: var(--shadow-card);
}

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--secondary-100);
}

.poster-link img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

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

.poster-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.62);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

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

.movie-meta-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--secondary-500);
  font-size: 13px;
}

.movie-card h3 {
  margin: 8px 0 0;
  color: var(--primary-900);
  font-size: 20px;
  line-height: 1.28;
}

.movie-card h3 a:hover {
  color: var(--primary-600);
}

.movie-card p {
  margin: 10px 0 0;
  min-height: 46px;
  color: var(--secondary-600);
  font-size: 14px;
}

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

.tag-row span,
.detail-tags a {
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--primary-100);
  color: var(--primary-700);
  font-size: 12px;
  font-weight: 700;
}

.compact-grid .movie-card,
.compact-card {
  border-radius: var(--radius-md);
}

.feature-strip {
  color: var(--primary-50);
}

.feature-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 82% 18%, rgba(240, 132, 68, 0.28), transparent 24%),
    linear-gradient(135deg, var(--secondary-900), var(--secondary-950));
  box-shadow: var(--shadow-card);
}

.feature-panel h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(28px, 4vw, 46px);
}

.feature-panel p {
  margin: 0 0 22px;
  color: var(--secondary-200);
}

.mini-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

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

.mini-card {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  transition: transform 0.2s ease, background 0.2s ease;
}

.sidebar-card .mini-card {
  background: var(--primary-50);
}

.mini-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
}

.sidebar-card .mini-card:hover {
  background: var(--primary-100);
}

.mini-card img {
  width: 64px;
  height: 86px;
  border-radius: 10px;
  object-fit: cover;
}

.mini-card strong,
.mini-card em {
  display: block;
}

.mini-card strong {
  overflow: hidden;
  color: inherit;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-card em {
  margin-top: 4px;
  color: var(--secondary-400);
  font-size: 12px;
  font-style: normal;
}

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

.ranking-row {
  display: grid;
  grid-template-columns: 44px 62px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(201, 200, 197, 0.72);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: 0 8px 20px rgba(52, 51, 50, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.ranking-row:hover {
  transform: translateY(-3px);
  border-color: var(--primary-300);
  box-shadow: var(--shadow-card);
}

.rank-number {
  color: var(--accent-600);
  font-size: 21px;
  font-weight: 900;
}

.ranking-row img {
  width: 62px;
  height: 82px;
  border-radius: 10px;
  object-fit: cover;
}

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

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

.rank-copy strong {
  overflow: hidden;
  color: var(--primary-900);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-copy em {
  margin-top: 4px;
  overflow: hidden;
  color: var(--secondary-500);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  font-style: normal;
}

.page-shell {
  padding-bottom: 32px;
}

.page-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto 0;
  padding: 40px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 84% 0%, rgba(240, 132, 68, 0.18), transparent 30%),
    linear-gradient(135deg, var(--surface), var(--primary-50));
  box-shadow: var(--shadow-soft);
}

.page-hero h1 {
  margin: 0;
  color: var(--primary-900);
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.1;
}

.page-hero p {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--secondary-600);
  font-size: 18px;
}

.page-section {
  margin-top: 38px;
}

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

.category-overview-card {
  padding: 22px;
  border: 1px solid var(--primary-200);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 0 10px 26px rgba(52, 51, 50, 0.08);
}

.category-title-link {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--primary-800);
  font-size: 22px;
  font-weight: 900;
}

.category-title-link strong {
  color: var(--primary-600);
  font-size: 14px;
}

.category-overview-card p {
  margin: 14px 0;
  color: var(--secondary-600);
}

.category-samples {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.category-samples a {
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--primary-100);
  color: var(--primary-700);
  font-size: 13px;
}

.filter-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px 96px;
  gap: 12px;
  margin-bottom: 22px;
  padding: 14px;
  border: 1px solid var(--primary-200);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(52, 51, 50, 0.06);
}

.filter-tools input,
.filter-tools select,
.filter-tools button {
  min-height: 44px;
  border: 1px solid var(--secondary-200);
  border-radius: 999px;
  background: #fff;
  color: var(--primary-900);
}

.filter-tools input {
  padding: 0 16px;
}

.filter-tools select {
  padding: 0 14px;
}

.filter-tools button {
  background: var(--primary-800);
  color: #fff;
  cursor: pointer;
}

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

.ranking-page-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.breadcrumb {
  width: min(1180px, calc(100% - 32px));
  margin: 26px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--secondary-600);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--primary-600);
  font-weight: 800;
}

.detail-layout {
  width: min(1180px, calc(100% - 32px));
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.detail-main {
  min-width: 0;
}

.player-panel {
  overflow: hidden;
  border-radius: 28px;
  background: #000;
  box-shadow: var(--shadow-card);
}

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

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

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  gap: 14px;
  border: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.16));
  color: #fff;
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.play-circle {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  padding-left: 5px;
  border-radius: 50%;
  background: var(--accent-600);
  color: #fff;
  font-size: 34px;
  box-shadow: 0 14px 36px rgba(221, 79, 22, 0.36);
}

.movie-article,
.sidebar-card {
  margin-top: 22px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 0 10px 26px rgba(52, 51, 50, 0.08);
}

.movie-article h1 {
  margin: 16px 0 0;
  color: var(--primary-900);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 0;
  color: var(--secondary-500);
  font-weight: 700;
}

.detail-meta span {
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--secondary-50);
}

.lead-text {
  margin-top: 20px;
  padding-left: 18px;
  border-left: 4px solid var(--primary-600);
  color: var(--secondary-700);
  font-size: 18px;
  font-weight: 700;
}

.movie-article h2,
.sidebar-card h2 {
  margin: 24px 0 10px;
  color: var(--primary-800);
  font-size: 24px;
}

.movie-article p {
  color: var(--secondary-700);
  font-size: 17px;
}

.nested-section {
  width: 100%;
  margin-top: 28px;
}

.detail-sidebar {
  position: sticky;
  top: 96px;
}

.cover-card img {
  width: 100%;
  border-radius: 18px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.wide-button {
  width: 100%;
  margin-top: 16px;
}

.site-footer {
  margin-top: 76px;
  background: linear-gradient(180deg, var(--secondary-900), var(--secondary-950));
  color: var(--secondary-200);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 170px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
}

.footer-brand {
  color: var(--primary-50);
  font-size: 24px;
  font-weight: 900;
}

.footer-inner p {
  max-width: 520px;
  color: var(--secondary-400);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
}

.footer-links a:hover {
  color: var(--accent-500);
}

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

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

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

  .hero-poster {
    display: none;
  }

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

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

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

  .detail-sidebar {
    position: static;
  }
}

@media (max-width: 760px) {
  .header-inner {
    min-height: 66px;
  }

  .brand-copy strong {
    font-size: 17px;
  }

  .hero {
    height: 610px;
  }

  .hero-inner {
    align-items: end;
    padding-bottom: 74px;
  }

  .hero h1,
  .hero h2 {
    font-size: 34px;
  }

  .hero-copy > p:not(.hero-movie-title) {
    font-size: 16px;
  }

  .hero-arrow {
    display: none;
  }

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

  .movie-grid,
  .category-chip-grid,
  .ranking-grid,
  .ranking-page-list,
  .category-overview-grid,
  .feature-panel,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .page-hero,
  .feature-panel,
  .movie-article,
  .sidebar-card {
    padding: 20px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .mobile-category-list {
    grid-template-columns: 1fr;
  }

  .ranking-row {
    grid-template-columns: 38px 54px minmax(0, 1fr);
  }

  .ranking-row img {
    width: 54px;
    height: 72px;
  }
}
