:root {
  --ash-50: #f8f9fa;
  --ash-100: #f1f3f5;
  --ash-200: #dee2e6;
  --ash-300: #ced4da;
  --ash-400: #adb5bd;
  --ash-500: #6c757d;
  --ash-600: #495057;
  --ash-700: #343a40;
  --ash-800: #212529;
  --ash-900: #0d0f12;
  --volcanic-50: #fff4ef;
  --volcanic-100: #fdeae1;
  --volcanic-300: #f8bfa5;
  --volcanic-600: #f07f4a;
  --volcanic-700: #ee692c;
  --volcanic-800: #e84118;
  --lava-400: #ffb81a;
  --white: #ffffff;
  --shadow-sm: 0 4px 16px rgba(13, 15, 18, 0.08);
  --shadow-md: 0 12px 30px rgba(13, 15, 18, 0.12);
  --shadow-lg: 0 25px 60px rgba(13, 15, 18, 0.18);
  --shadow-volcanic: 0 18px 50px -20px rgba(232, 65, 24, 0.58);
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;
}

* {
  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", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--ash-900);
  background: linear-gradient(180deg, var(--ash-50) 0%, #ffffff 58%, var(--volcanic-50) 100%);
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 15, 18, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.header-inner {
  height: 72px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--ash-900);
  background: linear-gradient(135deg, var(--lava-400), var(--volcanic-700));
  box-shadow: var(--shadow-volcanic);
}

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

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

.nav-link,
.mobile-link {
  color: rgba(255, 255, 255, 0.78);
  padding: 10px 14px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.header-search {
  display: flex;
  align-items: center;
  width: 300px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.header-search input,
.mobile-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  color: var(--white);
  background: transparent;
  padding: 10px 14px;
}

.header-search input::placeholder,
.mobile-search input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.header-search button,
.mobile-search button {
  border: 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--volcanic-600), var(--volcanic-800));
  padding: 10px 15px;
}

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
}

.mobile-menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
  border-radius: 99px;
}

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

.mobile-panel.is-open {
  display: grid;
  gap: 8px;
}

.mobile-link {
  display: block;
  color: var(--white);
}

.mobile-search {
  display: flex;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: var(--ash-900);
}

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

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 184, 26, 0.22), transparent 28%),
    linear-gradient(90deg, rgba(13, 15, 18, 0.92) 0%, rgba(13, 15, 18, 0.62) 45%, rgba(13, 15, 18, 0.25) 100%),
    linear-gradient(0deg, var(--ash-900) 0%, transparent 48%);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 76px;
}

.hero-copy {
  max-width: 760px;
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--lava-400);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(36px, 7vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero-copy p {
  margin: 0 0 22px;
  max-width: 650px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
  line-height: 1.7;
}

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

.hero-tags span,
.detail-tags span,
.tag-row span {
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(6px);
}

.tag-row span {
  color: var(--ash-600);
  background: var(--ash-100);
  font-size: 12px;
  padding: 4px 8px;
}

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

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

.primary-button {
  color: var(--white);
  background: linear-gradient(135deg, var(--volcanic-600), var(--volcanic-800));
  box-shadow: var(--shadow-volcanic);
}

.primary-button:hover,
.ghost-button:hover {
  transform: translateY(-2px);
}

.ghost-button {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
}

.ghost-button.dark {
  color: var(--ash-900);
  border-color: var(--ash-200);
  background: var(--white);
}

.hero-poster {
  position: relative;
  width: 260px;
  min-width: 260px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

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

.hero-poster span {
  position: absolute;
  right: 14px;
  top: 14px;
  color: var(--ash-900);
  background: var(--lava-400);
  padding: 7px 10px;
  border-radius: 999px;
  font-weight: 900;
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  transition: width 0.25s ease, background 0.25s ease;
}

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

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: -44px;
  position: relative;
  z-index: 10;
}

.stats-strip div {
  padding: 22px;
  border-radius: var(--radius-lg);
  color: var(--ash-900);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.stats-strip strong {
  display: block;
  font-size: 30px;
  line-height: 1;
}

.stats-strip span {
  display: block;
  margin-top: 8px;
  color: var(--ash-600);
}

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

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

.section-heading h2 {
  margin: 0;
  color: var(--ash-900);
  font-size: clamp(26px, 4vw, 40px);
  letter-spacing: -0.03em;
}

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

.heading-line {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--volcanic-700), transparent);
}

