:root {
  --sky: #0ea5e9;
  --sky-dark: #0284c7;
  --cyan: #06b6d4;
  --purple: #8b5cf6;
  --amber: #f59e0b;
  --rose: #f43f5e;
  --slate: #0f172a;
  --gray: #64748b;
  --soft: #f8fafc;
  --line: #e2e8f0;
  --shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", Arial, sans-serif;
  color: var(--slate);
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 42%, #f8fafc 100%);
  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: 60;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.nav-wrap {
  max-width: 1280px;
  height: 68px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--sky), var(--cyan));
  box-shadow: 0 14px 28px rgba(14, 165, 233, 0.26);
}

.brand-text {
  font-size: 21px;
}

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

.nav-link,
.mobile-link {
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 600;
  color: #475569;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
  color: var(--sky-dark);
  background: #e0f2fe;
}

.top-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-search input,
.mobile-search input,
.wide-search input,
.filter-row input {
  width: 230px;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  padding: 10px 16px;
  outline: none;
  background: #ffffff;
  transition: border 0.25s ease, box-shadow 0.25s ease;
}

.top-search input:focus,
.mobile-search input:focus,
.wide-search input:focus,
.filter-row input:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.18);
}

.top-search button,
.mobile-search button,
.wide-search button {
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--sky), var(--cyan));
  cursor: pointer;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: #f1f5f9;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #334155;
  border-radius: 999px;
}

.mobile-panel {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 18px;
}

.mobile-search {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.mobile-search input {
  width: 100%;
}

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

.hero {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 45%, #2563eb 100%);
}

.hero-label {
  position: absolute;
  top: 28px;
  left: 50%;
  z-index: 5;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
  font-size: 14px;
}

.hero-label strong {
  font-weight: 800;
}

.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-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 18%, rgba(255, 255, 255, 0.24), transparent 28%), linear-gradient(90deg, rgba(2, 6, 23, 0.86), rgba(14, 165, 233, 0.62), rgba(6, 182, 212, 0.52));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  min-height: 660px;
  margin: 0 auto;
  padding: 128px 24px 88px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.6fr);
  align-items: center;
  gap: 56px;
}

.eyebrow {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  font-size: 14px;
  font-weight: 800;
}

.hero-copy h2 {
  margin: 0 0 20px;
  font-size: clamp(42px, 7vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

.hero-copy p {
  max-width: 760px;
  margin: 0 0 28px;
  color: #ecfeff;
  font-size: clamp(18px, 2vw, 24px);
}

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

.btn,
.quick-entry a,
.section-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn {
  min-height: 48px;
  padding: 0 24px;
}

.btn.primary {
  color: var(--sky-dark);
  background: #ffffff;
  box-shadow: 0 20px 35px rgba(15, 23, 42, 0.18);
}

.btn.ghost {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.btn:hover,
.quick-entry a:hover,
.section-more:hover {
  transform: translateY(-2px);
}

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

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

.hero-tags span,
.detail-tags span,
.card-tags span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.hero-tags span {
  padding: 7px 11px;
  color: #ecfeff;
  background: rgba(255, 255, 255, 0.18);
}

.hero-poster {
  position: relative;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.22);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 80px rgba(2, 6, 23, 0.36);
  aspect-ratio: 2 / 3;
  transform: rotate(2deg);
}

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

.hero-poster:hover img {
  transform: scale(1.08);
}

.hero-poster span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  place-items: center;
  padding: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--sky-dark);
  font-weight: 800;
}

.hero-indicators {
  position: absolute;
  left: 24px;
  bottom: 34px;
  z-index: 6;
  display: flex;
  gap: 9px;
}

.hero-dot {
  width: 34px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  cursor: pointer;
}

.hero-dot.active {
  width: 54px;
  background: #ffffff;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 8;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.24);
  backdrop-filter: blur(12px);
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
}

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

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

.search-hero-panel,
.content-section,
.category-band,
.filter-panel,
.detail-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 24px;
}

.search-hero-panel {
  margin-top: -74px;
  position: relative;
  z-index: 10;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  text-align: center;
}

.search-hero-panel h1,
.page-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.search-hero-panel p,
.page-hero p {
  max-width: 820px;
  margin: 0 auto 28px;
  color: #475569;
  font-size: 18px;
}

