:root {
  --stone-950: #0c0a09;
  --stone-900: #1c1917;
  --stone-800: #292524;
  --stone-700: #44403c;
  --stone-600: #57534e;
  --stone-500: #78716c;
  --stone-300: #d6d3d1;
  --stone-200: #e7e5e4;
  --stone-100: #f5f5f4;
  --stone-50: #fafaf9;
  --amber-700: #b45309;
  --amber-600: #d97706;
  --amber-500: #f59e0b;
  --amber-300: #fcd34d;
  --amber-100: #fef3c7;
  --white: #ffffff;
  --shadow-card: 0 14px 35px rgba(28, 25, 23, .12);
  --shadow-strong: 0 28px 65px rgba(12, 10, 9, .35);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--stone-50);
  color: var(--stone-800);
  line-height: 1.6;
}

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

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

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, .86);
  border-bottom: 1px solid rgba(214, 211, 209, .9);
  backdrop-filter: blur(18px);
}

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

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

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-500), var(--amber-700));
  box-shadow: 0 12px 24px rgba(217, 119, 6, .28);
}

.logo-text {
  white-space: nowrap;
  font-size: 20px;
}

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

.main-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--stone-700);
  font-weight: 700;
  transition: all .22s ease;
}

.main-nav a:hover {
  color: var(--amber-700);
  background: var(--amber-100);
}

.nav-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--stone-200);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(28, 25, 23, .05);
}

.nav-search input {
  width: 220px;
  border: 0;
  outline: 0;
  padding: 8px 10px;
  background: transparent;
}

.nav-search button,
.filter-panel button {
  border: 0;
  border-radius: 999px;
  background: var(--stone-900);
  color: var(--white);
  padding: 8px 16px;
  cursor: pointer;
  font-weight: 800;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: var(--stone-100);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--stone-900);
  border-radius: 99px;
}

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

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

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

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  filter: saturate(1.1);
}

.hero-mask {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 18%, rgba(245, 158, 11, .36), transparent 34%),
    linear-gradient(90deg, rgba(12, 10, 9, .96), rgba(12, 10, 9, .64) 45%, rgba(12, 10, 9, .28)),
    linear-gradient(0deg, rgba(12, 10, 9, .92), transparent 42%);
}

.hero-inner {
  position: relative;
  z-index: 3;
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) 360px;
  align-items: center;
  gap: 54px;
  padding-top: 58px;
}

.hero-copy {
  max-width: 710px;
}

.hero-kicker,
.section-heading span,
.block-head span,
.page-hero span,
.featured-copy em {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--amber-300);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 16px 0;
  font-size: clamp(42px, 7vw, 76px);
  line-height: .96;
  letter-spacing: -.07em;
}

.hero p {
  max-width: 660px;
  color: rgba(255, 255, 255, .84);
  font-size: 18px;
}

.hero-tags,
.tag-row,
.side-tags,
.meta-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags span,
.tag-row span,
.meta-pills span,
.side-tags a {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .92);
  border: 1px solid rgba(255, 255, 255, .15);
  font-size: 13px;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: all .22s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--amber-500), var(--amber-700));
  color: var(--white);
  box-shadow: 0 14px 34px rgba(217, 119, 6, .35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(217, 119, 6, .42);
}

.btn-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(12px);
}

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

.hero-search {
  display: flex;
  max-width: 620px;
  margin-top: 26px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(14px);
}

.hero-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 12px 16px;
  color: var(--white);
  background: transparent;
}

.hero-search input::placeholder {
  color: rgba(255, 255, 255, .66);
}

.hero-search button {
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  background: var(--white);
  color: var(--stone-900);
  cursor: pointer;
  font-weight: 900;
}

.hero-poster {
  position: relative;
  display: block;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  transform: rotate(1.5deg);
  aspect-ratio: 3 / 4;
  background: var(--stone-800);
}

.hero-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-poster span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(245, 158, 11, .92);
  color: var(--white);
  font-weight: 900;
}

.hero-control {
  position: absolute;
  top: 48%;
  z-index: 5;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.hero-prev {
  left: 18px;
}

.hero-next {
  right: 18px;
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .42);
  cursor: pointer;
  transition: all .22s ease;
}

.hero-dot.active {
  width: 30px;
  background: var(--amber-500);
}

.hero-focus-rail {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 12px;
  margin-top: 584px;
  padding-bottom: 22px;
}

.focus-card {
  position: relative;
  min-height: 106px;
  overflow: hidden;
  border-radius: 18px;
  background: var(--stone-900);
  box-shadow: 0 14px 34px rgba(12, 10, 9, .28);
}

.focus-card img {
  width: 100%;
  height: 106px;
  object-fit: cover;
  opacity: .8;
  transition: transform .28s ease;
}

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

