:root {
  --fog-50: #f0f4f8;
  --fog-100: #d9e2ec;
  --fog-200: #bcccdc;
  --fog-300: #9fb3c8;
  --fog-400: #829ab1;
  --fog-600: #486581;
  --fog-700: #334e68;
  --fog-800: #243b53;
  --fog-900: #102a43;
  --mist-50: #f8f9fa;
  --mist-500: #6c757d;
  --mist-600: #495057;
  --mist-700: #343a40;
  --cyan-500: #2cb1bc;
  --cyan-600: #14919b;
  --cyan-700: #0e7c86;
  --white: #ffffff;
  --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.06), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-medium: 0 10px 18px rgba(16, 42, 67, 0.18);
  --shadow-strong: 0 22px 50px rgba(16, 42, 67, 0.28);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--mist-50);
  color: var(--fog-800);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(188, 204, 220, 0.55);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

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

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--fog-800);
  font-weight: 800;
  white-space: nowrap;
}

.site-logo__mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--cyan-500), var(--cyan-700));
  color: var(--white);
  font-size: 15px;
  box-shadow: var(--shadow-soft);
}

.site-logo__text {
  font-size: 20px;
  letter-spacing: 0.02em;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.site-nav__links a {
  padding: 10px 14px;
  border-radius: 12px;
  color: var(--mist-700);
  font-weight: 650;
  font-size: 14px;
  transition: color 0.2s ease, background 0.2s ease;
}

.site-nav__links a:hover {
  color: var(--fog-900);
  background: var(--fog-100);
}

.site-search {
  display: flex;
  align-items: center;
  gap: 8px;
  width: min(330px, 28vw);
}

.site-search input {
  width: 100%;
  border: 1px solid var(--fog-200);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--fog-800);
  background: var(--white);
  outline: none;
}

.site-search input:focus {
  border-color: var(--cyan-500);
  box-shadow: 0 0 0 3px rgba(44, 177, 188, 0.16);
}

.site-search button,
.button {
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 750;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.site-search button {
  padding: 9px 14px;
  color: var(--white);
  background: var(--cyan-500);
}

.site-search button:hover,
.button-primary:hover {
  background: var(--cyan-600);
}

.site-nav__toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 0;
  border-radius: 12px;
  background: var(--fog-100);
}

.site-nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--fog-800);
}

.hero {
  position: relative;
  height: 76vh;
  min-height: 560px;
  overflow: hidden;
  background: var(--fog-900);
}

.hero__viewport,
.hero-slide,
.hero-slide__shade {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  background-position: center;
  background-size: cover;
  transition: opacity 900ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 2;
}

.hero-slide__shade {
  background:
    linear-gradient(90deg, rgba(16, 42, 67, 0.92) 0%, rgba(16, 42, 67, 0.7) 38%, rgba(16, 42, 67, 0.24) 100%),
    linear-gradient(0deg, rgba(16, 42, 67, 0.95) 0%, rgba(16, 42, 67, 0.08) 52%, rgba(16, 42, 67, 0.55) 100%);
}

.hero-slide__content {
  position: relative;
  z-index: 3;
  width: min(1240px, calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 0 0 86px;
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border-radius: 999px;
  padding: 6px 12px;
  color: var(--white);
  background: var(--cyan-500);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.hero-slide h1,
.page-hero h1,
.detail-hero h1 {
  margin: 18px 0 14px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero-slide p {
  max-width: 720px;
  margin: 0 0 20px;
  color: var(--fog-100);
  font-size: clamp(17px, 2vw, 22px);
}

.hero-slide__meta,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
  color: var(--fog-200);
  font-weight: 650;
}

.hero-slide__meta span,
.detail-meta span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(8px);
}

.hero-slide__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--white);
  background: var(--cyan-500);
  box-shadow: var(--shadow-medium);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(12px);
}

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

.button-ghost-dark {
  color: var(--fog-100);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.button-full {
  width: 100%;
}

.hero__arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(0, 0, 0, 0.35);
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.hero__arrow:hover {
  background: rgba(0, 0, 0, 0.55);
}

.hero__arrow--prev {
  left: 22px;
}

.hero__arrow--next {
  right: 22px;
}

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

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

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

.content-section {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0;
}

.content-section--intro {
  padding-bottom: 24px;
}

.intro-panel {
  border-radius: var(--radius);
  padding: clamp(26px, 5vw, 48px);
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(44, 177, 188, 0.5), transparent 34%),
    linear-gradient(135deg, var(--fog-800), var(--fog-900));
  box-shadow: var(--shadow-medium);
}

