:root {
  --amber-50: #fff8eb;
  --amber-100: #ffedc2;
  --amber-200: #fedf91;
  --amber-300: #ffc955;
  --amber-400: #ffb223;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --shadow: 0 16px 40px rgba(31, 41, 55, 0.12);
  --shadow-soft: 0 10px 24px rgba(31, 41, 55, 0.08);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--gray-800);
  background: linear-gradient(180deg, var(--amber-50), #fff7ed 42%, #ffffff 100%);
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, var(--amber-600), var(--orange-500), var(--amber-500));
  box-shadow: 0 8px 28px rgba(217, 119, 6, 0.25);
}

.nav-shell {
  display: flex;
  align-items: center;
  min-height: 72px;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.03em;
  flex-shrink: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

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

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

.nav-link {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  transition: color 0.2s ease, transform 0.2s ease;
}

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

.top-search,
.mobile-search {
  position: relative;
}

.top-search input,
.mobile-search input,
.filter-bar input,
.filter-bar select {
  width: 100%;
  border: 0;
  border-radius: 999px;
  outline: 0;
  background: rgba(255, 255, 255, 0.92);
  color: var(--gray-800);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.top-search input {
  width: 230px;
  padding: 10px 16px;
}

.search-panel {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(380px, 86vw);
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(245, 158, 11, 0.16);
}

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

.search-result {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 12px;
  align-items: center;
  border-bottom: 1px solid var(--gray-100);
}

.search-result:hover {
  background: var(--amber-50);
}

.search-result img {
  width: 44px;
  height: 60px;
  object-fit: cover;
  border-radius: 10px;
  background: var(--amber-100);
}

.search-result strong {
  display: block;
  color: var(--gray-900);
  font-size: 14px;
}

.search-result span {
  display: block;
  color: var(--gray-500);
  font-size: 12px;
  margin-top: 3px;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 0;
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  padding: 8px 16px 18px;
  background: var(--amber-600);
}

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

.mobile-link {
  display: block;
  color: var(--white);
  font-weight: 700;
  padding: 12px 0;
}

.mobile-search input {
  padding: 12px 16px;
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, var(--amber-500), var(--orange-500) 52%, #facc15 100%);
  color: var(--white);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.8) 0, transparent 25%), radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.65) 0, transparent 30%), linear-gradient(135deg, rgba(255, 255, 255, 0.24) 12.5%, transparent 12.5%, transparent 50%, rgba(255, 255, 255, 0.24) 50%, rgba(255, 255, 255, 0.24) 62.5%, transparent 62.5%, transparent 100%);
  background-size: auto, auto, 60px 60px;
}

.hero-inner {
  position: relative;
  min-height: 560px;
  padding: 82px 0 88px;
}

.hero-slide {
  display: none;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 430px);
  gap: 54px;
  align-items: center;
}

.hero-slide.is-active {
  display: grid;
  animation: fadeUp 0.5s ease both;
}

.hero-eyebrow,
.section-kicker,
.detail-kicker,
.category-card p,
.category-overview-body p,
.rank-panel-head p,
.page-hero p {
  margin: 0 0 10px;
  color: #fff7d6;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(38px, 6vw, 70px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
}

.hero p {
  font-size: 18px;
  line-height: 1.9;
  max-width: 700px;
}

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

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

.hero-tags span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 13px;
  backdrop-filter: blur(8px);
}

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

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

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

.btn-primary {
  background: var(--white);
  color: var(--amber-600);
  box-shadow: 0 12px 28px rgba(146, 64, 14, 0.22);
}

.btn-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.btn.full {
  width: 100%;
  margin-top: 18px;
}

.hero-art {
  position: relative;
  display: block;
  max-width: 410px;
  justify-self: end;
  transform: rotate(2deg);
}

.hero-art img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 32px 80px rgba(124, 45, 18, 0.38);
}

.hero-art span {
  position: absolute;
  top: 18px;
  right: 18px;
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--white);
  font-weight: 900;
  background: rgba(17, 24, 39, 0.72);
  backdrop-filter: blur(8px);
}

