* {
  box-sizing: border-box;
}

:root {
  color-scheme: dark;
  --bg: #080b18;
  --bg-soft: #111827;
  --panel: rgba(17, 24, 39, 0.72);
  --panel-solid: #111827;
  --panel-light: rgba(255, 255, 255, 0.08);
  --text: #f9fafb;
  --muted: #cbd5e1;
  --muted-soft: #94a3b8;
  --line: rgba(255, 255, 255, 0.12);
  --yellow: #facc15;
  --pink: #ec4899;
  --purple: #8b5cf6;
  --blue: #38bdf8;
  --radius: 18px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(139, 92, 246, 0.2), transparent 28rem),
    radial-gradient(circle at top right, rgba(236, 72, 153, 0.14), transparent 24rem),
    linear-gradient(180deg, #080b18 0%, #111827 42%, #080b18 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: white;
  background: linear-gradient(90deg, rgba(49, 46, 129, 0.98), rgba(88, 28, 135, 0.98), rgba(131, 24, 67, 0.98));
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 72px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 800;
  white-space: nowrap;
}

.site-logo__mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #111827;
  background: linear-gradient(135deg, var(--yellow), var(--pink));
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(236, 72, 153, 0.38);
}

.site-logo__text {
  background: linear-gradient(90deg, #fde68a, #f9a8d4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 15px;
}

.site-nav a,
.site-nav button {
  color: rgba(255, 255, 255, 0.9);
  background: none;
  border: 0;
  cursor: pointer;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav button:hover {
  color: #fde047;
}

.site-nav__dropdown {
  position: relative;
}

.site-nav__menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  width: 180px;
  padding: 8px;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s ease;
}

.site-nav__dropdown:hover .site-nav__menu,
.site-nav__dropdown:focus-within .site-nav__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav__menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
}

.site-nav__menu a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.header-search,
.mobile-search {
  display: flex;
  align-items: center;
}

.header-search input,
.mobile-search input,
.inline-filter input,
.quick-search__form input {
  color: white;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  outline: none;
  transition: 0.2s ease;
}

.header-search input:focus,
.mobile-search input:focus,
.inline-filter input:focus,
.quick-search__form input:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(250, 204, 21, 0.55);
}

.header-search input {
  width: 220px;
  height: 42px;
  padding: 0 16px;
  border-radius: 999px 0 0 999px;
}

.header-search button {
  height: 42px;
  padding: 0 16px;
  color: #111827;
  background: var(--yellow);
  border: 0;
  border-radius: 0 999px 999px 0;
  cursor: pointer;
}

.mobile-toggle {
  display: none;
  color: white;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 8px 12px;
}

.mobile-panel {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 18px;
}

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

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

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

.mobile-search input {
  flex: 1;
  height: 42px;
  padding: 0 14px;
  border-radius: 12px 0 0 12px;
}

.mobile-search button {
  height: 42px;
  padding: 0 16px;
  color: #111827;
  background: var(--yellow);
  border: 0;
  border-radius: 0 12px 12px 0;
}

main {
  overflow: hidden;
}

.hero-slider {
  position: relative;
  min-height: 70vh;
  background: #030712;
  overflow: hidden;
}

.hero-slider__viewport {
  position: relative;
  min-height: 70vh;
}

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

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

.hero-slide__image {
  width: 100%;
  height: 100%;
  min-height: 70vh;
  object-fit: cover;
  transform: scale(1.04);
}

.hero-slide__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 7, 18, 0.96) 0%, rgba(17, 24, 39, 0.78) 42%, rgba(17, 24, 39, 0.18) 100%),
    linear-gradient(0deg, #080b18 0%, rgba(8, 11, 24, 0.18) 46%, rgba(8, 11, 24, 0.38) 100%);
}

.hero-slide__content {
  position: absolute;
  left: max(24px, calc((100% - 1180px) / 2));
  right: 24px;
  bottom: 120px;
  max-width: 680px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--yellow);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--yellow), var(--pink));
  box-shadow: 0 0 18px rgba(250, 204, 21, 0.85);
}

.hero-slide h1 {
  margin: 0 0 16px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.03;
  letter-spacing: -0.04em;
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
}

.hero-slide p {
  max-width: 620px;
  margin: 0 0 24px;
  color: #d1d5db;
  font-size: 18px;
}

.hero-meta,
.video-meta,
.movie-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-meta span,
.video-meta span,
.movie-card__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  color: #dbeafe;
  background: rgba(59, 130, 246, 0.16);
  border: 1px solid rgba(147, 197, 253, 0.12);
  border-radius: 999px;
  font-size: 13px;
}

.hero-tags,
.video-tags,
.movie-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tag-chip {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 10px;
  color: #e9d5ff;
  background: rgba(139, 92, 246, 0.16);
  border: 1px solid rgba(196, 181, 253, 0.14);
  border-radius: 999px;
  font-size: 12px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.2s ease;
}