.focus-card span {
  position: absolute;
  inset: auto 10px 10px 10px;
  color: var(--white);
  font-weight: 900;
  font-size: 13px;
  text-shadow: 0 2px 9px rgba(0, 0, 0, .55);
}

.section {
  padding: 72px 0;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading h2,
.block-head h2,
.chip-panel h2,
.content-card h2,
.side-card h2 {
  margin: 6px 0 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
  letter-spacing: -.05em;
  color: var(--stone-900);
}

.section-heading p {
  max-width: 760px;
  color: var(--stone-600);
}

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

.category-tile {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--stone-200);
  border-radius: 26px;
  background: linear-gradient(135deg, var(--white), #fff7ed);
  box-shadow: var(--shadow-card);
  transition: all .22s ease;
}

.category-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, .42);
  box-shadow: 0 20px 45px rgba(217, 119, 6, .16);
}

.category-tile span {
  color: var(--amber-700);
  font-weight: 900;
  font-size: 13px;
}

.category-tile h3 {
  margin: 12px 0;
  color: var(--stone-900);
  font-size: 24px;
  letter-spacing: -.03em;
}

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

.category-tile strong {
  margin-top: 18px;
  color: var(--amber-700);
}

.two-col-section {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  gap: 28px;
  align-items: start;
}

.featured-wide {
  position: relative;
  display: block;
  min-height: 360px;
  overflow: hidden;
  border-radius: 28px;
  background: var(--stone-900);
  box-shadow: var(--shadow-card);
}

.featured-wide img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform .4s ease;
}

.featured-wide:hover img {
  transform: scale(1.05);
}

.featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12, 10, 9, .88), rgba(12, 10, 9, .12));
}

.featured-copy {
  position: absolute;
  inset: auto 0 0;
  padding: 32px;
  color: var(--white);
}

.featured-copy strong {
  display: block;
  margin: 10px 0;
  font-size: 34px;
  line-height: 1.1;
}

.featured-copy small {
  display: block;
  max-width: 720px;
  color: rgba(255, 255, 255, .8);
  font-size: 15px;
}

.ranking-panel,
.chip-panel,
.side-card,
.content-card,
.player-card {
  border: 1px solid var(--stone-200);
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.ranking-panel {
  overflow: hidden;
}

.rank-row {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 12px;
  padding: 15px 18px;
  border-bottom: 1px solid var(--stone-100);
  transition: background .2s ease;
}

.rank-row:hover {
  background: #fff7ed;
}

.rank-num {
  grid-row: span 2;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--stone-900);
  font-weight: 900;
}

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

.rank-meta {
  color: var(--stone-500);
  font-size: 13px;
}

.link-more {
  display: inline-flex;
  margin-top: 16px;
  color: var(--amber-700);
  font-weight: 900;
}

.movie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(172px, 1fr));
  gap: 20px;
}

.compact-grid {
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}

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

.movie-link {
  display: flex;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--stone-200);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(28, 25, 23, .08);
  transition: all .22s ease;
}

.movie-link:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(245, 158, 11, .4);
}

.poster-frame {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--stone-200);
}

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

.movie-link:hover .poster-frame img {
  transform: scale(1.06);
}

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12, 10, 9, .44), transparent 44%);
  opacity: 0;
  transition: opacity .22s ease;
}

.movie-link:hover .poster-shade {
  opacity: 1;
}

.play-chip {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(245, 158, 11, .92);
  font-size: 12px;
  font-weight: 900;
  transform: translateY(10px);
  opacity: 0;
  transition: all .22s ease;
}

.movie-link:hover .play-chip {
  transform: translateY(0);
  opacity: 1;
}

.movie-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 7px;
  padding: 14px;
}

.movie-card-body strong {
  color: var(--stone-900);
  font-size: 16px;
  line-height: 1.3;
}

.movie-meta,
.movie-desc {
  color: var(--stone-500);
  font-size: 13px;
}

.movie-desc {
  color: var(--stone-600);
}

.tag-row span {
  background: var(--stone-100);
  color: var(--stone-600);
  border-color: var(--stone-200);
}

.home-category-block {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 48px;
}

.block-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.block-head a {
  color: var(--amber-700);
  font-weight: 900;
}

.block-head.compact {
  align-items: center;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  background-color: var(--stone-950);
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.page-hero .container {
  padding: 92px 0;
}

.subtle-hero {
  background:
    radial-gradient(circle at 76% 20%, rgba(245, 158, 11, .28), transparent 32%),
    linear-gradient(135deg, var(--stone-950), var(--stone-800));
}

.page-hero h1 {
  margin: 12px 0;
  font-size: clamp(40px, 6vw, 70px);
  line-height: 1;
  letter-spacing: -.06em;
}

.page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(4, minmax(130px, .7fr)) auto;
  gap: 12px;
  margin-bottom: 24px;
  padding: 14px;
  border: 1px solid var(--stone-200);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--stone-200);
  border-radius: 16px;
  background: var(--stone-50);
  color: var(--stone-800);
  outline: 0;
  padding: 0 14px;
}

