* {
  box-sizing: border-box;
}

:root {
  --blue-950: #07163e;
  --blue-900: #0f2f73;
  --blue-800: #16429a;
  --blue-700: #1d4ed8;
  --blue-600: #2563eb;
  --blue-100: #dbeafe;
  --cyan-300: #67e8f9;
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-500: #64748b;
  --slate-100: #f1f5f9;
  --white: #ffffff;
  --shadow-soft: 0 20px 45px rgba(15, 23, 42, 0.16);
  --shadow-card: 0 18px 40px rgba(30, 64, 175, 0.18);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--slate-900);
  background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 42%, #ffffff 100%);
  min-height: 100vh;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  color: var(--white);
  background: linear-gradient(90deg, var(--blue-600), var(--blue-800), var(--blue-950));
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.22);
}

.site-header__inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.site-logo__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--blue-950);
  background: linear-gradient(135deg, #ffffff, #bfdbfe);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72), 0 10px 22px rgba(2, 6, 23, 0.18);
}

.site-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

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

.site-logo__text small {
  margin-top: 5px;
  font-size: 12px;
  color: var(--blue-100);
}

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

.nav-link {
  padding: 10px 13px;
  border-radius: 999px;
  color: #eff6ff;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

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

.header-search {
  display: flex;
  align-items: center;
  width: 260px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.header-search input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--white);
  background: transparent;
  padding: 10px 13px;
}

.header-search input::placeholder {
  color: rgba(255, 255, 255, 0.70);
}

.header-search button {
  border: 0;
  color: var(--blue-950);
  background: var(--white);
  padding: 10px 14px;
  cursor: pointer;
}

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

main {
  width: 100%;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  color: var(--white);
  background: var(--blue-950);
}

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

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

.hero-slide__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-slide__bg::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0));
}

.hero-slide__content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 118px 0 120px;
  max-width: 720px;
}

