:root {
  --bg-0: #020617;
  --bg-1: #0f172a;
  --bg-2: #1e293b;
  --text: #f8fafc;
  --muted: #94a3b8;
  --soft: #cbd5e1;
  --line: rgba(148, 163, 184, 0.18);
  --emerald: #10b981;
  --emerald-2: #34d399;
  --cyan: #22d3ee;
  --card: rgba(30, 41, 59, 0.58);
  --card-solid: #111827;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(16, 185, 129, 0.16), transparent 28rem),
    radial-gradient(circle at 80% 10%, rgba(34, 211, 238, 0.12), transparent 24rem),
    linear-gradient(180deg, var(--bg-0), var(--bg-1) 45%, var(--bg-0));
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.65;
}

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

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

button,
input {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #fff;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.96), rgba(15, 23, 42, 0.96));
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: #042f2e;
  background: linear-gradient(135deg, var(--emerald-2), var(--cyan));
  box-shadow: 0 0 24px rgba(16, 185, 129, 0.32);
}

.brand-name {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, var(--emerald-2), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.nav-link,
.nav-drop-button {
  display: inline-flex;
  align-items: center;
  height: 40px;
  color: #e2e8f0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.nav-drop-button:hover {
  color: var(--emerald-2);
}

.nav-dropdown {
  position: relative;
}

.nav-drop-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 180px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: 0.2s ease;
}

.nav-dropdown:hover .nav-drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-drop-menu a {
  display: block;
  padding: 9px 12px;
  border-radius: 10px;
  color: var(--soft);
}

.nav-drop-menu a:hover {
  background: rgba(15, 185, 129, 0.12);
  color: #fff;
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 10px;
}

.site-search-form input,
.catalog-search input {
  width: 240px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  padding: 10px 16px;
  color: #fff;
  outline: none;
  background: rgba(15, 23, 42, 0.74);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-search-form input:focus,
.catalog-search input:focus {
  border-color: rgba(52, 211, 153, 0.75);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
}

.site-search-form button,
.clear-filter {
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  color: #042f2e;
  background: linear-gradient(135deg, var(--emerald-2), var(--cyan));
  cursor: pointer;
  font-weight: 700;
}

.mobile-menu-button {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(148, 163, 184, 0.12);
  cursor: pointer;
}

.mobile-menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

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

.mobile-panel a {
  display: block;
  margin-top: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--soft);
  background: rgba(148, 163, 184, 0.08);
}

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

.hero-carousel {
  position: relative;
  height: 76vh;
  min-height: 560px;
  overflow: hidden;
  background: #020617;
}

.hero-site-title {
  position: absolute;
  left: 50%;
  top: 92px;
  z-index: 4;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-site-title h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.8rem);
  line-height: 1.06;
  letter-spacing: -0.07em;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.55);
}

.hero-site-title p {
  max-width: 620px;
  margin: 16px 0 0;
  color: #cbd5e1;
  font-size: 1.08rem;
}

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

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, var(--bg-0) 0%, rgba(2, 6, 23, 0.84) 22%, rgba(2, 6, 23, 0.42) 58%, rgba(2, 6, 23, 0.2) 100%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.72), transparent 62%);
}

.hero-content {
  position: absolute;
  left: 50%;
  bottom: 56px;
  transform: translateX(-50%);
  z-index: 3;
}

.hero-badge,
.page-hero span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 14px;
  color: #ecfeff;
  background: rgba(16, 185, 129, 0.82);
  box-shadow: 0 12px 28px rgba(16, 185, 129, 0.22);
}

.hero-kicker {
  margin: 18px 0 4px;
  color: var(--emerald-2);
  font-weight: 700;
}

.hero-content h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2rem, 4.8vw, 4.8rem);
  line-height: 1.06;
  letter-spacing: -0.06em;
}

