:root {
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --orange-500: #f97316;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 10px 25px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 24px 60px rgba(15, 23, 42, 0.22);
}

* {
  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", sans-serif;
  color: var(--slate-800);
  background: var(--slate-50);
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 72px;
}

.logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: var(--slate-900);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.logo-mark {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
  box-shadow: 0 12px 24px rgba(245, 158, 11, 0.35);
}

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

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 72px;
  color: var(--slate-600);
  font-weight: 700;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 3px;
  border-radius: 999px;
  background: var(--amber-500);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--amber-600);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.header-search,
.mobile-search,
.big-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search input,
.mobile-search input,
.big-search input,
.filter-panel input,
.filter-panel select {
  width: 100%;
  border: 1px solid var(--slate-200);
  border-radius: 999px;
  background: var(--white);
  color: var(--slate-800);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input {
  width: 230px;
  padding: 10px 14px;
}

.header-search input:focus,
.mobile-search input:focus,
.big-search input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--amber-500);
  box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.2);
}

.header-search button,
.mobile-search button,
.big-search button,
.primary-btn {
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(245, 158, 11, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-search button,
.mobile-search button {
  padding: 10px 16px;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
}

.primary-btn:hover,
.header-search button:hover,
.mobile-search button:hover,
.big-search button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(245, 158, 11, 0.35);
}

.primary-btn.full {
  width: 100%;
}

.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border-radius: 999px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  font-weight: 800;
  transition: background 0.2s ease, transform 0.2s ease;
}

.ghost-btn:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: var(--slate-100);
  color: var(--slate-800);
}

.mobile-panel {
  display: none;
  padding: 0 16px 18px;
  border-top: 1px solid var(--slate-200);
}

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

.mobile-panel nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 12px 0;
}

.mobile-panel .nav-link {
  min-height: 42px;
  padding: 0 12px;
  border-radius: 12px;
  background: var(--slate-100);
}

.mobile-panel .nav-link::after {
  display: none;
}

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

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

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

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

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.96) 0%, rgba(15, 23, 42, 0.58) 45%, rgba(15, 23, 42, 0.25) 100%);
}

.hero-content {
  position: absolute;
  left: 50%;
  bottom: 82px;
  transform: translateX(-50%);
  color: var(--white);
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-kicker {
  padding: 7px 14px;
  color: var(--white);
  background: var(--amber-500);
  margin-bottom: 18px;
}

.eyebrow {
  color: var(--amber-600);
  margin: 0 0 6px;
}

.hero-content h1 {
  max-width: 850px;
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.hero-content p {
  max-width: 680px;
  margin: 0 0 28px;
  font-size: clamp(1rem, 2vw, 1.22rem);
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

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

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

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

.hero-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

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

.quick-panel {
  background: var(--white);
  border-bottom: 1px solid var(--slate-200);
}

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

.quick-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 16px;
  color: var(--slate-700);
  background: var(--slate-100);
  font-weight: 900;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.quick-grid a:hover {
  color: var(--amber-600);
  background: var(--amber-50);
  transform: translateY(-2px);
}

.page-stack {
  display: grid;
  gap: 44px;
  padding: 52px 0;
}

.section-block,
.detail-panel,
.side-card,
.filter-panel,
.category-card-large {
  background: var(--white);
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

.section-block {
  padding: 28px;
}

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

.section-heading h2,
.ranking-layout h2,
.detail-panel h2,
.side-card h2,
.category-card-large h2,
.page-hero h1,
.detail-hero h1 {
  margin: 0;
  color: var(--slate-900);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.section-heading h2,
.ranking-layout h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.section-intro {
  color: var(--slate-600);
  max-width: 420px;
}

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

.compact-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.horizontal-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

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

.movie-card .poster {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--slate-200), var(--slate-100));
  box-shadow: var(--shadow-md);
}

.movie-card .poster.wide {
  aspect-ratio: 16 / 10;
}

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

.movie-card:hover img,
.category-tile:hover img,
.category-card-large:hover img,
.rank-item:hover img {
  transform: scale(1.08);
}

.movie-card .poster::after,
.category-tile::after,
.category-visual::after,
.rank-cover::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 50%;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.82), transparent);
  pointer-events: none;
}

