:root {
  --primary-50: #fdf8f3;
  --primary-100: #faeee1;
  --primary-200: #f4dac2;
  --primary-300: #ecbe98;
  --primary-400: #e39d6c;
  --primary-600: #c8643e;
  --primary-700: #a74f35;
  --primary-800: #893f31;
  --primary-900: #6f352b;
  --accent-400: #f08444;
  --accent-600: #d65a1c;
  --accent-700: #b73a14;
  --secondary-50: #f7f7f6;
  --secondary-100: #eeeeec;
  --secondary-200: #c9c8c5;
  --secondary-500: #77736e;
  --secondary-600: #5e5b56;
  --secondary-700: #4d4945;
  --secondary-800: #3f3c38;
  --secondary-900: #343332;
  --white: #ffffff;
  --black: #000000;
  --shadow-sm: 0 4px 12px rgba(52, 51, 50, 0.08);
  --shadow-md: 0 12px 28px rgba(52, 51, 50, 0.14);
  --shadow-lg: 0 25px 50px rgba(52, 51, 50, 0.25);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--secondary-50);
  color: var(--secondary-900);
  font-family: Georgia, Cambria, "Times New Roman", "Noto Serif SC", "Songti SC", serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, var(--primary-900), var(--primary-800), var(--primary-900));
  color: var(--primary-50);
  box-shadow: var(--shadow-md);
}

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

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

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

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

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

.brand-copy small {
  margin-top: 4px;
  color: var(--primary-300);
  font-size: 12px;
}

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

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

.nav-dropdown > button {
  border: 0;
  background: transparent;
  padding: 0;
}

.desktop-nav > a:hover,
.nav-dropdown > button:hover {
  color: var(--accent-400);
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 190px;
  padding: 8px 0;
  border-radius: 12px;
  background: var(--white);
  color: var(--secondary-900);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s ease;
}

.dropdown-menu a {
  display: block;
  padding: 9px 16px;
}

.dropdown-menu a:hover {
  background: var(--primary-50);
  color: var(--primary-700);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-search {
  display: flex;
  min-width: 280px;
}

.header-search input,
.mobile-search input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  background: var(--primary-700);
  color: var(--primary-50);
  padding: 10px 13px;
  border-radius: 10px 0 0 10px;
}

.header-search input::placeholder,
.mobile-search input::placeholder {
  color: var(--primary-300);
}

.header-search button,
.mobile-search button {
  border: 0;
  padding: 10px 16px;
  border-radius: 0 10px 10px 0;
  background: var(--accent-600);
  color: var(--white);
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 999px;
}

.mobile-panel {
  display: none;
  padding: 16px;
  border-top: 1px solid rgba(244, 218, 194, 0.25);
  background: var(--primary-800);
}

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

.mobile-search {
  display: flex;
  margin-bottom: 14px;
}

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

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

.hero-slider {
  position: relative;
  height: 560px;
  overflow: hidden;
  background: var(--secondary-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;
  background: linear-gradient(135deg, var(--secondary-900), var(--primary-800));
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.08));
}

.hero-content {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 68px;
  transform: translateX(-50%);
  color: var(--white);
}

.hero-kicker,
.detail-badges a,
.detail-badges span,
.poster-chip,
.rank-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-weight: 700;
}

.hero-kicker {
  padding: 5px 14px;
  background: var(--accent-600);
  font-size: 14px;
}

.hero-content h1 {
  max-width: 780px;
  margin: 18px 0 14px;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.hero-content p {
  max-width: 700px;
  margin: 0 0 26px;
  color: #e8e4df;
  font-size: 18px;
}

.hero-actions,
.category-overview-head,
.panel-title,
.movie-line,
.detail-badges,
.hero-stats,
.breadcrumbs,
.detail-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  padding: 12px 22px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: 0.2s ease;
}

.button-primary {
  background: var(--primary-600);
  color: var(--white);
}

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

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.25);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}

.button-light {
  color: var(--primary-700);
  border-color: var(--primary-200);
  background: var(--primary-50);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.48);
  color: var(--white);
  font-size: 34px;
  line-height: 1;
  transition: 0.2s ease;
}

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

.hero-prev {
  left: 18px;
}

.hero-next {
  right: 18px;
}

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

.hero-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  transition: 0.2s ease;
}

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

.category-strip {
  padding: 36px 0;
  border-bottom: 1px solid var(--primary-200);
  background: var(--primary-50);
}

.content-section {
  padding: 56px 0;
}

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

.section-heading > span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: var(--primary-600);
  color: var(--white);
}

.section-heading h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
}

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

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

.category-tile {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  border: 1px solid var(--primary-200);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: 0.25s ease;
}

