:root {
  --bg: #f7f7f7;
  --card: #ffffff;
  --ink: #111827;
  --muted: #6b7280;
  --soft: #f3f4f6;
  --line: #e5e7eb;
  --brand: #ea580c;
  --brand-dark: #c2410c;
  --brand-soft: #ffedd5;
  --danger: #dc2626;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  --radius: 18px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fbfbfb 0%, #f3f4f6 44%, #ffffff 100%);
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, #ea580c 0%, #dc2626 100%);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(194, 65, 12, 0.22);
}

.site-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  min-height: 72px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.site-logo__mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.95);
  color: var(--brand);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

.site-logo__text {
  font-size: 22px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 600;
}

.site-nav a {
  opacity: 0.94;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-nav a:hover {
  color: #ffedd5;
  opacity: 1;
}

.site-search {
  margin-left: auto;
  display: flex;
  align-items: center;
  width: min(360px, 32vw);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  padding: 5px;
  backdrop-filter: blur(10px);
}

.site-search input,
.mobile-nav input,
.search-page-form input,
.filter-bar input,
.hero-search-panel input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: inherit;
}

.site-search input::placeholder,
.mobile-nav input::placeholder,
.hero-search-panel input::placeholder {
  color: rgba(255, 255, 255, 0.78);
}

.site-search button,
.mobile-nav button,
.hero-search-panel button,
.search-page-form button {
  border: 0;
  border-radius: 999px;
  padding: 8px 16px;
  background: #ffffff;
  color: var(--brand);
  font-weight: 700;
  cursor: pointer;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  cursor: pointer;
}

.mobile-nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 22px 18px;
  display: grid;
  gap: 12px;
}

.mobile-nav[hidden] {
  display: none;
}

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

.mobile-nav form {
  display: flex;
  gap: 10px;
}

.hero-carousel {
  position: relative;
  background: #000000;
}

.hero-carousel__stage {
  position: relative;
  height: 560px;
  overflow: hidden;
}

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

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

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

.hero-slide__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.48) 48%, rgba(0, 0, 0, 0.1) 100%);
}

.hero-slide__content {
  position: absolute;
  left: 50%;
  bottom: 74px;
  width: min(1180px, calc(100% - 44px));
  transform: translateX(-50%);
  color: #ffffff;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(234, 88, 12, 0.92);
  font-weight: 700;
  margin-bottom: 18px;
  box-shadow: 0 10px 25px rgba(234, 88, 12, 0.35);
}

.hero-slide h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  font-weight: 900;
  text-shadow: 0 12px 35px rgba(0, 0, 0, 0.45);
}

.hero-slide p {
  max-width: 760px;
  margin: 18px 0 0;
  color: #e5e7eb;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.75;
}

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

.hero-tags {
  margin: 22px 0;
}

.hero-tags span,
.detail-tags span,
.movie-card__tags span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 700;
}

.hero-tags span {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-actions,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 12px 24px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: var(--brand);
  color: #ffffff;
  box-shadow: 0 16px 35px rgba(234, 88, 12, 0.36);
}

.btn-primary:hover {
  background: var(--brand-dark);
}

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

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 6;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.46);
  color: #ffffff;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.72);
  transform: translateY(-50%) scale(1.06);
}

.hero-arrow--prev {
  left: 20px;
}

.hero-arrow--next {
  right: 20px;
}

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

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

.hero-dot.is-active {
  width: 36px;
  background: var(--brand);
}

.hero-search-panel {
  position: relative;
  z-index: 9;
  max-width: 1180px;
  margin: -44px auto 0;
  padding: 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  color: #ffffff;
  background: linear-gradient(90deg, rgba(234, 88, 12, 0.94), rgba(220, 38, 38, 0.94));
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.hero-search-panel strong {
  font-size: 18px;
}

.hero-search-panel form {
  display: flex;
  gap: 10px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.hero-search-panel input {
  padding: 0 12px;
}

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

.hero-chips a {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 13px;
  font-weight: 700;
}

.page-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 22px;
}

.page-main--top {
  padding-top: 32px;
}

.content-section {
  margin-bottom: 72px;
}

.content-section--warm {
  margin-left: -22px;
  margin-right: -22px;
  padding: 42px 22px;
  border-radius: 28px;
  background: linear-gradient(90deg, #fff7ed, #fef2f2);
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 900;
  color: #111827;
}

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

.section-more {
  color: var(--brand);
  font-weight: 800;
  white-space: nowrap;
}

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

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

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

.movie-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.movie-card__poster {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, #111827, #7c2d12);
}

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

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

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

.movie-card__poster::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 62%);
  transition: opacity 0.25s ease;
}

.movie-card:hover .movie-card__poster::after {
  opacity: 1;
}

.movie-card__play {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.card-rank {
  position: absolute;
  z-index: 4;
  top: 10px;
  left: 10px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--danger));
  box-shadow: 0 10px 20px rgba(220, 38, 38, 0.28);
}

.movie-card__body {
  padding: 16px;
}

.movie-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 8px;
}

.movie-card h2 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 850;
}

.movie-card h2 a:hover {
  color: var(--brand);
}

.movie-card p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-card__tags span {
  background: var(--soft);
  color: #374151;
}

.horizontal-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 250px;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 2px 12px;
  scroll-snap-type: x proximity;
}

.mini-card {
  display: grid;
  gap: 10px;
  padding: 12px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  scroll-snap-align: start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.mini-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 14px;
  background: #111827;
}

.mini-card span {
  font-weight: 800;
  line-height: 1.35;
}

.mini-card small {
  color: var(--muted);
}

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

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