.play-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: rgba(245, 158, 11, 0.92);
  transform: translate(-50%, -50%) scale(0.86);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
  box-shadow: 0 14px 32px rgba(245, 158, 11, 0.42);
}

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

.poster-label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(15, 23, 42, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
}

.card-body {
  padding-top: 14px;
}

.card-title {
  display: -webkit-box;
  overflow: hidden;
  min-height: 1.4em;
  color: var(--slate-900);
  font-weight: 900;
  line-height: 1.32;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-title:hover,
.rank-title:hover,
.text-link:hover,
.mini-links a:hover {
  color: var(--amber-600);
}

.card-meta {
  margin: 6px 0 0;
  color: var(--slate-500);
  font-size: 0.88rem;
}

.card-desc {
  display: -webkit-box;
  overflow: hidden;
  min-height: 2.8em;
  margin: 9px 0 0;
  color: var(--slate-600);
  font-size: 0.92rem;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.tag-row,
.detail-tags,
.detail-tag-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-row {
  margin-top: 12px;
}

.tag-row span,
.detail-tags span,
.detail-tag-links a {
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.tag-row span,
.detail-tag-links a {
  padding: 5px 9px;
  color: var(--amber-600);
  background: var(--amber-50);
}

.movie-card-horizontal {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  padding: 12px;
  border-radius: 18px;
  background: var(--slate-50);
  transition: background 0.2s ease, transform 0.2s ease;
}

.movie-card-horizontal:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.compact-card .card-title {
  margin-top: 10px;
}

.soft-section {
  padding: 52px 0;
}

.amber-soft {
  background: linear-gradient(135deg, var(--amber-50), #fff7ed);
}

.slate-soft {
  background: linear-gradient(135deg, var(--slate-100), var(--slate-50));
}

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

.category-tile {
  position: relative;
  display: grid;
  min-height: 210px;
  align-content: end;
  overflow: hidden;
  border-radius: 22px;
  padding: 18px;
  color: var(--white);
  box-shadow: var(--shadow-md);
}

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

.category-tile span,
.category-tile p {
  position: relative;
  z-index: 2;
}

.category-tile span {
  font-size: 1.1rem;
  font-weight: 900;
}

.category-tile p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
}

.text-link {
  color: var(--amber-600);
  font-weight: 900;
}

.ranking-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 34px;
  align-items: start;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 46px 82px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--slate-200);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.rank-num {
  color: var(--amber-500);
  font-size: 1.15rem;
  font-weight: 900;
}

.rank-cover {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1.22;
  overflow: hidden;
  border-radius: 12px;
}

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

.rank-title {
  color: var(--slate-900);
  font-weight: 900;
}

.rank-item p {
  margin: 4px 0 0;
  color: var(--slate-500);
  font-size: 0.88rem;
}

.page-hero,
.detail-hero {
  position: relative;
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
}

.page-hero {
  padding: 72px 0;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--white);
}

.page-hero p {
  max-width: 760px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
}

.back-link {
  display: inline-flex;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.back-link:not(.light) {
  color: var(--white);
}

.category-overview {
  display: grid;
  gap: 22px;
  padding: 52px 0;
}

.category-card-large {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  padding: 18px;
}

.category-visual {
  position: relative;
  overflow: hidden;
  min-height: 180px;
  border-radius: 20px;
}

.category-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card-large h2 {
  margin-bottom: 10px;
  font-size: 1.55rem;
}

.category-card-large p {
  color: var(--slate-600);
}

.mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

.mini-links a {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--slate-700);
  background: var(--slate-100);
  font-size: 0.86rem;
  font-weight: 800;
}

.listing-section {
  padding: 42px 0 60px;
}

.filter-panel {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 14px;
  padding: 18px;
  margin-bottom: 28px;
}

.filter-panel label {
  display: grid;
  gap: 8px;
  color: var(--slate-700);
  font-weight: 900;
}

.filter-panel input,
.filter-panel select {
  min-height: 46px;
  padding: 0 14px;
}

.empty-state {
  display: none;
  padding: 36px;
  border-radius: 18px;
  background: var(--white);
  color: var(--slate-500);
  text-align: center;
}

.empty-state.show {
  display: block;
}

.detail-hero {
  height: 470px;
  overflow: hidden;
  background: var(--slate-900);
}

.detail-hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}