.wide-search {
  max-width: 760px;
  margin: 0 auto 24px;
  display: flex;
  gap: 10px;
  padding: 8px;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.wide-search input {
  width: 100%;
  border: 0;
  box-shadow: none;
}

.wide-search input:focus {
  box-shadow: none;
}

.wide-search button {
  min-width: 128px;
}

.quick-entry {
  justify-content: center;
}

.quick-entry a {
  padding: 10px 16px;
  color: var(--sky-dark);
  background: #e0f2fe;
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 8px 0 0;
  color: #64748b;
}

.section-more {
  padding: 10px 16px;
  color: var(--sky-dark);
  background: #e0f2fe;
}

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

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.14);
}

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  background: linear-gradient(135deg, #e0f2fe, #f0f9ff);
}

.poster-link img,
.compact-card img,
.poster-panel img,
.category-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poster-link img {
  transition: transform 0.45s ease;
}

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

.poster-shade {
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.74), transparent);
}

.play-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--sky), var(--cyan));
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(14, 165, 233, 0.32);
}

.card-body {
  padding: 16px;
}

.card-tags span,
.detail-tags span {
  padding: 5px 8px;
  color: var(--sky-dark);
  background: #e0f2fe;
}

.card-body h2 {
  margin: 12px 0 6px;
  font-size: 18px;
  line-height: 1.25;
}

.card-body h2 a:hover {
  color: var(--sky-dark);
}

.card-meta,
.card-desc,
.detail-meta {
  color: #64748b;
}

.card-meta {
  margin: 0 0 8px;
  font-size: 13px;
}

.card-desc {
  margin: 0;
  font-size: 14px;
}

.category-band {
  max-width: none;
  background: linear-gradient(135deg, #f0f9ff, #ecfeff 48%, #eff6ff);
}

.category-band > .section-heading,
.category-band > .category-grid {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.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 {
  position: relative;
  min-height: 205px;
  overflow: hidden;
  border-radius: 24px;
  padding: 24px;
  color: #ffffff;
  box-shadow: 0 20px 38px rgba(15, 23, 42, 0.13);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 28px 50px rgba(15, 23, 42, 0.18);
}

.category-tile img {
  position: absolute;
  right: -22px;
  bottom: -24px;
  width: 145px;
  height: 210px;
  border-radius: 20px;
  opacity: 0.34;
  transform: rotate(8deg);
}

.category-icon {
  position: relative;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.23);
  font-weight: 900;
}

.category-tile strong,
.category-tile em {
  position: relative;
  z-index: 2;
  display: block;
}

.category-tile strong {
  margin-top: 18px;
  font-size: 22px;
}

.category-tile em {
  max-width: 75%;
  margin-top: 8px;
  font-style: normal;
  color: rgba(255, 255, 255, 0.86);
}

.gradient-1 {
  background: linear-gradient(135deg, #0ea5e9, #06b6d4);
}

.gradient-2 {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.gradient-3 {
  background: linear-gradient(135deg, #f97316, #f43f5e);
}

.gradient-4 {
  background: linear-gradient(135deg, #10b981, #06b6d4);
}

.gradient-5 {
  background: linear-gradient(135deg, #6366f1, #0ea5e9);
}

.gradient-6 {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.rank-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.6fr);
  gap: 24px;
}

.rank-main,
.rank-side,
.ranking-list,
.side-card,
.detail-info,
.filter-panel {
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
}

.rank-main,
.rank-side,
.ranking-list,
.side-card,
.detail-info {
  padding: 20px;
}

.compact-card {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 18px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.compact-card:hover {
  background: #f0f9ff;
  transform: translateX(4px);
}

.compact-card img {
  aspect-ratio: 2 / 3;
  border-radius: 14px;
  background: #e0f2fe;
}

.compact-card strong {
  display: block;
  margin-bottom: 4px;
  line-height: 1.3;
}

.compact-card em {
  display: block;
  color: #64748b;
  font-size: 13px;
  font-style: normal;
}

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

.page-hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 76px 24px;
  color: #ffffff;
}

.small-hero,
.search-hero {
  max-width: none;
  background: linear-gradient(135deg, var(--sky), var(--cyan));
  text-align: center;
}

.small-hero > div,
.search-hero > div {
  max-width: 1024px;
  margin: 0 auto;
}

.small-hero p,
.search-hero p,
.category-hero p {
  color: #ecfeff;
}

.category-hero {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.65fr);
  gap: 28px;
  align-items: center;
}

.category-hero > div {
  max-width: 900px;
  margin-left: auto;
}

.hero-mini-strip {
  max-width: 520px;
  margin-right: auto;
  display: grid;
  gap: 10px;
}

.filter-panel {
  display: grid;
  gap: 20px;
  margin-top: 36px;
  padding: 24px;
}

.filter-row {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.filter-row label {
  padding-top: 9px;
  color: #334155;
  font-weight: 800;
}

.filter-row input {
  width: min(520px, 100%);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  border: 0;
  border-radius: 999px;
  padding: 9px 14px;
  color: #475569;
  background: #f1f5f9;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.chip:hover,
.chip.active {
  color: #ffffff;
  background: var(--sky);
  transform: translateY(-1px);
}

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

.ranking-item {
  display: grid;
  grid-template-columns: 48px minmax(220px, 0.8fr) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 12px;
  border-radius: 20px;
  background: #f8fafc;
}

.ranking-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--sky), var(--cyan));
  font-weight: 900;
}

.ranking-item p {
  margin: 0;
  color: #475569;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-bottom: 24px;
  color: #64748b;
  font-size: 14px;
}

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

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.55fr);
  gap: 28px;
}

.watch-column {
  min-width: 0;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #020617;
  box-shadow: 0 30px 70px rgba(2, 6, 23, 0.26);
  aspect-ratio: 16 / 9;
}

.movie-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #020617;
}