.intro-panel h2 {
  margin: 18px 0 12px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.15;
}

.intro-panel p {
  max-width: 820px;
  margin: 0;
  color: var(--fog-100);
  font-size: 18px;
}

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

.section-heading h2 {
  margin: 0 0 8px;
  color: var(--fog-800);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
}

.section-heading p {
  max-width: 760px;
  margin: 0;
  color: var(--mist-600);
}

.section-heading__action {
  flex: none;
  color: var(--cyan-600);
  font-weight: 800;
}

.movie-grid {
  display: grid;
  gap: 18px;
}

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

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

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

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

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

.movie-card__link {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.movie-card__poster {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--fog-200);
}

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

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

.movie-card__link:hover img {
  transform: scale(1.08);
  filter: brightness(0.72);
}

.movie-card__play {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: var(--white);
  background: rgba(44, 177, 188, 0.88);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.movie-card__year {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 3px 8px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.66);
  font-size: 12px;
  font-weight: 750;
}

.movie-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px;
}

.movie-card__body strong {
  color: var(--fog-800);
  font-size: 15px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-card__body em {
  color: var(--cyan-700);
  font-size: 12px;
  font-style: normal;
  font-weight: 750;
}

.movie-card__body span {
  color: var(--mist-600);
  font-size: 13px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.rank-panel,
.side-card,
.detail-card,
.player-card {
  border-radius: var(--radius);
  background: var(--fog-900);
  color: var(--fog-100);
  box-shadow: var(--shadow-medium);
}

.rank-panel {
  padding: 24px;
}

.rank-panel h2 {
  margin: 0 0 8px;
  font-size: 24px;
}

.rank-panel p {
  margin: 0 0 16px;
  color: var(--fog-300);
}

.rank-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.rank-list__item + .rank-list__item {
  border-top: 1px solid rgba(188, 204, 220, 0.16);
}

.rank-list__item a {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 8px 10px;
  padding: 12px 0;
  align-items: center;
}

.rank-list__number {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: var(--white);
  background: var(--cyan-500);
  font-weight: 900;
}

.rank-list__title {
  color: var(--white);
  font-weight: 750;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rank-list__meta {
  color: var(--fog-300);
  font-size: 13px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

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

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

.category-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 160px;
  border-radius: var(--radius);
  padding: 22px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.category-card strong {
  color: var(--fog-800);
  font-size: 22px;
}

.category-card span,
.category-card em {
  color: var(--cyan-700);
  font-style: normal;
  font-weight: 800;
}

.category-card p {
  margin: 0;
  color: var(--mist-600);
  font-size: 14px;
}

.category-card--wide {
  min-height: 220px;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  padding: 0;
  overflow: hidden;
}

.category-card__cover {
  min-height: 220px;
  background-position: center;
  background-size: cover;
  background-color: var(--fog-200);
}

.category-card__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
}

.category-showcase {
  padding-top: 24px;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(44, 177, 188, 0.38), transparent 32%),
    linear-gradient(135deg, var(--fog-800), var(--fog-900));
}

.page-hero > div {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

.page-hero--compact > div,
.page-hero--category > div {
  padding: 56px 0;
}

.page-hero p,
.detail-hero p {
  max-width: 780px;
  margin: 0;
  color: var(--fog-100);
  font-size: 18px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--fog-200);
  font-size: 14px;
}

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

.filter-panel {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr) auto;
  gap: 14px;
  align-items: end;
  margin-bottom: 26px;
  border-radius: var(--radius);
  padding: 18px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.filter-panel--search {
  grid-template-columns: 2fr repeat(4, 1fr) auto;
}

.filter-panel label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--fog-700);
  font-size: 13px;
  font-weight: 750;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--fog-200);
  border-radius: 12px;
  padding: 8px 11px;
  color: var(--fog-800);
  background: var(--white);
  outline: none;
}