.detail-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.55), rgba(15, 23, 42, 0.35));
}

.detail-hero-content {
  position: absolute;
  left: 50%;
  bottom: 48px;
  transform: translateX(-50%);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

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

.detail-hero h1 {
  max-width: 900px;
  color: var(--white);
  font-size: clamp(2.2rem, 6vw, 4.2rem);
}

.detail-hero p {
  max-width: 760px;
  margin: 16px 0 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
}

.detail-tags span {
  padding: 7px 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) 340px;
  gap: 28px;
  padding: 42px 0;
}

.detail-main {
  display: grid;
  gap: 22px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: var(--slate-900);
  box-shadow: var(--shadow-xl);
}

.movie-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--slate-900);
}

.player-start {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  background: radial-gradient(circle at center, rgba(245, 158, 11, 0.24), rgba(15, 23, 42, 0.35));
  cursor: pointer;
}

.player-start span {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: rgba(245, 158, 11, 0.95);
  font-size: 2.2rem;
  box-shadow: 0 22px 42px rgba(245, 158, 11, 0.38);
  transition: transform 0.2s ease;
}

.player-start:hover span {
  transform: scale(1.06);
}

.player-shell.playing .player-start {
  opacity: 0;
  pointer-events: none;
}

.detail-panel {
  padding: 26px;
}

.detail-panel h2,
.side-card h2 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.detail-panel p,
.side-card p {
  margin: 0;
  color: var(--slate-600);
}

.note-panel {
  background: linear-gradient(135deg, var(--amber-50), var(--white));
}

.detail-side {
  position: relative;
}

.side-card {
  position: sticky;
  top: 96px;
  padding: 18px;
}

.side-card img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-md);
}

.detail-tag-links a:hover {
  color: var(--white);
  background: var(--amber-500);
}

.related-section {
  padding: 8px 0 60px;
}

.search-page {
  padding: 48px 0 66px;
}

.big-search {
  max-width: 760px;
  margin: 0 auto 28px;
  padding: 10px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.big-search input {
  min-height: 52px;
  padding: 0 18px;
  border: 0;
  box-shadow: none;
}

.big-search button {
  padding: 14px 26px;
}

.search-result-title {
  margin-bottom: 20px;
  color: var(--slate-900);
  font-size: 1.4rem;
  font-weight: 900;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: var(--slate-900);
  padding: 44px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
}

.footer-logo {
  color: var(--white);
}

.site-footer p {
  max-width: 560px;
  margin: 12px 0 0;
}

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

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

@media (max-width: 1100px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .detail-side {
    order: -1;
  }

  .side-card {
    position: static;
  }
}

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

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

  .nav-wrap {
    min-height: 64px;
  }

  .hero-carousel {
    height: 68vh;
    min-height: 500px;
  }

  .hero-arrow {
    display: none;
  }

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

  .card-grid,
  .compact-grid,
  .horizontal-list,
  .rank-list,
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .movie-card-horizontal {
    grid-template-columns: 130px 1fr;
  }

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

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

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

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

  .hero-content {
    bottom: 74px;
  }

  .hero-actions {
    display: grid;
    align-items: stretch;
  }

  .section-block,
  .detail-panel {
    padding: 18px;
    border-radius: 18px;
  }

  .card-grid,
  .compact-grid,
  .category-grid,
  .filter-panel,
  .rank-list {
    grid-template-columns: 1fr;
  }

  .movie-card-horizontal {
    grid-template-columns: 112px 1fr;
  }

  .page-hero,
  .soft-section {
    padding: 42px 0;
  }

  .detail-hero {
    height: 520px;
  }

  .big-search {
    display: grid;
    border-radius: 24px;
  }

  .big-search input,
  .big-search button {
    width: 100%;
  }
}