.category-tile:hover {
  border-color: var(--primary-400);
  background: var(--primary-100);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.category-tile strong {
  font-size: 19px;
}

.category-tile span {
  color: var(--primary-700);
  font-weight: 800;
}

.category-tile small {
  color: var(--secondary-600);
}

.category-tile em {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-style: normal;
}

.category-tile em a {
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: var(--secondary-600);
  font-size: 12px;
}

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

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

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

.movie-card {
  min-width: 0;
  overflow: hidden;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: 0.25s ease;
}

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

.movie-card > a {
  display: block;
  height: 100%;
}

.poster {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-900), var(--secondary-900));
}

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

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

.poster-chip {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 4px 10px;
  background: rgba(0, 0, 0, 0.66);
  color: var(--white);
  font-size: 12px;
}

.rank-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 5px 10px;
  background: var(--accent-600);
  color: var(--white);
  font-size: 12px;
}

.movie-copy {
  padding: 18px;
}

.movie-copy h3 {
  margin: 0 0 8px;
  font-size: 19px;
  line-height: 1.3;
}

.movie-copy p {
  margin: 0 0 14px;
  color: var(--secondary-600);
  font-size: 14px;
}

.movie-meta,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.movie-meta span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 2px 9px;
  border-radius: 999px;
  background: var(--secondary-100);
  color: var(--secondary-700);
  font-size: 12px;
}

.tag-row {
  margin-top: 10px;
}

.tag-row span {
  background: var(--primary-50);
  color: var(--primary-700);
}

.split-section {
  padding: 56px 0;
  background: linear-gradient(180deg, var(--primary-50), var(--white));
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(300px, 0.8fr);
  gap: 34px;
  align-items: start;
}

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

.movie-card-list > a {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.movie-card-list .movie-copy {
  padding: 16px 18px 16px 0;
}

.poster-small {
  aspect-ratio: auto;
  min-height: 132px;
}

.movie-line {
  justify-content: space-between;
  gap: 10px;
}

.movie-line span {
  color: var(--primary-700);
  font-weight: 800;
}

.ranking-panel,
.side-panel,
.poster-card,
.detail-card,
.category-overview-card,
.filter-panel {
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.ranking-panel {
  position: sticky;
  top: 92px;
  padding: 22px;
}

.panel-title {
  justify-content: space-between;
  margin-bottom: 16px;
  font-weight: 800;
  font-size: 20px;
}

.panel-title a {
  color: var(--primary-700);
  font-size: 14px;
}

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

.ranking-row {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  column-gap: 10px;
  padding: 12px;
  border-radius: 12px;
  background: var(--secondary-50);
  transition: 0.2s ease;
}

.ranking-row:hover {
  background: var(--primary-50);
}

.ranking-row span {
  grid-row: span 2;
  color: var(--accent-600);
  font-weight: 900;
  font-size: 22px;
}

.ranking-row strong {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.ranking-row small {
  color: var(--secondary-600);
}

.feature-band {
  padding: 68px 0;
  background: var(--secondary-900);
  color: var(--white);
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 40px;
  align-items: center;
}

.feature-copy span {
  display: inline-flex;
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--accent-600);
  font-weight: 800;
}

.feature-copy h2 {
  margin: 18px 0 14px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
}

.feature-copy p {
  color: #d8d4cf;
  font-size: 18px;
}

.feature-poster {
  display: block;
  height: 340px;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
}

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

.page-hero {
  padding: 56px 0;
  background: linear-gradient(90deg, var(--primary-900), var(--primary-800), var(--primary-900));
  color: var(--white);
}

.page-hero h1 {
  margin: 12px 0;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.12;
}

.page-hero p {
  max-width: 820px;
  margin: 0;
  color: var(--primary-200);
  font-size: 18px;
}

.breadcrumb,
.breadcrumbs a,
.detail-breadcrumbs a {
  color: var(--primary-200);
}

.hero-stats {
  margin-top: 20px;
}

.hero-stats span {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--primary-50);
  font-weight: 700;
}

.category-overview-list {
  display: grid;
  gap: 24px;
  padding: 48px 0;
}

.category-overview-card {
  padding: 24px;
}

.category-overview-head {
  justify-content: space-between;
  margin-bottom: 14px;
}

.category-overview-head h2 {
  margin: 0 0 8px;
  font-size: 28px;
}

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

.count-pill {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--primary-50);
  color: var(--primary-700);
  font-weight: 800;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 180px 180px auto;
  gap: 14px;
  align-items: end;
  padding: 18px;
  margin-bottom: 26px;
}

.filter-panel-wide {
  grid-template-columns: minmax(260px, 1fr) 190px 170px auto;
}

.filter-panel label {
  display: grid;
  gap: 6px;
  color: var(--secondary-700);
  font-weight: 800;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  border: 1px solid var(--primary-200);
  border-radius: 12px;
  background: var(--white);
  color: var(--secondary-900);
  padding: 11px 12px;
  outline: 0;
}