.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--cyan-500);
  box-shadow: 0 0 0 3px rgba(44, 177, 188, 0.16);
}

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

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

.detail-hero {
  min-height: 520px;
}

.detail-hero__bg,
.detail-hero__shade {
  position: absolute;
  inset: 0;
}

.detail-hero__bg {
  background-position: center;
  background-size: cover;
  filter: blur(2px) saturate(0.92);
  transform: scale(1.02);
}

.detail-hero__shade {
  background:
    linear-gradient(90deg, rgba(16, 42, 67, 0.96), rgba(16, 42, 67, 0.78), rgba(16, 42, 67, 0.5)),
    linear-gradient(0deg, rgba(16, 42, 67, 0.96), rgba(16, 42, 67, 0.28));
}

.detail-hero__inner {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0 56px;
}

.detail-hero__content {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.detail-hero__poster {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow-strong);
  background: var(--fog-200);
}

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

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

.player-card {
  padding: 12px;
  margin-bottom: 24px;
}

.static-player {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  background: #000000;
}

.static-player__video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: #000000;
}

.static-player__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  color: var(--white);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.16));
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.static-player.is-playing .static-player__overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.static-player__play-icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(44, 177, 188, 0.9);
  box-shadow: var(--shadow-medium);
  font-size: 28px;
}

.detail-card {
  padding: 28px;
  background: var(--white);
  color: var(--fog-800);
}

.detail-section + .detail-section {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--fog-200);
}

.detail-section h2 {
  margin: 0 0 12px;
  font-size: 24px;
}

.detail-section p {
  margin: 0;
  color: var(--mist-700);
  font-size: 17px;
  line-height: 1.9;
}

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

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

.info-list dt {
  color: var(--mist-500);
  font-size: 12px;
  font-weight: 800;
}

.info-list dd {
  margin: 4px 0 0;
  color: var(--fog-800);
  font-weight: 750;
}

.info-list a {
  color: var(--cyan-700);
}

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

.tag-cloud span {
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--cyan-700);
  background: rgba(44, 177, 188, 0.12);
  font-size: 13px;
  font-weight: 750;
}

.detail-side {
  position: sticky;
  top: 92px;
}

.side-card {
  padding: 20px;
  background: var(--fog-900);
}

.side-card h2 {
  margin: 0 0 16px;
  font-size: 22px;
}

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

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

.rank-panel--mini {
  min-width: 0;
}

.site-footer {
  margin-top: 48px;
  color: var(--fog-100);
  background: var(--fog-900);
}

.site-footer__inner {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 32px;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

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

.site-footer p {
  max-width: 520px;
  margin: 0;
  color: var(--fog-300);
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li + li {
  margin-top: 8px;
}

.site-footer a {
  color: var(--fog-300);
}

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

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

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

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

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

  .detail-side {
    position: static;
  }
}

@media (max-width: 820px) {
  .site-nav {
    flex-wrap: wrap;
    min-height: 64px;
    padding: 10px 0;
  }

  .site-nav__toggle {
    display: block;
  }

  .site-nav__links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    margin: 0;
    padding-top: 8px;
  }

  .site-header.is-open .site-nav__links {
    display: flex;
  }

  .site-nav__links a {
    width: 100%;
  }

  .hero {
    height: 72vh;
    min-height: 520px;
  }

  .hero-slide__content {
    padding-bottom: 70px;
  }

  .hero__arrow {
    display: none;
  }

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

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

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

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

  .category-grid,
  .category-grid--wide,
  .ranking-columns,
  .rank-grid {
    grid-template-columns: 1fr;
  }

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

  .category-card__cover {
    min-height: 190px;
  }

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

  .detail-hero__content {
    grid-template-columns: 1fr;
  }

  .detail-hero__poster {
    width: min(260px, 72vw);
  }

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

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

@media (max-width: 520px) {
  .site-logo__text {
    font-size: 17px;
  }

  .hero-slide h1,
  .page-hero h1,
  .detail-hero h1 {
    font-size: 34px;
  }

  .movie-grid--featured,
  .movie-grid--six,
  .movie-grid--catalog,
  .movie-grid--compact,
  .movie-grid--side {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .movie-card__body {
    padding: 11px;
  }

  .movie-card__body span {
    display: none;
  }
}