.hero-summary {
  max-width: 720px;
  margin: 18px 0 28px;
  color: #cbd5e1;
  font-size: clamp(1rem, 2vw, 1.3rem);
}

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

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
  color: #042f2e;
  background: linear-gradient(135deg, var(--emerald-2), var(--cyan));
  box-shadow: 0 18px 35px rgba(16, 185, 129, 0.24);
}

.ghost-button {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(15, 23, 42, 0.42);
}

.primary-button:hover,
.ghost-button:hover {
  transform: translateY(-2px);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.46);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  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-prev {
  left: 24px;
  transform: translateY(-50%);
}

.hero-next {
  right: 24px;
  transform: translateY(-50%);
}

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

.hero-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  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(--emerald-2);
}

.content-section,
.quick-categories,
.feature-panel,
.split-section,
.filter-panel,
.overview-grid {
  margin-top: 64px;
}

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

.section-head h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.12;
  letter-spacing: -0.05em;
}

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

.section-more {
  flex-shrink: 0;
  color: var(--emerald-2);
  font-weight: 800;
}

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

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

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--card);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.18);
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  border-color: rgba(52, 211, 153, 0.38);
  background: rgba(30, 41, 59, 0.86);
}

.card-cover {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.16), rgba(34, 211, 238, 0.12));
}

.card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

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

.region-pill,
.rank-badge {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(12px);
}

.region-pill {
  top: 12px;
  right: 12px;
  padding: 5px 10px;
  font-size: 0.8rem;
}

.rank-badge {
  top: 12px;
  left: 12px;
  min-width: 34px;
  padding: 5px 10px;
  text-align: center;
  font-weight: 900;
  background: linear-gradient(135deg, var(--emerald), var(--cyan));
}

.play-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  color: #042f2e;
  background: rgba(255, 255, 255, 0.92);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.card-body {
  padding: 16px;
}

.card-title {
  display: -webkit-box;
  min-height: 3.1em;
  overflow: hidden;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.45;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.2s ease;
}

.card-title:hover {
  color: var(--emerald-2);
}

.card-body p {
  display: -webkit-box;
  min-height: 3.2em;
  margin: 10px 0 14px;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.92rem;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-meta,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.85rem;
}

.card-meta span,
.card-tags span,
.detail-meta span,
.detail-tags span {
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(148, 163, 184, 0.1);
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
  color: var(--emerald-2);
  font-size: 0.8rem;
}

.movie-card-list {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: stretch;
}

.movie-card-list .card-cover {
  aspect-ratio: auto;
  min-height: 180px;
}

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

.category-tile {
  position: relative;
  display: block;
  height: 132px;
  overflow: hidden;
  border-radius: 20px;
  background: var(--card);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.category-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

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

.category-tile span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  font-size: 1.1rem;
  font-weight: 900;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.55);
}

.feature-panel {
  border: 1px solid rgba(52, 211, 153, 0.16);
  border-radius: 32px;
  padding: 34px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(34, 211, 238, 0.08));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.split-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
}

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

.page-main {
  padding-bottom: 72px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  margin-top: 34px;
  border: 1px solid rgba(52, 211, 153, 0.14);
  border-radius: 34px;
  padding: 48px;
  background:
    radial-gradient(circle at 12% 20%, rgba(16, 185, 129, 0.22), transparent 22rem),
    radial-gradient(circle at 86% 10%, rgba(34, 211, 238, 0.16), transparent 20rem),
    rgba(15, 23, 42, 0.78);
  box-shadow: var(--shadow);
}

.page-hero h1 {
  margin: 16px 0 10px;
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  line-height: 1.08;
  letter-spacing: -0.06em;
}

.page-hero p {
  max-width: 720px;
  margin: 0;
  color: var(--soft);
  font-size: 1.08rem;
}

.small-hero {
  padding: 42px;
}

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

.overview-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 190px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(30, 41, 59, 0.58);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.overview-card:hover {
  transform: translateY(-4px);
  border-color: rgba(52, 211, 153, 0.42);
}

.overview-covers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.overview-covers img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
}

.overview-body {
  padding: 24px;
}