.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--accent-400);
  box-shadow: 0 0 0 3px rgba(240, 132, 68, 0.16);
}

.filter-panel strong {
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--primary-600);
  color: var(--white);
  text-align: center;
}

.detail-shell {
  padding: 32px 0 56px;
}

.detail-breadcrumbs {
  margin-bottom: 22px;
  color: var(--secondary-600);
}

.detail-breadcrumbs a {
  color: var(--primary-700);
}

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

.player-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: var(--black);
  box-shadow: var(--shadow-lg);
}

.movie-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--black);
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  border: 0;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.62));
  color: var(--white);
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-symbol {
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
  border-radius: 999px;
  background: var(--accent-600);
  font-size: 28px;
  box-shadow: var(--shadow-lg);
}

.player-overlay strong {
  font-size: 22px;
}

.player-overlay small {
  color: #ddd8d2;
}

.player-message {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 12px;
  margin: 0;
  color: var(--primary-100);
  font-size: 13px;
  text-align: center;
}

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

.detail-badges {
  margin-bottom: 14px;
}

.detail-badges a,
.detail-badges span {
  padding: 5px 12px;
  background: var(--primary-600);
  color: var(--white);
  font-size: 13px;
}

.detail-badges a:first-child {
  background: var(--accent-600);
}

.detail-card h1 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.15;
}

.lead-text {
  margin: 0 0 22px;
  color: var(--secondary-800);
  font-size: 19px;
  font-weight: 700;
}

.info-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--secondary-200);
}

.info-list div {
  padding: 12px;
  border-radius: 12px;
  background: var(--secondary-50);
}

.info-list dt {
  color: var(--secondary-600);
  font-size: 13px;
}

.info-list dd {
  margin: 4px 0 0;
  font-weight: 800;
}

.text-block,
.quote-block,
.tag-cloud {
  margin-top: 26px;
}

.text-block h2,
.quote-block h2,
.tag-cloud h2,
.side-panel h2 {
  margin: 0 0 12px;
  font-size: 22px;
}

.text-block p,
.quote-block p {
  margin: 0;
  color: var(--secondary-700);
  white-space: pre-line;
}

.quote-block {
  padding: 22px;
  border-left: 5px solid var(--primary-600);
  border-radius: 14px;
  background: var(--primary-50);
}

.quote-block p {
  font-style: italic;
}

.tag-cloud div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-cloud a,
.tag-cloud span {
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--secondary-100);
  color: var(--secondary-700);
  font-size: 13px;
}

.detail-aside {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 20px;
}

.poster-card {
  padding: 16px;
}

.poster-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary-900), var(--secondary-900));
}

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

.side-panel {
  padding: 18px;
}

.side-link {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--secondary-100);
}

.side-link img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  border-radius: 10px;
  background: var(--secondary-100);
}

.side-link strong {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.35;
}

.side-link small {
  display: block;
  margin-top: 4px;
  color: var(--secondary-600);
}

.related-section {
  padding-bottom: 0;
}

.site-footer {
  padding: 44px 0;
  background: var(--secondary-900);
  color: #d8d4cf;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr;
  gap: 32px;
}

.footer-logo {
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
}

.site-footer p {
  max-width: 560px;
  margin: 10px 0 0;
}

.site-footer h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 18px;
}

.site-footer a:not(.footer-logo) {
  display: block;
  margin-top: 8px;
  color: #d8d4cf;
}

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

[data-card].is-hidden {
  display: none;
}

.no-results {
  padding: 26px;
  border-radius: 18px;
  background: var(--white);
  text-align: center;
  color: var(--secondary-600);
  box-shadow: var(--shadow-sm);
}

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

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

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

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

  .detail-grid,
  .split-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .detail-aside,
  .ranking-panel {
    position: static;
  }
}

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

  .header-inner {
    min-height: 64px;
  }

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

  .brand-copy small {
    display: none;
  }

  .hero-slider {
    height: 500px;
  }

  .hero-content {
    bottom: 70px;
  }

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

  .hero-arrow {
    width: 38px;
    height: 38px;
  }

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

  .split-section,
  .content-section,
  .category-strip {
    padding: 36px 0;
  }

  .movie-copy {
    padding: 14px;
  }

  .movie-copy h3 {
    font-size: 16px;
  }

  .movie-card-list > a {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 12px;
  }

  .movie-card-list .movie-copy {
    padding: 12px 12px 12px 0;
  }

  .poster-small {
    min-height: 112px;
  }

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

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

  .page-hero {
    padding: 42px 0;
  }
}

@media (max-width: 520px) {
  .category-grid,
  .movie-grid,
  .hot-grid,
  .compact-grid {
    grid-template-columns: 1fr;
  }

  .movie-card-list > a {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