.hero-tools {
  position: absolute;
  left: 0;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-tools button {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  font-size: 24px;
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  min-width: 10px;
  padding: 0;
  background: rgba(255, 255, 255, 0.45);
}

.hero-dots button.is-active {
  width: 28px;
  background: var(--white);
}

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

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

.section-kicker {
  color: var(--amber-600);
}

.section-head h2,
.rank-panel-head h2,
.wide-rank-panel h2,
.detail-article h2 {
  margin: 0;
  color: var(--gray-800);
  font-size: clamp(26px, 4vw, 36px);
  letter-spacing: -0.03em;
}

.section-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--amber-600);
  font-weight: 800;
}

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

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

.movie-card {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.movie-poster {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--amber-100);
}

.movie-card-compact .movie-poster {
  aspect-ratio: 2 / 3;
}

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

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0) 45%, rgba(17, 24, 39, 0.72) 100%);
}

.score-badge,
.year-badge,
.rank-badge {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  color: var(--white);
  font-weight: 900;
  backdrop-filter: blur(8px);
}

.score-badge {
  top: 14px;
  right: 14px;
  padding: 6px 10px;
  background: rgba(245, 158, 11, 0.92);
}

.year-badge {
  bottom: 14px;
  left: 14px;
  padding: 5px 10px;
  font-size: 12px;
  background: rgba(17, 24, 39, 0.7);
}

.rank-badge {
  top: 14px;
  left: 14px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #facc15, var(--orange-500));
}

.play-float {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.84);
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(17, 24, 39, 0.52);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(8px);
}

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

.movie-body {
  padding: 18px;
}

.movie-body h3 {
  margin: 0 0 9px;
  font-size: 20px;
  line-height: 1.25;
  color: var(--gray-900);
  transition: color 0.2s ease;
}

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

.movie-card-compact .movie-body h3 {
  font-size: 16px;
}

.movie-body p {
  margin: 0 0 12px;
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-meta-row {
  display: flex;
  gap: 10px;
  color: var(--gray-500);
  font-size: 13px;
  margin-bottom: 12px;
}

.tag-row span {
  color: var(--amber-700);
  background: var(--amber-100);
  padding: 5px 9px;
  font-size: 12px;
}

.category-section {
  background: linear-gradient(90deg, #ffedd5, #fef3c7);
}

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

.category-card,
.category-overview-card,
.text-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover,
.category-overview-card:hover,
.text-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.category-card {
  min-height: 230px;
  position: relative;
  color: var(--white);
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.12), rgba(17, 24, 39, 0.78));
}

.category-card div {
  position: absolute;
  inset: auto 18px 18px;
  z-index: 2;
}

.category-card h3,
.category-overview-body h2 {
  margin: 0 0 8px;
  font-size: 22px;
}

.category-card span,
.category-overview-body span {
  display: block;
  font-size: 13px;
  line-height: 1.6;
}

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

.rank-panel,
.wide-rank-panel,
.detail-side {
  border-radius: var(--radius);
  padding: 24px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.rank-panel-head p {
  color: var(--amber-600);
}

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

.rank-row,
.wide-rank-row {
  display: grid;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 14px;
  background: var(--gray-50);
  transition: background 0.2s ease, transform 0.2s ease;
}

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

.rank-row:hover,
.wide-rank-row:hover {
  background: var(--amber-50);
  transform: translateX(4px);
}

.rank-number {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--amber-500);
  font-weight: 900;
}

.rank-title {
  color: var(--gray-900);
  font-weight: 800;
}

.rank-info {
  color: var(--gray-500);
  font-size: 13px;
}

.page-hero,
.detail-hero {
  color: var(--white);
  background: linear-gradient(120deg, var(--amber-500), var(--orange-500) 58%, #facc15);
  position: relative;
  overflow: hidden;
}

.page-hero::before,
.detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background: radial-gradient(circle at 16% 0%, rgba(255, 255, 255, 0.9), transparent 26%), radial-gradient(circle at 92% 16%, rgba(255, 255, 255, 0.65), transparent 26%);
}

.page-hero .container,
.detail-hero .container {
  position: relative;
  z-index: 1;
}