.overview-body h2 {
  margin: 0 0 8px;
  font-size: 1.55rem;
}

.overview-body p {
  margin: 0 0 18px;
  color: var(--muted);
}

.overview-body span {
  color: var(--emerald-2);
  font-weight: 800;
}

.filter-panel {
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 22px;
  background: rgba(15, 23, 42, 0.72);
}

.catalog-search {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

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

.filter-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  color: var(--muted);
}

.filter-row > span {
  min-width: 44px;
  color: #fff;
  font-weight: 800;
}

.filter-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--soft);
  background: rgba(148, 163, 184, 0.08);
  cursor: pointer;
}

.filter-chip.is-active,
.filter-chip:hover {
  color: #052e2b;
  border-color: transparent;
  background: linear-gradient(135deg, var(--emerald-2), var(--cyan));
}

.detail-main {
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.6), var(--bg-0));
}

.detail-hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  padding: 74px 0;
}

.detail-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(10px) saturate(1.05);
  transform: scale(1.08);
  opacity: 0.42;
}

.detail-bg-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0.72), rgba(2, 6, 23, 0.92)),
    linear-gradient(0deg, var(--bg-0), transparent 38%);
}

.detail-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}

.detail-poster {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

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

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

.breadcrumb a {
  color: var(--emerald-2);
}

.detail-copy h1 {
  max-width: 820px;
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.07em;
}

.detail-one-line {
  max-width: 760px;
  margin: 0 0 22px;
  color: var(--soft);
  font-size: 1.16rem;
}

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

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--emerald-2);
}

.player-section {
  margin-top: -52px;
  position: relative;
  z-index: 3;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: #000;
  box-shadow: var(--shadow);
}

.movie-player {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #042f2e;
  background: radial-gradient(circle, rgba(2, 6, 23, 0.08), rgba(2, 6, 23, 0.48));
  cursor: pointer;
}

.player-overlay span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--emerald-2), var(--cyan));
  box-shadow: 0 24px 70px rgba(16, 185, 129, 0.28);
  font-size: 2.2rem;
}

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

.detail-text {
  display: grid;
  gap: 12px;
  margin-top: 54px;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 34px;
  background: rgba(15, 23, 42, 0.72);
}

.detail-text h2 {
  margin: 0;
  font-size: 1.45rem;
}

.detail-text p {
  margin: 0 0 18px;
  color: var(--soft);
}

.site-footer {
  margin-top: 72px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.62), rgba(2, 6, 23, 0.95));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.8fr;
  gap: 32px;
  padding: 42px 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 900;
}

.site-footer p {
  max-width: 520px;
  color: var(--muted);
}

.site-footer h2 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

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

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

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 18px 0;
  color: var(--muted);
  text-align: center;
}

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

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

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

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

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

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

@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .desktop-nav,
  .header-search {
    display: none;
  }

  .mobile-menu-button {
    display: block;
  }

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

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

  .hero-carousel {
    height: 78vh;
    min-height: 620px;
  }

  .hero-site-title {
    top: 82px;
  }

  .hero-content {
    bottom: 70px;
  }

  .hero-arrow {
    display: none;
  }

  .grid-four,
  .grid-three,
  .grid-two,
  .category-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

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

  .feature-panel,
  .page-hero,
  .detail-text,
  .filter-panel {
    padding: 22px;
    border-radius: 22px;
  }

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

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

  .overview-covers img {
    min-height: 132px;
  }

  .detail-hero {
    min-height: auto;
    padding: 36px 0 84px;
  }

  .detail-layout {
    gap: 24px;
  }

  .player-section {
    margin-top: -54px;
  }

  .catalog-search {
    flex-direction: column;
  }

  .catalog-search input,
  .clear-filter {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .brand-name {
    font-size: 1.2rem;
  }

  .grid-four,
  .grid-three,
  .grid-two,
  .category-strip {
    grid-template-columns: 1fr;
  }

  .category-tile {
    height: 120px;
  }
}