.section-more {
  color: var(--volcanic-800);
  font-weight: 800;
}

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

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

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

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

.movie-card {
  min-width: 0;
}

.poster-frame {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--ash-200);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

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

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

.play-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--volcanic-700);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.82);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.year-badge,
.rank-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  color: var(--white);
  background: rgba(0, 0, 0, 0.62);
  border-radius: 999px;
  padding: 5px 8px;
  font-size: 12px;
  backdrop-filter: blur(8px);
}

.rank-badge {
  left: 10px;
  right: auto;
  color: var(--ash-900);
  background: var(--lava-400);
  font-weight: 900;
}

.movie-card:hover .poster-frame {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.movie-card:hover .poster-frame img {
  transform: scale(1.06);
}

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

.movie-card-body {
  padding-top: 12px;
}

.movie-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.38;
}

.movie-card h3 a:hover {
  color: var(--volcanic-800);
}

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

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--ash-500);
  font-size: 13px;
  margin-bottom: 10px;
}

.card-meta span {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

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

.category-card {
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.category-covers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 132px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--volcanic-100), var(--ash-100));
}

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

.category-card div:last-child {
  padding: 18px;
}

.category-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.category-card p {
  min-height: 44px;
  margin: 0 0 12px;
  color: var(--ash-600);
  line-height: 1.55;
}

.category-card span {
  color: var(--volcanic-800);
  font-weight: 800;
}

.two-column-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 36px;
}

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

.ranking-row {
  display: grid;
  grid-template-columns: 64px 110px minmax(0, 1fr) 94px;
  align-items: center;
  gap: 16px;
  min-width: 0;
  overflow: hidden;
  padding: 12px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.ranking-number {
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--volcanic-600), var(--volcanic-800));
}

.ranking-cover {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 14px;
}

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

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

.ranking-info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.ranking-info p {
  margin: 0 0 8px;
  color: var(--ash-600);
  line-height: 1.55;
}

.ranking-score {
  text-align: center;
  color: var(--volcanic-800);
}

.ranking-score strong {
  display: block;
  font-size: 30px;
  line-height: 1;
}

.ranking-score span {
  display: block;
  margin-top: 6px;
  color: var(--ash-500);
  font-size: 12px;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 1.2fr auto;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding: 16px;
  border: 1px solid var(--ash-200);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
}

.filter-search {
  display: flex;
  overflow: hidden;
  border-radius: 999px;
  background: var(--ash-100);
  border: 1px solid var(--ash-200);
}

.filter-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 12px 15px;
}

.filter-search button {
  border: 0;
  color: var(--white);
  background: var(--ash-900);
  padding: 0 18px;
}

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

.filter-selects label {
  display: grid;
  gap: 6px;
  color: var(--ash-500);
  font-size: 12px;
}

.filter-selects select {
  width: 100%;
  border: 1px solid var(--ash-200);
  border-radius: 999px;
  background: var(--white);
  color: var(--ash-900);
  padding: 10px 12px;
  outline: 0;
}

.filter-count {
  margin: 0;
  white-space: nowrap;
  color: var(--ash-600);
}

.filter-count span {
  color: var(--volcanic-800);
  font-weight: 900;
}

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

.page-hero {
  color: var(--white);
  padding: 88px 0 76px;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 184, 26, 0.28), transparent 26%),
    linear-gradient(135deg, var(--ash-900) 0%, #2b1210 58%, var(--volcanic-800) 100%);
}

.page-hero h1 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.page-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.7;
}

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

.category-overview-row {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 22px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.category-overview-row h2 {
  margin: 0 0 8px;
}

.category-overview-row p {
  margin: 0 0 10px;
  color: var(--ash-600);
}

.category-overview-row span {
  color: var(--volcanic-800);
  font-weight: 800;
}

.overview-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: center;
}