.btn-primary {
  color: white;
  background: linear-gradient(90deg, #eab308, #ec4899);
  box-shadow: 0 14px 28px rgba(236, 72, 153, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 36px rgba(236, 72, 153, 0.36);
}

.btn-ghost {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
}

.hero-slider__controls {
  position: absolute;
  left: 50%;
  bottom: 26px;
  width: min(1180px, calc(100% - 32px));
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 14px;
  align-items: center;
  transform: translateX(-50%);
}

.hero-arrow {
  width: 44px;
  height: 44px;
  color: white;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hero-dots {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 10px;
}

.hero-dot {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 6px;
  color: #d1d5db;
  background: rgba(15, 23, 42, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: 0.2s ease;
}

.hero-dot.is-active,
.hero-dot:hover {
  color: white;
  border-color: rgba(250, 204, 21, 0.58);
  background: rgba(255, 255, 255, 0.12);
}

.hero-dot img {
  width: 42px;
  height: 54px;
  object-fit: cover;
  border-radius: 10px;
}

.hero-dot span {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 12px;
  text-align: left;
}

.content-section,
.band-card,
.page-hero,
.video-page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

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

.content-section--wide {
  width: min(1320px, calc(100% - 32px));
}

.content-section--glow,
.band-card {
  position: relative;
  padding: 34px;
  margin-top: 58px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(16, 185, 129, 0.14), rgba(20, 184, 166, 0.08)),
    rgba(17, 24, 39, 0.52);
  box-shadow: var(--shadow);
}

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

.section-heading h2,
.ranking-panel h2,
.page-hero h1 {
  margin: 0;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.section-more {
  color: var(--yellow);
  font-weight: 700;
}

.quick-search {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(280px, 1.2fr);
  gap: 26px;
  align-items: center;
}

.quick-search__copy h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
}

.quick-search__form {
  display: flex;
  gap: 10px;
}

.quick-search__form input {
  flex: 1;
  height: 52px;
  padding: 0 18px;
  border-radius: 999px;
}

.quick-links {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quick-links a,
.filter-buttons button {
  color: #dbeafe;
  background: rgba(59, 130, 246, 0.13);
  border: 1px solid rgba(147, 197, 253, 0.14);
  border-radius: 999px;
  padding: 8px 13px;
  cursor: pointer;
  transition: 0.2s ease;
}

.quick-links a:hover,
.filter-buttons button:hover,
.filter-buttons button.is-active {
  color: white;
  background: rgba(236, 72, 153, 0.22);
  border-color: rgba(244, 114, 182, 0.32);
}

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

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

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

.movie-grid--catalog {
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
}

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

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

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

.movie-card__poster {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #111827;
  border-radius: 18px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.3);
}

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

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

.movie-card__poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.86));
  opacity: 0.78;
}

.poster-glow {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: inherit;
}

.year-badge,
.rank-badge {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  color: #111827;
  background: var(--yellow);
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 800;
}

.rank-badge {
  left: 10px;
  right: auto;
  color: white;
  background: linear-gradient(135deg, var(--pink), var(--purple));
}

.movie-card__body {
  padding: 12px 4px 0;
}

.movie-card__title {
  min-height: 48px;
  margin: 0 0 8px;
  color: white;
  font-size: 16px;
  line-height: 1.45;
}

.movie-card__title a {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-card__title a:hover {
  color: #fde047;
}

.movie-card__meta {
  gap: 6px;
}

.movie-card__meta span {
  min-height: 24px;
  font-size: 12px;
}

.movie-card__desc {
  overflow: hidden;
  display: -webkit-box;
  min-height: 44px;
  margin: 9px 0 0;
  color: var(--muted-soft);
  font-size: 13px;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.horizontal-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(160px, 180px);
  gap: 18px;
  overflow-x: auto;
  padding: 2px 2px 18px;
  scrollbar-width: thin;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
}

.ranking-panel {
  align-self: start;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(127, 29, 29, 0.32), rgba(124, 45, 18, 0.22)),
    rgba(17, 24, 39, 0.68);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.ranking-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.ranking-list--full {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 14px;
}

.ranking-list--compact .ranking-item + .ranking-item {
  margin-top: 12px;
}

.ranking-link {
  display: grid;
  grid-template-columns: 42px 58px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: 0.2s ease;
}

.ranking-link:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.ranking-number {
  color: #fde047;
  font-weight: 900;
  font-size: 18px;
  text-align: center;
}

.ranking-link img {
  width: 58px;
  height: 74px;
  object-fit: cover;
  border-radius: 10px;
}

.ranking-copy {
  min-width: 0;
}

.ranking-copy strong,
.ranking-copy em {
  overflow: hidden;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.ranking-copy strong {
  color: white;
  font-size: 15px;
}

.ranking-copy em {
  color: var(--muted-soft);
  font-style: normal;
  font-size: 12px;
}

.ranking-action {
  color: #111827;
  background: #fde047;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 800;
}

.page-hero {
  display: flex;
  align-items: end;
  min-height: 330px;
  padding: 80px 0 42px;
}

.page-hero--compact {
  min-height: 270px;
}

.page-hero p {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

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

.category-tile {
  padding: 22px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.14), rgba(236, 72, 153, 0.1)),
    rgba(17, 24, 39, 0.7);
  border: 1px solid var(--line);
  border-radius: 22px;
  transition: 0.2s ease;
}

.category-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(250, 204, 21, 0.28);
}

