:root {
  --bg-start: #fff7ed;
  --bg-mid: #fffbeb;
  --bg-end: #fef3c7;
  --text: #1f2937;
  --muted: #6b7280;
  --orange: #f97316;
  --amber: #f59e0b;
  --yellow: #facc15;
  --line: rgba(251, 146, 60, 0.22);
  --shadow: 0 20px 55px rgba(146, 64, 14, 0.14);
  --soft-shadow: 0 10px 28px rgba(146, 64, 14, 0.1);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family: "Inter", "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(249, 115, 22, 0.16), transparent 34rem),
    linear-gradient(180deg, var(--bg-start), var(--bg-mid) 40%, var(--bg-end));
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(251, 146, 60, 0.18);
  background: rgba(255, 251, 235, 0.9);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(var(--max), calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

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

.brand-mark {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  box-shadow: 0 12px 24px rgba(249, 115, 22, 0.28);
}

.brand-text strong {
  display: block;
  font-size: 20px;
  line-height: 1.05;
  background: linear-gradient(135deg, #ea580c, #d97706);
  -webkit-background-clip: text;
  color: transparent;
}

.brand-text small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

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

.desktop-nav a,
.mobile-nav a {
  color: #4b5563;
  font-weight: 700;
  transition: color 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-nav a:hover,
.mobile-nav a.active {
  color: #ea580c;
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 280px;
  padding: 6px;
  border: 1px solid rgba(251, 146, 60, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
}

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

.header-search button,
.primary-btn,
.secondary-btn,
.filter-bar button,
.play-cta {
  border: 0;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-search button {
  padding: 9px 16px;
  color: #ffffff;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--amber));
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  background: transparent;
  color: #9a3412;
  font-size: 28px;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 18px;
  gap: 14px;
  flex-direction: column;
}

.mobile-nav.open {
  display: flex;
}

.hero-carousel {
  position: relative;
  overflow: hidden;
  min-height: 660px;
  background: linear-gradient(135deg, #f97316, #f59e0b 55%, #facc15);
}

.hero-slide {
  display: none;
  position: relative;
  min-height: 660px;
  align-items: center;
}

.hero-slide.is-active {
  display: flex;
}

.hero-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  min-height: 660px;
  object-fit: cover;
  opacity: 0.34;
  filter: saturate(1.08);
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 25%, rgba(255, 255, 255, 0.32), transparent 28rem),
    linear-gradient(90deg, rgba(124, 45, 18, 0.88), rgba(194, 65, 12, 0.66) 50%, rgba(245, 158, 11, 0.58));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0 108px;
  color: #ffffff;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) 360px;
  gap: 48px;
  align-items: center;
}

.hero-kicker,
.section-kicker,
.page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  max-width: 100%;
  padding: 10px 18px;
  color: #fff7ed;
  font-size: 14px;
  font-weight: 800;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.hero-copy h1,
.hero-copy h2 {
  margin: 22px 0 18px;
  max-width: 820px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-shadow: 0 14px 28px rgba(124, 45, 18, 0.36);
}

.hero-copy p {
  max-width: 720px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.8;
}

.hero-feature {
  margin: 26px 0 0;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(15px);
}

.hero-feature strong {
  display: block;
  margin-bottom: 8px;
  font-size: 24px;
}

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

.primary-btn,
.secondary-btn,
.play-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
}

.primary-btn,
.play-cta {
  color: #ea580c;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(124, 45, 18, 0.22);
}

.secondary-btn {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.primary-btn:hover,
.secondary-btn:hover,
.play-cta:hover,
.header-search button:hover,
.filter-bar button:hover {
  transform: translateY(-2px);
}

.hero-card-stack {
  position: relative;
}

.hero-poster-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 70px rgba(124, 45, 18, 0.4);
  transform: rotate(2deg);
  background: rgba(255, 255, 255, 0.2);
}

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

.hero-poster-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(17, 24, 39, 0.75));
}

.hero-poster-caption {
  position: absolute;
  inset: auto 22px 22px;
  z-index: 2;
  color: #ffffff;
}

.hero-poster-caption b {
  display: block;
  font-size: 22px;
  margin-bottom: 6px;
}

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

.hero-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.46);
}

.hero-dot.is-active {
  width: 34px;
  background: #ffffff;
}

main {
  display: block;
}

.section,
.page-section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

.section-heading,
.page-heading {
  margin-bottom: 34px;
}

.section-heading.center,
.page-heading.center {
  text-align: center;
}