.empty-state {
  margin: 26px 0;
  padding: 22px;
  border-radius: 20px;
  background: var(--amber-100);
  color: var(--stone-800);
  font-weight: 800;
}

.chip-panel {
  padding: 24px;
}

.chip-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.chip-cloud a {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--stone-100);
  color: var(--stone-700);
  font-weight: 800;
}

.chip-cloud a:hover {
  background: var(--amber-100);
  color: var(--amber-700);
}

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

.rank-card {
  display: grid;
  grid-template-columns: 70px 92px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--stone-200);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(28, 25, 23, .08);
  transition: all .22s ease;
}

.rank-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 158, 11, .45);
  box-shadow: var(--shadow-card);
}

.rank-card-num {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-500), var(--stone-900));
  font-size: 18px;
  font-weight: 900;
}

.rank-card img {
  width: 92px;
  height: 124px;
  object-fit: cover;
  border-radius: 16px;
}

.rank-card-body {
  display: grid;
  gap: 6px;
}

.rank-card-body strong {
  color: var(--stone-900);
  font-size: 20px;
}

.rank-card-body em,
.rank-card-body small {
  color: var(--stone-600);
  font-style: normal;
}

.detail-hero .container {
  padding: 34px 0 72px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--amber-300);
  font-weight: 800;
}

.detail-hero-grid {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.detail-poster {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow-strong);
  aspect-ratio: 3 / 4;
  background: var(--stone-800);
}

.detail-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-copy h1 {
  margin: 14px 0 12px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -.06em;
}

.detail-copy p {
  max-width: 780px;
  color: rgba(255, 255, 255, .84);
  font-size: 18px;
}

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

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

.player-card,
.content-card,
.side-card {
  padding: 24px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #000;
  aspect-ratio: 16 / 9;
}

.player-shell video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 10px;
  border: 0;
  color: var(--white);
  background: linear-gradient(0deg, rgba(0, 0, 0, .62), rgba(0, 0, 0, .18));
  cursor: pointer;
  transition: opacity .22s ease;
}

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

.play-round {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--amber-500);
  color: var(--white);
  font-size: 30px;
  box-shadow: 0 18px 40px rgba(245, 158, 11, .35);
}

.player-overlay strong {
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  backdrop-filter: blur(10px);
}

.content-card p {
  margin: 12px 0 0;
  color: var(--stone-700);
  font-size: 16px;
}

.side-card + .side-card {
  margin-top: 20px;
}

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

.side-card dt {
  color: var(--stone-500);
  font-weight: 800;
}

.side-card dd {
  margin: 0;
  color: var(--stone-800);
  font-weight: 700;
}

.side-tags a {
  background: var(--stone-100);
  color: var(--stone-700);
  border-color: var(--stone-200);
}

.site-footer {
  margin-top: 64px;
  background: var(--stone-950);
  color: rgba(255, 255, 255, .76);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(190px, .7fr) minmax(220px, 1fr);
  gap: 32px;
  padding: 48px 0;
}

.footer-logo {
  color: var(--white);
  font-size: 22px;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: var(--white);
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-tags {
  display: flex;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, .74);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 18px;
  text-align: center;
  color: rgba(255, 255, 255, .54);
}

[hidden] {
  display: none !important;
}

@media (max-width: 1040px) {
  .nav-wrap {
    flex-wrap: wrap;
    padding: 12px 0;
  }

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

  .main-nav,
  .nav-search {
    display: none;
    width: 100%;
  }

  .site-header.menu-open .main-nav,
  .site-header.menu-open .nav-search {
    display: flex;
  }

  .main-nav {
    justify-content: center;
    order: 4;
  }

  .nav-search {
    order: 5;
  }

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

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: 560px;
  }

  .hero-poster {
    display: none;
  }

  .hero-focus-rail {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 540px;
  }

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

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

  .filter-search {
    grid-column: 1 / -1;
  }
}

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

  .hero {
    min-height: 760px;
  }

  .hero-inner {
    min-height: 600px;
    padding-top: 30px;
  }

  .hero-search,
  .nav-search {
    border-radius: 24px;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-search button,
  .nav-search button {
    min-height: 44px;
  }

  .hero-control {
    display: none;
  }

  .hero-dots {
    bottom: 148px;
  }

  .hero-focus-rail {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 596px;
  }

  .section {
    padding: 46px 0;
  }

  .movie-grid,
  .compact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

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

  .rank-card {
    grid-template-columns: 50px 72px minmax(0, 1fr);
    gap: 10px;
  }

  .rank-card img {
    width: 72px;
    height: 96px;
  }

  .rank-card-body small {
    display: none;
  }

  .detail-hero-grid {
    grid-template-columns: 1fr;
  }

  .detail-poster {
    width: min(260px, 76vw);
  }
}