.category-tile h3 {
  margin: 0 0 10px;
  font-size: 26px;
}

.category-tile p {
  margin: 0;
  color: var(--muted);
}

.category-tile__samples {
  display: grid;
  gap: 6px;
  margin-top: 18px;
}

.category-tile__samples a {
  overflow: hidden;
  color: var(--muted-soft);
  font-size: 13px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.category-tile__samples a:hover {
  color: #fde047;
}

.inline-filter {
  display: grid;
  gap: 14px;
  margin-bottom: 26px;
  padding: 18px;
  background: rgba(17, 24, 39, 0.66);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.inline-filter--large {
  padding: 24px;
}

.inline-filter input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border-radius: 999px;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-status {
  margin: 0;
  color: var(--muted-soft);
  font-size: 14px;
}

.video-page {
  padding: 40px 0 72px;
}

.video-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
}

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

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

.player-shell {
  position: relative;
  overflow: hidden;
  background: black;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.video-player {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: black;
  cursor: pointer;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), transparent 58%, rgba(0, 0, 0, 0.28));
  transition: opacity 0.25s ease;
}

.player-shell.is-playing .player-overlay {
  opacity: 0;
}

.player-shell:hover .player-overlay,
.player-shell:focus-within .player-overlay,
.player-shell.has-message .player-overlay {
  opacity: 1;
}

.player-play {
  pointer-events: auto;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  color: white;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  cursor: pointer;
  backdrop-filter: blur(16px);
  transition: 0.2s ease;
}

.player-play:hover {
  transform: scale(1.06);
  background: rgba(255, 255, 255, 0.24);
}

.player-play span {
  margin-left: 4px;
  font-size: 34px;
}

.player-status {
  position: absolute;
  left: 22px;
  bottom: 20px;
  color: white;
  background: rgba(0, 0, 0, 0.44);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  pointer-events: none;
}

.video-info {
  margin-top: 26px;
}

.video-info h1 {
  margin: 0 0 16px;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.video-tags {
  margin-top: 18px;
}

.text-panel {
  margin-top: 24px;
  padding: 24px;
  background: rgba(17, 24, 39, 0.68);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.text-panel--accent {
  background: linear-gradient(135deg, rgba(49, 46, 129, 0.34), rgba(88, 28, 135, 0.28));
}

.text-panel h2,
.related-panel h2 {
  margin: 0 0 12px;
  font-size: 24px;
}

.text-panel p {
  margin: 0;
  color: var(--muted);
}

.text-panel p + p {
  margin-top: 12px;
}

.related-panel {
  align-self: start;
  position: sticky;
  top: 96px;
}

.site-footer {
  margin-top: 30px;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.2), #020617);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 26px;
  padding: 38px 0;
}

.footer-brand strong {
  display: block;
  color: white;
  font-size: 22px;
  margin-bottom: 6px;
}

.footer-brand p {
  max-width: 520px;
  margin: 0;
  color: var(--muted-soft);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-content: start;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--yellow);
}

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

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

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

  .hero-dot:nth-child(n + 5) {
    display: none;
  }

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

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

  .related-panel {
    position: static;
  }
}

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

  .site-logo {
    font-size: 20px;
  }

  .hero-slider,
  .hero-slider__viewport,
  .hero-slide__image {
    min-height: 78vh;
  }

  .hero-slide__content {
    bottom: 156px;
  }

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

  .hero-slider__controls {
    grid-template-columns: 36px 1fr 36px;
    bottom: 18px;
  }

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

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

  .hero-dot:nth-child(n + 3) {
    display: none;
  }

  .quick-search,
  .site-footer__inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .quick-search__form {
    flex-direction: column;
  }

  .quick-search__form .btn {
    width: 100%;
  }

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

  .content-section--glow,
  .band-card {
    padding: 22px;
    border-radius: 22px;
  }

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

  .movie-grid--six,
  .movie-grid--three,
  .movie-grid--catalog,
  .movie-grid--related {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .movie-card__title {
    font-size: 14px;
  }

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

  .ranking-link {
    grid-template-columns: 34px 52px 1fr;
  }

  .ranking-action {
    display: none;
  }

  .page-hero {
    min-height: 220px;
    padding-top: 54px;
  }

  .player-play {
    width: 68px;
    height: 68px;
  }

  .player-play span {
    font-size: 28px;
  }
}

@media (max-width: 460px) {
  .movie-grid--six,
  .movie-grid--three,
  .movie-grid--catalog,
  .movie-grid--related {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .movie-card__meta span,
  .tag-chip {
    font-size: 11px;
  }

  .hero-meta,
  .hero-tags,
  .video-meta,
  .video-tags {
    gap: 6px;
  }
}