.small-hero .container,
.category-hero .container,
.rank-hero .container {
  padding: 74px 0;
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.1;
}

.page-hero span {
  display: block;
  max-width: 780px;
  font-size: 18px;
  line-height: 1.8;
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 180px 1fr;
}

.category-thumb-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 220px;
  background: var(--amber-100);
}

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

.category-overview-body {
  padding: 28px;
}

.category-overview-body p {
  color: var(--amber-600);
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 170px 170px;
  gap: 12px;
  padding: 16px;
  margin-bottom: 24px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.filter-bar input,
.filter-bar select {
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  background: var(--gray-50);
  border-radius: 14px;
}

.movie-card.is-hidden {
  display: none;
}

.wide-rank-panel {
  position: sticky;
  top: 96px;
}

.wide-rank-row {
  grid-template-columns: 36px 1fr;
  margin-bottom: 8px;
}

.wide-rank-row span {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--amber-500);
  font-weight: 900;
}

.wide-rank-row strong {
  color: var(--gray-900);
}

.wide-rank-row em {
  grid-column: 2;
  color: var(--gray-500);
  font-size: 13px;
  font-style: normal;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 30px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
}

.watch-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 34px;
  align-items: center;
  padding: 34px 0 78px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 30px;
  background: #0f172a;
  box-shadow: 0 32px 80px rgba(124, 45, 18, 0.38);
}

.movie-player {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #0f172a;
}

.player-cover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
  border: 0;
  color: var(--white);
  cursor: pointer;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.18), rgba(15, 23, 42, 0.74));
}

.player-cover span {
  width: 78px;
  height: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.92);
  font-size: 32px;
  box-shadow: 0 16px 35px rgba(245, 158, 11, 0.38);
}

.player-cover strong {
  font-size: 20px;
}

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

.watch-info h1 {
  margin: 0 0 16px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.12;
}

.watch-info p:not(.detail-kicker) {
  font-size: 17px;
  line-height: 1.9;
}

.detail-tags {
  margin: 22px 0 26px;
}

.detail-article,
.detail-side {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.detail-article {
  padding: 30px;
}

.detail-article h2 {
  margin-top: 0;
  margin-bottom: 16px;
}

.detail-article h2:not(:first-child) {
  margin-top: 30px;
}

.detail-article p {
  color: var(--gray-700);
  font-size: 17px;
  line-height: 2;
  margin: 0 0 16px;
}

.detail-side img {
  width: 100%;
  border-radius: 18px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  margin-bottom: 18px;
  background: var(--amber-100);
}

.detail-side ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-side li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
}

.detail-side span {
  color: var(--gray-500);
}

.detail-side strong {
  color: var(--gray-800);
  text-align: right;
}

.side-category {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  min-height: 44px;
  color: var(--white);
  font-weight: 800;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--amber-500), var(--orange-500));
}

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

.text-card {
  padding: 28px;
}

.text-card h2 {
  margin: 0 0 12px;
  color: var(--gray-900);
}

.text-card p {
  margin: 0;
  color: var(--gray-600);
  line-height: 1.9;
}

.site-footer {
  color: #d1d5db;
  background: var(--gray-900);
  margin-top: 42px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 34px;
  padding: 46px 0 32px;
}

.footer-logo {
  margin-bottom: 14px;
}

.footer-brand p {
  margin: 0;
  line-height: 1.8;
  color: #9ca3af;
}

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

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: #9ca3af;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--amber-400);
}

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

.footer-bottom p {
  margin: 0;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 14px;
  }

  .top-search input {
    width: 190px;
  }

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

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

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

  .wide-rank-panel {
    position: static;
  }
}

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

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

  .hero-slide,
  .watch-layout {
    grid-template-columns: 1fr;
  }

  .hero-art {
    justify-self: start;
    max-width: 280px;
  }

  .hero-tools {
    left: 16px;
  }

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

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

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

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

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

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

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

  .hero-inner {
    min-height: auto;
    padding: 54px 0 92px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero h2 {
    font-size: 26px;
  }

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

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

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

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

  .movie-poster,
  .movie-card-compact .movie-poster {
    aspect-ratio: 16 / 10;
  }

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