.hero-slide h1 {
  margin: 14px 0 18px;
  font-size: clamp(38px, 7vw, 76px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.hero-slide p {
  margin: 0;
  max-width: 650px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 1.7;
}

.hero-slide__poster {
  position: absolute;
  z-index: 2;
  right: max(32px, calc((100vw - 1180px) / 2));
  top: 128px;
  width: min(320px, 28vw);
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

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

.hero-slide__poster:hover img {
  transform: scale(1.05);
}

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

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

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

.btn-primary {
  color: var(--blue-950);
  background: linear-gradient(135deg, #ffffff, #bfdbfe);
  box-shadow: 0 15px 30px rgba(191, 219, 254, 0.28);
}

.btn-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.btn-text {
  color: var(--blue-100);
}

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
  backdrop-filter: blur(10px);
}

.hero-control--prev {
  left: 24px;
}

.hero-control--next {
  right: 24px;
}

.hero-dots {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.hero-dots button {
  width: 36px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.hero-dots button.active {
  background: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(37, 99, 235, 0.18);
  border: 1px solid rgba(191, 219, 254, 0.24);
  font-size: 13px;
  font-weight: 700;
}

.eyebrow--dark {
  color: var(--blue-700);
  background: #dbeafe;
  border-color: #bfdbfe;
}

.search-panel,
.section-block,
.filter-panel,
.breadcrumb,
.detail-layout,
.player-section {
  width: min(1180px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.search-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 28px;
  align-items: center;
  margin-top: -58px;
  position: relative;
  z-index: 8;
  padding: 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.search-panel h2,
.section-head h2,
.info-panel h2 {
  margin: 10px 0 8px;
  color: var(--slate-950);
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.search-panel p {
  margin: 0;
  color: var(--slate-500);
  line-height: 1.7;
}

.large-search {
  display: flex;
  padding: 8px;
  border-radius: 999px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
}

.large-search input {
  width: 100%;
  border: 0;
  outline: 0;
  padding: 0 18px;
  background: transparent;
}

.large-search button {
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
  padding: 13px 24px;
  cursor: pointer;
  font-weight: 700;
}

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

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

.section-head h2 {
  margin-bottom: 0;
}

.compact-head h2 {
  font-size: 30px;
}

.section-link {
  color: var(--blue-700);
  font-weight: 700;
}

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

.category-tile {
  position: relative;
  min-height: 190px;
  display: flex;
  align-items: end;
  overflow: hidden;
  border-radius: 24px;
  color: var(--white);
  box-shadow: var(--shadow-card);
  background: var(--blue-900);
}

.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
  transition: transform 0.3s ease;
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.05), rgba(15, 23, 42, 0.88));
}

.category-tile:hover img {
  transform: scale(1.08);
}

.category-tile span {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px;
}

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

.category-tile em {
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
  line-height: 1.55;
}

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

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

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

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

.movie-card {
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 40px rgba(30, 64, 175, 0.11);
  border: 1px solid rgba(191, 219, 254, 0.68);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.movie-card__poster {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-600));
}

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

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

.movie-card__year,
.rank-number {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 28px;
  border-radius: 999px;
  color: var(--blue-950);
  background: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 800;
}

.rank-number {
  top: auto;
  bottom: 12px;
  color: var(--white);
  background: linear-gradient(135deg, #f97316, #ef4444);
}

.movie-card__body {
  padding: 17px;
}

.movie-card__title {
  display: block;
  margin-bottom: 8px;
  color: var(--slate-950);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.movie-card__meta {
  color: var(--blue-700);
  font-size: 13px;
  line-height: 1.45;
}

.movie-card p {
  margin: 10px 0 0;
  color: var(--slate-500);
  line-height: 1.6;
  font-size: 14px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.tag-list span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 9px;
  color: var(--blue-700);
  background: #eff6ff;
  font-size: 12px;
  font-weight: 700;
}

.tag-list--light span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.split-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 42px 58px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #dbeafe;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.08);
}

.rank-row__index {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-600), var(--blue-900));
  font-weight: 900;
}

.rank-row img {
  width: 58px;
  height: 78px;
  object-fit: cover;
  border-radius: 12px;
}

.rank-row__text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.rank-row__text strong {
  color: var(--slate-950);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rank-row__text em {
  color: var(--slate-500);
  font-style: normal;
  font-size: 13px;
}

.page-hero {
  color: var(--white);
  background: linear-gradient(90deg, var(--blue-950), var(--blue-700));
  background-size: cover;
  background-position: center;
  padding: 86px 0;
}

.page-hero--small {
  padding: 74px 0;
}

.page-hero > div {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  max-width: 780px;
}

.page-hero h1 {
  margin: 16px 0;
  font-size: clamp(34px, 6vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.page-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
  line-height: 1.7;
}

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

.category-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: 28px;
  color: var(--white);
  background: var(--blue-900);
  box-shadow: var(--shadow-card);
}

.category-card img,
.category-card__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.category-card img {
  object-fit: cover;
  opacity: 0.62;
  transition: transform 0.3s ease;
}

.category-card__shade {
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.10), rgba(2, 6, 23, 0.88));
}

.category-card:hover img {
  transform: scale(1.07);
}

.category-card__body {
  position: absolute;
  inset: auto 0 0;
  padding: 26px;
}

.category-card__body strong {
  display: block;
  margin-bottom: 9px;
  font-size: 28px;
}

.category-card__body em {
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
  line-height: 1.6;
}

.filter-panel {
  padding: 48px 0 0;
}

.filter-panel__row {
  position: sticky;
  top: 92px;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-bottom: 26px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #dbeafe;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.10);
  backdrop-filter: blur(16px);
}

.filter-panel input {
  width: 100%;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  outline: 0;
  padding: 13px 16px;
  color: var(--slate-900);
  background: #eff6ff;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.filter-chip {
  border: 0;
  border-radius: 999px;
  color: var(--blue-700);
  background: #dbeafe;
  padding: 9px 13px;
  cursor: pointer;
  font-weight: 700;
}

.filter-chip.active,
.filter-chip:hover {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-600), var(--blue-900));
}

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

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 22px 0;
  color: var(--slate-500);
}