.section-heading h2,
.page-heading h1 {
  margin: 14px 0 12px;
  color: var(--text);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.section-heading p,
.page-heading p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.section-heading.center p,
.page-heading.center p {
  margin-left: auto;
  margin-right: auto;
}

.section-line {
  height: 4px;
  flex: 1;
  min-width: 120px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), rgba(245, 158, 11, 0.6), transparent);
}

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

.heading-row h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 38px);
}

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

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

.movie-card,
.category-card,
.rank-item,
.compact-card,
.info-panel {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--soft-shadow);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(251, 146, 60, 0.18);
  border-radius: 22px;
}

.movie-card:hover,
.category-card:hover,
.rank-item:hover,
.compact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.movie-poster {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.18), rgba(245, 158, 11, 0.28));
}

.movie-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.movie-card:hover .movie-poster img,
.compact-card:hover img,
.rank-item:hover img {
  transform: scale(1.06);
}

.poster-badge,
.poster-duration {
  position: absolute;
  top: 12px;
  z-index: 2;
  padding: 6px 10px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.poster-badge {
  left: 12px;
  background: linear-gradient(135deg, var(--orange), var(--amber));
}

.poster-duration {
  right: 12px;
  background: rgba(17, 24, 39, 0.66);
}

.poster-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.86);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.movie-body {
  padding: 18px;
}

.movie-body h3 {
  min-height: 2.8em;
  margin: 0 0 10px;
  color: #111827;
  font-size: 18px;
  line-height: 1.35;
}

.movie-body p {
  min-height: 4.8em;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 14px;
}

.tag-row span {
  padding: 5px 9px;
  color: #c2410c;
  font-size: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 237, 213, 0.95), rgba(254, 243, 199, 0.95));
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #7c2d12;
  font-size: 12px;
}

.movie-meta span:not(:last-child)::after {
  content: "·";
  margin-left: 8px;
  color: rgba(124, 45, 18, 0.42);
}

.band {
  background: linear-gradient(90deg, rgba(255, 237, 213, 0.78), rgba(254, 243, 199, 0.78));
}

.carousel-shell {
  position: relative;
  overflow: hidden;
  padding: 4px 0 10px;
}

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(230px, 1fr);
  gap: 20px;
  overflow-x: auto;
  padding: 4px 2px 18px;
  scroll-snap-type: x mandatory;
}

.carousel-track .movie-card {
  scroll-snap-align: start;
}

.carousel-track::-webkit-scrollbar {
  height: 8px;
}

.carousel-track::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.38);
}

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

.category-card {
  min-height: 178px;
  padding: 24px;
  border-radius: 24px;
  color: #ffffff;
  overflow: hidden;
  position: relative;
}

.category-card::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -36px;
  bottom: -36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.category-card strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 10px;
  font-size: 23px;
}

.category-card span {
  position: relative;
  z-index: 1;
  display: block;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.65;
}