.overview-links a {
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--ash-700);
  background: var(--ash-100);
}

.overview-links a:hover {
  color: var(--white);
  background: var(--volcanic-700);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  padding: 26px 0;
  color: var(--ash-500);
}

.breadcrumb a:hover {
  color: var(--volcanic-800);
}

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

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

.player-panel,
.detail-content-card,
.sidebar-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

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

.movie-video {
  width: 100%;
  height: 100%;
  background: #000000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  border: 0;
  color: var(--white);
  background: radial-gradient(circle, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.62));
}

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

.big-play {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--volcanic-600), var(--volcanic-800));
  box-shadow: var(--shadow-volcanic);
  font-size: 30px;
}

.detail-content-card {
  margin-top: 26px;
  padding: 28px;
}

.detail-title-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.detail-title-row h1 {
  margin: 0;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.detail-score {
  min-width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 24px;
  color: var(--ash-900);
  background: linear-gradient(135deg, var(--lava-400), var(--volcanic-300));
}

.detail-score strong {
  font-size: 34px;
  line-height: 1;
}

.detail-score span {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 800;
}

.lead-text {
  margin: 24px 0;
  color: var(--ash-700);
  font-size: 18px;
  line-height: 1.8;
}

.detail-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}

.detail-meta-grid div {
  min-width: 0;
  border-radius: 16px;
  padding: 14px;
  background: var(--ash-50);
}

.detail-meta-grid span {
  display: block;
  color: var(--ash-500);
  font-size: 12px;
}

.detail-meta-grid strong {
  display: block;
  margin-top: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.detail-content-card h2 {
  margin: 28px 0 10px;
  font-size: 24px;
}

.detail-content-card p {
  color: var(--ash-700);
  line-height: 1.9;
}

.detail-tags span {
  color: var(--volcanic-800);
  background: var(--volcanic-50);
}

.detail-cover {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.full-button {
  width: 100%;
  margin-top: 14px;
}

.sidebar-card {
  margin-top: 14px;
  padding: 20px;
}

.sidebar-card h2 {
  margin: 0 0 10px;
}

.sidebar-card p {
  margin: 0;
  color: var(--ash-600);
  line-height: 1.7;
}

.site-footer {
  margin-top: 80px;
  padding: 48px 0;
  color: var(--ash-300);
  background: var(--ash-900);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) 1fr 1fr;
  gap: 34px;
}

.footer-about p {
  max-width: 560px;
  margin: 16px 0 0;
  color: var(--ash-400);
  line-height: 1.8;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: var(--white);
}

.site-footer a {
  display: block;
  margin: 9px 0;
  color: var(--ash-300);
}

.site-footer a:hover {
  color: var(--lava-400);
}

@media (max-width: 1180px) {
  .movie-grid,
  .featured-grid,
  .all-movie-grid,
  .related-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

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

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

  .mobile-menu-button {
    display: block;
    margin-left: auto;
  }

  .hero {
    height: 560px;
  }

  .hero-content {
    align-items: flex-end;
    padding-bottom: 70px;
  }

  .hero-poster {
    display: none;
  }

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

  .movie-grid,
  .featured-grid,
  .all-movie-grid,
  .related-grid,
  .side-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .two-column-layout,
  .detail-layout,
  .category-overview-row {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .hero {
    height: 520px;
  }

  .hero-content {
    padding-bottom: 62px;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .stats-strip,
  .filter-selects,
  .detail-meta-grid {
    grid-template-columns: 1fr;
  }

  .movie-grid,
  .featured-grid,
  .all-movie-grid,
  .related-grid,
  .side-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

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

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

  .heading-line {
    width: 100%;
    flex: none;
  }

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

  .ranking-score {
    grid-column: 2 / -1;
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: left;
  }

  .ranking-score strong {
    font-size: 22px;
  }

  .detail-title-row {
    flex-direction: column;
  }

  .detail-score {
    width: 112px;
  }
}