.player-cover {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 0;
  color: #ffffff;
  background: rgba(2, 6, 23, 0.18);
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
}

.player-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, transparent 0%, rgba(2, 6, 23, 0.3) 40%, rgba(2, 6, 23, 0.66) 100%);
}

.player-cover.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.play-ring {
  position: relative;
  z-index: 3;
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.7);
  box-shadow: 0 25px 50px rgba(14, 165, 233, 0.36);
}

.play-ring span {
  transform: translateX(3px);
  font-size: 36px;
}

.detail-info {
  margin-top: 24px;
}

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

.detail-meta {
  margin: 0 0 16px;
}

.lead-text {
  margin: 0 0 22px;
  color: #0f172a;
  font-size: 20px;
  font-weight: 700;
}

.detail-info p {
  color: #334155;
}

.detail-sidebar {
  display: grid;
  align-content: start;
  gap: 18px;
}

.poster-panel {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  aspect-ratio: 2 / 3;
  background: #e0f2fe;
  box-shadow: var(--shadow);
}

.poster-panel span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 12px;
  border-radius: 18px;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(12px);
  font-weight: 800;
}

.side-card dl {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 9px 14px;
  margin: 0;
}

.side-card dt {
  color: #64748b;
}

.side-card dd {
  margin: 0;
  font-weight: 700;
}

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

.site-footer {
  margin-top: 60px;
  padding: 54px 24px 26px;
  border-top: 1px solid #e2e8f0;
  background: #ffffff;
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr;
  gap: 34px;
}

.footer-grid p {
  max-width: 620px;
  color: #64748b;
}

.footer-grid h2 {
  margin: 0 0 16px;
  font-size: 18px;
}

.footer-grid a:not(.footer-brand) {
  display: block;
  margin-bottom: 8px;
  color: #64748b;
}

.footer-grid a:hover {
  color: var(--sky-dark);
}

.footer-bottom {
  max-width: 1280px;
  margin: 34px auto 0;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
  color: #94a3b8;
  font-size: 14px;
}

img.is-image-missing {
  opacity: 0;
}

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

@media (max-width: 1100px) {
  .catalog-grid,
  .latest-grid,
  .movie-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .category-hero > div,
  .hero-mini-strip {
    margin-left: auto;
    margin-right: auto;
  }
}

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

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

  .nav-wrap {
    height: 64px;
    padding: 0 16px;
  }

  .hero,
  .hero-content {
    min-height: 720px;
  }

  .hero-content {
    padding: 116px 18px 86px;
    gap: 28px;
  }

  .hero-copy h2 {
    font-size: 46px;
  }

  .hero-arrow {
    display: none;
  }

  .search-hero-panel,
  .content-section,
  .category-band,
  .filter-panel,
  .detail-page,
  .page-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .search-hero-panel {
    margin-left: 14px;
    margin-right: 14px;
  }

  .wide-search {
    border-radius: 24px;
    flex-direction: column;
  }

  .wide-search button {
    width: 100%;
  }

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

  .ranking-item {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .ranking-item p {
    grid-column: 1 / -1;
  }

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

@media (max-width: 560px) {
  .brand-text {
    font-size: 18px;
  }

  .hero-copy h2 {
    font-size: 38px;
  }

  .hero-copy p,
  .lead-text {
    font-size: 17px;
  }

  .category-grid,
  .category-grid.large,
  .catalog-grid,
  .latest-grid,
  .movie-grid {
    grid-template-columns: 1fr;
  }

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

  .filter-row {
    grid-template-columns: 1fr;
  }

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

  .play-ring {
    width: 78px;
    height: 78px;
  }
}