.gradient-hot {
  background: linear-gradient(135deg, #f97316, #f59e0b);
}

.gradient-domestic {
  background: linear-gradient(135deg, #ef4444, #f97316);
}

.gradient-asia {
  background: linear-gradient(135deg, #ec4899, #f97316);
}

.gradient-western {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.gradient-drama {
  background: linear-gradient(135deg, #8b5cf6, #d946ef);
}

.gradient-action {
  background: linear-gradient(135deg, #111827, #f97316);
}

.gradient-comedy-romance {
  background: linear-gradient(135deg, #fb7185, #f59e0b);
}

.gradient-sci-fi-suspense {
  background: linear-gradient(135deg, #0f766e, #3b82f6);
}

.gradient-costume-fantasy {
  background: linear-gradient(135deg, #a16207, #f97316);
}

.gradient-classic {
  background: linear-gradient(135deg, #7c2d12, #ca8a04);
}

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

.rank-item {
  display: grid;
  grid-template-columns: 52px 100px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(251, 146, 60, 0.16);
  border-radius: 20px;
}

.rank-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #ffffff;
  font-weight: 900;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--orange), var(--amber));
}

.rank-item img {
  width: 100px;
  height: 72px;
  object-fit: cover;
  border-radius: 14px;
  transition: transform 0.3s ease;
}

.rank-content strong {
  display: block;
  margin-bottom: 7px;
  font-size: 17px;
}

.rank-content p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.rank-content div {
  color: #c2410c;
  font-size: 13px;
  font-weight: 700;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  color: #ffffff;
  background: linear-gradient(135deg, #f97316, #f59e0b 58%, #facc15);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 15%, rgba(255, 255, 255, 0.28), transparent 24rem),
    radial-gradient(circle at 86% 30%, rgba(255, 255, 255, 0.18), transparent 20rem);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.page-hero h1 {
  max-width: 850px;
  margin: 16px 0 14px;
  font-size: clamp(36px, 6vw, 60px);
  line-height: 1.08;
}

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

.filter-panel {
  width: min(var(--max), calc(100% - 32px));
  margin: -36px auto 0;
  position: relative;
  z-index: 2;
  padding: 20px;
  border: 1px solid rgba(251, 146, 60, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px;
}

.filter-bar input,
.filter-bar select {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(251, 146, 60, 0.22);
  border-radius: 14px;
  outline: 0;
  color: var(--text);
  background: #ffffff;
}

.filter-bar button {
  min-height: 48px;
  padding: 0 20px;
  color: #ffffff;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--orange), var(--amber));
}

.no-results {
  display: none;
  margin-top: 24px;
  padding: 28px;
  text-align: center;
  color: var(--muted);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
}

.detail-layout {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0 78px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
}

.player-card,
.detail-card,
.sidebar-card {
  overflow: hidden;
  border: 1px solid rgba(251, 146, 60, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

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

.video-box video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000000;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #ffffff;
  cursor: pointer;
  background: rgba(17, 24, 39, 0.18);
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.play-overlay span {
  width: 86px;
  height: 86px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 6px;
  border-radius: 999px;
  font-size: 38px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.88), rgba(245, 158, 11, 0.88));
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
}

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

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

.detail-card h1 {
  margin: 0 0 16px;
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1.15;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
  color: #7c2d12;
  font-size: 14px;
  font-weight: 800;
}

.detail-meta span {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 237, 213, 0.9);
}

.detail-card section {
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid rgba(251, 146, 60, 0.2);
}

.detail-card h2 {
  margin: 0 0 14px;
  font-size: 23px;
}

.detail-card p {
  color: #4b5563;
  line-height: 1.9;
}

.review-box {
  padding: 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 237, 213, 0.82), rgba(254, 243, 199, 0.9));
}

.sidebar-card {
  position: sticky;
  top: 98px;
  padding: 20px;
}

.sidebar-card h2 {
  margin: 0 0 18px;
  font-size: 22px;
}

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

.compact-card {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 13px;
  align-items: center;
  overflow: hidden;
  padding: 10px;
  border: 1px solid rgba(251, 146, 60, 0.14);
  border-radius: 16px;
}

.compact-card img {
  width: 104px;
  height: 68px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.28s ease;
}

.compact-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 1.35;
}

.compact-card span {
  color: var(--muted);
  font-size: 12px;
}

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

.info-table div {
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 247, 237, 0.84);
}

.info-table span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 13px;
}

.info-table strong {
  color: #111827;
}

.site-footer {
  color: #ffffff;
  background: linear-gradient(180deg, #111827, #1f2937);
}

.footer-grid {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 36px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
}

.site-footer p {
  max-width: 460px;
  color: #d1d5db;
  line-height: 1.8;
}

.site-footer h3 {
  margin: 0 0 16px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
}

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

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

.footer-bottom {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 28px;
  color: #9ca3af;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

  .menu-toggle {
    display: inline-flex;
  }

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

  .hero-card-stack {
    max-width: 360px;
  }

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

  .rank-list {
    grid-template-columns: 1fr;
  }

  .sidebar-card {
    position: static;
  }
}

@media (max-width: 760px) {
  .hero-carousel,
  .hero-slide,
  .hero-image img {
    min-height: 680px;
  }

  .hero-content {
    padding: 72px 0 100px;
  }

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

  .hero-poster-card {
    transform: none;
  }

  .section,
  .page-section {
    padding: 52px 0;
  }

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

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

  .rank-item {
    grid-template-columns: 44px 82px 1fr;
    gap: 12px;
  }

  .rank-item img {
    width: 82px;
    height: 62px;
  }

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

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

@media (max-width: 500px) {
  .nav-shell {
    min-height: 68px;
  }

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

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

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

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

  .movie-body h3,
  .movie-body p {
    min-height: auto;
  }

  .compact-card {
    grid-template-columns: 86px 1fr;
  }

  .compact-card img {
    width: 86px;
    height: 62px;
  }
}

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

.category-block {
  padding: 18px;
  border: 1px solid rgba(251, 146, 60, 0.16);
  border-radius: 26px;
}

.category-block .category-card {
  margin-bottom: 16px;
}

@media (max-width: 760px) {
  .category-overview-grid {
    grid-template-columns: 1fr;
  }
}