.breadcrumb a {
  color: var(--blue-700);
  font-weight: 700;
}

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

.player-box {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: var(--slate-950);
  box-shadow: 0 30px 90px rgba(2, 6, 23, 0.28);
  aspect-ratio: 16 / 9;
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  border: 0;
  color: var(--white);
  background: radial-gradient(circle, rgba(37, 99, 235, 0.25), rgba(2, 6, 23, 0.78));
  cursor: pointer;
  text-align: center;
}

.player-overlay.is-hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.play-icon {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-950);
  background: var(--white);
  box-shadow: 0 14px 40px rgba(255, 255, 255, 0.22);
  font-size: 34px;
}

.player-overlay strong {
  font-size: clamp(24px, 4vw, 44px);
}

.player-overlay em {
  color: var(--blue-100);
  font-style: normal;
  font-weight: 700;
}

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

.detail-poster {
  overflow: hidden;
  border-radius: 26px;
  box-shadow: var(--shadow-card);
  background: var(--blue-900);
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.detail-content {
  padding: 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #dbeafe;
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.10);
}

.detail-content h1 {
  margin: 14px 0 12px;
  color: var(--slate-950);
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.lead-text {
  margin: 0 0 18px;
  color: var(--slate-700);
  font-size: 20px;
  line-height: 1.7;
}

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

.detail-meta span {
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--blue-700);
  background: #eff6ff;
  font-weight: 700;
  font-size: 14px;
}

.detail-content h2 {
  margin: 28px 0 12px;
  color: var(--slate-950);
  font-size: 26px;
}

.detail-content p {
  color: var(--slate-700);
  line-height: 1.9;
  font-size: 17px;
}

.info-panel {
  padding: 32px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #dbeafe;
  box-shadow: var(--shadow-soft);
}

.info-panel p {
  color: var(--slate-700);
  line-height: 1.8;
}

.info-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.info-link {
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-600), var(--blue-900));
  padding: 12px 18px;
  font-weight: 700;
}

.site-footer {
  margin-top: 80px;
  color: #e2e8f0;
  background: var(--slate-950);
}

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

.footer-logo {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
}

.site-footer p {
  max-width: 620px;
  margin: 0;
  color: #94a3b8;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: #bfdbfe;
}

.site-footer__bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  padding: 18px 16px;
  text-align: center;
  color: #94a3b8;
}

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

  .hero-slide__poster {
    opacity: 0.35;
  }

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

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

@media (max-width: 860px) {
  .site-header__inner {
    min-height: 68px;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    top: 68px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: 22px;
    background: var(--blue-950);
    box-shadow: var(--shadow-soft);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-link {
    padding: 12px 14px;
  }

  .hero-slider {
    min-height: 610px;
  }

  .hero-slide__content {
    padding: 92px 0 110px;
  }

  .hero-slide__poster {
    display: none;
  }

  .search-panel,
  .split-layout,
  .detail-layout,
  .filter-panel__row,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

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

  .filter-panel__row {
    position: static;
  }

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

@media (max-width: 560px) {
  .site-logo__text strong {
    font-size: 20px;
  }

  .site-logo__text small {
    display: none;
  }

  .hero-slider {
    min-height: 560px;
  }

  .hero-slide p,
  .page-hero p,
  .lead-text {
    font-size: 16px;
  }

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

  .large-search {
    align-items: stretch;
    flex-direction: column;
    border-radius: 22px;
  }

  .large-search input {
    min-height: 46px;
  }

  .movie-grid,
  .movie-grid--home,
  .movie-grid--compact,
  .movie-grid--catalog,
  .category-grid,
  .category-card-grid {
    grid-template-columns: 1fr;
  }

  .player-box {
    border-radius: 18px;
  }

  .detail-content {
    padding: 22px;
  }

  .hero-control {
    display: none;
  }
}