.category-tile,
.category-panel {
  display: block;
  min-height: 160px;
  padding: 22px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover,
.category-panel:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.category-tile strong,
.category-panel strong {
  display: block;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 8px;
}

.category-tile span,
.category-panel span {
  color: var(--brand);
  font-weight: 800;
}

.category-tile p,
.category-panel p {
  color: var(--muted);
  line-height: 1.72;
  margin: 12px 0 0;
}

.category-panel__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.category-panel__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.category-panel__links a {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 700;
}

.ranking-panel {
  padding: 28px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

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

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

.latest-list {
  display: grid;
  gap: 12px;
}

.latest-item {
  display: grid;
  grid-template-columns: 48px 96px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
}

.latest-item b {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--danger));
}

.latest-item img {
  width: 96px;
  height: 60px;
  object-fit: cover;
  border-radius: 12px;
  background: #111827;
}

.latest-item span {
  font-weight: 850;
}

.latest-item small {
  color: var(--muted);
}

.page-hero {
  margin-bottom: 34px;
  padding: 54px;
  border-radius: 30px;
  color: #ffffff;
  background: radial-gradient(circle at top left, rgba(255, 237, 213, 0.28), transparent 32%), linear-gradient(135deg, #111827 0%, #7c2d12 52%, #dc2626 100%);
  box-shadow: var(--shadow);
}

.page-hero span,
.detail-kicker {
  display: inline-flex;
  color: #fed7aa;
  font-weight: 850;
  margin-bottom: 12px;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 950;
}

.page-hero p {
  max-width: 780px;
  margin: 14px 0 0;
  color: #f3f4f6;
  line-height: 1.8;
  font-size: 18px;
}

.filter-bar,
.search-page-form {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 24px;
  padding: 14px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.filter-bar input,
.search-page-form input {
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--soft);
  color: var(--ink);
}

.filter-bar a,
.search-page-form button {
  flex-shrink: 0;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--brand);
  color: #ffffff;
  font-weight: 800;
}

.search-summary {
  color: var(--muted);
  margin-bottom: 18px;
}

.movie-detail {
  max-width: 1280px;
  margin: 0 auto;
  padding: 30px 22px 72px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 14px;
}

.breadcrumbs a:hover {
  color: var(--brand);
}

.detail-hero {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 34px;
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(135deg, #111827, #7c2d12 55%, #dc2626);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 24px;
  background: #111827;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.detail-info {
  align-self: center;
}

.detail-info h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.12;
  font-weight: 950;
}

.detail-one-line {
  margin: 18px 0 0;
  max-width: 760px;
  color: #e5e7eb;
  line-height: 1.8;
  font-size: 18px;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}

.detail-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-weight: 750;
}

.detail-tags {
  margin-bottom: 24px;
}

.detail-tags span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
}

.detail-tags--light span {
  background: var(--brand-soft);
  color: var(--brand-dark);
}

.player-section {
  margin: 34px 0;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #000000;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

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

.player-start {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  border: 0;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.62));
  color: #ffffff;
  cursor: pointer;
}

.player-start span {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 18px 45px rgba(234, 88, 12, 0.35);
  font-size: 36px;
  transform: translateX(3px);
}

.player-start.is-hidden {
  display: none;
}

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

.detail-article,
.detail-side {
  padding: 28px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.detail-article h2,
.detail-side h2 {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 900;
}

.detail-article p {
  margin: 0 0 26px;
  color: #374151;
  font-size: 17px;
  line-height: 1.9;
}

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

.detail-side .mini-card {
  grid-template-columns: 112px 1fr;
  align-items: center;
}

.detail-side .mini-card img {
  grid-row: span 2;
  aspect-ratio: 16 / 10;
}

.site-footer {
  color: #d1d5db;
  background: #111827;
  padding: 56px 22px;
}

.site-footer__grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 30px;
}

.site-logo--footer {
  color: #ffffff;
  margin-bottom: 16px;
}

.site-footer p {
  line-height: 1.8;
  max-width: 480px;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
}

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

.footer-links--wrap {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.is-filtered-out {
  display: none !important;
}

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

  .nav-toggle {
    display: block;
  }

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

  .movie-grid,
  .movie-grid--catalog,
  .ranking-list--page {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .detail-poster {
    max-width: 360px;
  }
}

@media (max-width: 700px) {
  .site-header__inner {
    min-height: 64px;
    padding-inline: 16px;
  }

  .site-logo__text {
    font-size: 19px;
  }

  .hero-carousel__stage {
    height: 540px;
  }

  .hero-slide__content {
    bottom: 84px;
    width: calc(100% - 34px);
  }

  .hero-arrow {
    display: none;
  }

  .hero-search-panel {
    margin: -28px 16px 0;
  }

  .page-main,
  .movie-detail {
    padding-inline: 16px;
  }

  .page-hero {
    padding: 34px 24px;
  }

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

  .movie-grid,
  .movie-grid--featured,
  .movie-grid--wide,
  .movie-grid--catalog,
  .ranking-list,
  .ranking-list--page,
  .category-grid,
  .category-grid--large {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .movie-card__body {
    padding: 13px;
  }

  .movie-card h2 {
    font-size: 16px;
  }

  .latest-item {
    grid-template-columns: 38px 78px 1fr;
  }

  .latest-item small {
    display: none;
  }

  .detail-hero {
    padding: 22px;
  }

  .detail-side .mini-card {
    grid-template-columns: 92px 1fr;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .movie-grid,
  .movie-grid--featured,
  .movie-grid--wide,
  .movie-grid--catalog,
  .ranking-list,
  .ranking-list--page,
  .category-grid,
  .category-grid--large {
    grid-template-columns: 1fr;
  }

  .horizontal-row {
    grid-auto-columns: 80%;
  }

  .filter-bar,
  .search-page-form {
    flex-direction: column;
    align-items: stretch;
  }
}
