* {
  box-sizing: border-box;
}

:root {
  --rose: #e11d48;
  --rose-dark: #be123c;
  --pink: #ec4899;
  --orange: #f97316;
  --slate: #0f172a;
  --slate-soft: #1e293b;
  --gray: #64748b;
  --light: #f8fafc;
  --line: #e5e7eb;
  --card: #ffffff;
  --radius: 22px;
  --shadow: 0 22px 55px rgba(15, 23, 42, .13);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: #111827;
  background: #f9fafb;
  line-height: 1.65;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #ffffff;
  background: linear-gradient(90deg, #f43f5e, #ec4899 48%, #fb923c);
  box-shadow: 0 15px 40px rgba(225, 29, 72, .32);
}

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

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -.03em;
  white-space: nowrap;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .22);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .25);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  font-weight: 700;
}

.site-nav a,
.mobile-nav a {
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.site-nav a:hover {
  color: #fef3c7;
  transform: translateY(-1px);
}

.header-search {
  display: flex;
  align-items: center;
  width: min(310px, 28vw);
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  backdrop-filter: blur(14px);
}

.header-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: none;
  color: #ffffff;
  background: transparent;
  padding: 9px 12px;
}

.header-search input::placeholder {
  color: rgba(255, 255, 255, .75);
}

.header-search button {
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: var(--rose);
  padding: 8px 15px;
  font-weight: 800;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, .18);
}

.nav-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: #ffffff;
}

.mobile-nav {
  display: none;
  padding: 0 16px 16px;
}

.mobile-nav a,
.mobile-nav form {
  display: block;
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 12px;
  border-radius: 12px;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, .16);
}

.mobile-nav input {
  width: 100%;
  border: 0;
  outline: none;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, .18);
  padding: 12px 16px;
}

.mobile-nav input::placeholder {
  color: rgba(255, 255, 255, .78);
}

.hero {
  position: relative;
  overflow: hidden;
  background: #111827;
}

.hero-stage {
  position: relative;
  min-height: 680px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background-size: cover;
  background-position: center;
  transition: opacity .55s ease;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 26%, rgba(244, 63, 94, .46), transparent 32%),
    linear-gradient(90deg, rgba(15, 23, 42, .96), rgba(15, 23, 42, .66) 48%, rgba(15, 23, 42, .32)),
    linear-gradient(0deg, rgba(15, 23, 42, .9), rgba(15, 23, 42, .12));
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: center;
  gap: 58px;
  padding: 82px 0 150px;
  color: #ffffff;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: #fb7185;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: -.06em;
}

.hero-copy p {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: 18px;
}

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

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

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

.hero-tags span,
.detail-tags span {
  color: #ffffff;
  padding: 7px 12px;
  background: rgba(255, 255, 255, .16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18);
  backdrop-filter: blur(10px);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 23px;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(90deg, var(--rose), var(--orange));
  box-shadow: 0 18px 38px rgba(225, 29, 72, .35);
}

.btn-ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, .16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18);
  backdrop-filter: blur(10px);
}

.hero-poster {
  position: relative;
  display: block;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 35px 80px rgba(0, 0, 0, .45);
  transform: rotate(2deg);
}

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

.hero-poster span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(225, 29, 72, .92);
  padding: 8px 14px;
  font-weight: 900;
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 146px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 14px;
  transform: translateX(-50%);
}

.hero-controls > button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, .17);
  font-size: 28px;
  line-height: 1;
  backdrop-filter: blur(12px);
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, .38);
  transition: width .2s ease, background .2s ease;
}

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

.hero-search-panel {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(260px, 430px) 1fr;
  align-items: center;
  gap: 22px;
  margin-top: -114px;
  padding: 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, .93);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-search {
  display: flex;
  gap: 10px;
}

.hero-search input,
.filter-bar input,
.filter-bar select {
  width: 100%;
  border: 1px solid var(--line);
  outline: none;
  border-radius: 999px;
  background: #ffffff;
  padding: 14px 18px;
}

.hero-search button {
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--rose), var(--orange));
  padding: 0 20px;
  font-weight: 900;
}

.hero-category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-category-links a {
  border-radius: 999px;
  color: #be123c;
  background: #ffe4e6;
  padding: 9px 13px;
  font-size: 13px;
  font-weight: 900;
}

.hero-thumbs {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 22px;
  margin-bottom: 36px;
}

.hero-thumb {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  border-radius: 18px;
  background: #ffffff;
  padding: 10px;
  box-shadow: 0 16px 35px rgba(15, 23, 42, .08);
}

.hero-thumb img {
  width: 54px;
  height: 66px;
  border-radius: 12px;
  object-fit: cover;
}

.hero-thumb span {
  min-width: 0;
  overflow: hidden;
  color: #111827;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.section {
  padding: 74px 0;
}

.section-white {
  background: #ffffff;
}

.soft-bg {
  background: linear-gradient(135deg, #fff1f2, #fff7ed 55%, #f8fafc);
}

.section-heading {
  max-width: 760px;
  text-align: center;
  margin-bottom: 34px;
}

.section-heading h2,
.split-heading h2,
.sidebar-card h2,
.content-card h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  font-weight: 950;
  letter-spacing: -.04em;
}

.section-heading p,
.split-heading p {
  margin: 12px 0 0;
  color: var(--gray);
}

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

.split-heading.compact {
  align-items: center;
}

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

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

.movie-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #eef2f7;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(15, 23, 42, .08);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: #fecdd3;
  box-shadow: 0 28px 65px rgba(225, 29, 72, .16);
}

.poster-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, #111827, #be123c);
}

.poster-wrap img {
  width: 100%;
  aspect-ratio: 3 / 4.08;
  object-fit: cover;
  transition: transform .28s ease;
}

.movie-card:hover .poster-wrap img {
  transform: scale(1.045);
}

.poster-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(0, 0, 0, .62);
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(8px);
}

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
}

.card-body strong {
  color: #111827;
  font-size: 18px;
  line-height: 1.25;
}

.card-meta {
  color: var(--rose);
  font-size: 13px;
  font-weight: 900;
}

.card-desc {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.55;
}

.tag-row {
  margin-top: auto;
}

.tag-row span {
  color: #be123c;
  background: #ffe4e6;
  padding: 5px 8px;
}

.compact-card {
  flex-direction: row;
  border-radius: 18px;
}

.compact-card .poster-wrap {
  width: 96px;
  flex: 0 0 96px;
}

.compact-card .poster-wrap img {
  height: 100%;
  aspect-ratio: auto;
}

.compact-card .card-body strong {
  font-size: 16px;
}

.compact-card .card-desc {
  display: none;
}

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

.category-card {
  display: block;
  min-height: 170px;
  border: 1px solid rgba(225, 29, 72, .1);
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(251, 146, 60, .24), transparent 38%),
    linear-gradient(135deg, #ffffff, #fff1f2);
  padding: 24px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, .08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 65px rgba(225, 29, 72, .15);
}

.category-card span {
  display: block;
  color: #111827;
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -.03em;
}

.category-card p {
  margin: 12px 0 0;
  color: var(--gray);
}

.category-card em {
  display: inline-flex;
  margin-top: 18px;
  color: var(--rose);
  font-style: normal;
  font-weight: 900;
}

.two-columns {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 36px;
  align-items: start;
}

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

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

.rank-list.wide {
  max-width: 980px;
  margin-top: 34px;
}

.rank-item {
  display: grid;
  grid-template-columns: 52px 68px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  border: 1px solid #eef2f7;
  border-radius: 20px;
  background: #ffffff;
  padding: 12px 16px 12px 10px;
  box-shadow: 0 14px 35px rgba(15, 23, 42, .06);
}

.rank-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  color: #64748b;
  background: #f1f5f9;
  font-weight: 950;
}

.rank-top {
  color: #ffffff;
  background: linear-gradient(135deg, var(--rose), var(--orange));
}

.rank-item img {
  width: 68px;
  height: 84px;
  border-radius: 14px;
  object-fit: cover;
}

.rank-info {
  min-width: 0;
}

.rank-info strong,
.rank-info span {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rank-info strong {
  color: #111827;
  font-size: 17px;
}

.rank-info span {
  color: var(--gray);
  font-size: 13px;
}

.rank-action {
  border-radius: 999px;
  color: #ffffff;
  background: #111827;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 900;
}

.sub-hero {
  color: #ffffff;
  background:
    radial-gradient(circle at 76% 22%, rgba(251, 146, 60, .38), transparent 34%),
    linear-gradient(90deg, #be123c, #ec4899 48%, #f97316);
  padding: 86px 0;
}

.sub-hero h1 {
  margin: 0;
  font-size: clamp(36px, 6vw, 60px);
  line-height: 1.06;
  font-weight: 950;
  letter-spacing: -.05em;
}

.sub-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .88);
  font-size: 18px;
}

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

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

.catalog-sidebar {
  position: sticky;
  top: 92px;
}

.sidebar-card,
.content-card {
  border: 1px solid #eef2f7;
  border-radius: 24px;
  background: #ffffff;
  padding: 22px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, .08);
}

.sidebar-card h2,
.content-card h2 {
  margin-bottom: 14px;
  font-size: 22px;
}

.side-link {
  display: block;
  border-radius: 14px;
  color: #374151;
  padding: 10px 12px;
  font-weight: 800;
}

.side-link:hover {
  color: var(--rose);
  background: #fff1f2;
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 14px;
  margin-bottom: 16px;
}

.result-line {
  margin: 0 0 20px;
  color: var(--gray);
  font-weight: 800;
}

.movie-card[hidden] {
  display: none;
}

.rank-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.rank-feature {
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 30px;
  color: #ffffff;
  padding: 24px;
  box-shadow: var(--shadow);
}

.rank-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 23, 42, .92), rgba(15, 23, 42, .08));
}

.rank-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rank-feature strong,
.rank-feature em,
.rank-crown {
  position: relative;
  z-index: 2;
}

.rank-crown {
  align-self: flex-start;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--rose), var(--orange));
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 950;
}

.rank-feature strong {
  margin-top: 14px;
  font-size: 25px;
  font-weight: 950;
}

.rank-feature em {
  margin-top: 8px;
  color: rgba(255, 255, 255, .84);
  font-style: normal;
}

.search-filter {
  max-width: 840px;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background-size: cover;
  background-position: center;
}

.detail-hero-mask {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 25%, rgba(244, 63, 94, .48), transparent 34%),
    linear-gradient(90deg, rgba(15, 23, 42, .96), rgba(15, 23, 42, .72) 54%, rgba(15, 23, 42, .45));
  backdrop-filter: blur(4px);
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 36px;
  align-items: end;
  padding: 72px 0;
}

.detail-poster {
  width: 270px;
  aspect-ratio: 3 / 4.1;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 30px 65px rgba(0, 0, 0, .42);
}

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

.breadcrumb a:hover {
  color: #ffffff;
}

.detail-copy h1 {
  margin: 0;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -.05em;
}

.detail-one-line {
  max-width: 830px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .88);
  font-size: 18px;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}

.detail-meta span {
  border-radius: 999px;
  background: rgba(255, 255, 255, .15);
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 900;
}

.detail-copy .btn {
  margin-top: 28px;
}

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

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

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

.movie-video {
  width: 100%;
  height: 100%;
  background: #000000;
  object-fit: contain;
}

.player-cover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: opacity .2s ease, visibility .2s ease;
}

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

.play-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--rose), var(--orange));
  box-shadow: 0 24px 52px rgba(225, 29, 72, .42);
}

.play-button span {
  margin-left: 5px;
  font-size: 36px;
}

.content-card p {
  margin: 0;
  color: #374151;
  font-size: 17px;
}

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

.info-list {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px 12px;
  margin: 0;
}

.info-list dt {
  color: var(--gray);
  font-weight: 900;
}

.info-list dd {
  margin: 0;
  color: #111827;
  font-weight: 800;
}

.aside-recommend {
  display: grid;
  gap: 12px;
}

.site-footer {
  color: #cbd5e1;
  background: linear-gradient(135deg, #0f172a, #1e293b 56%, #0f172a);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr 1fr;
  gap: 34px;
  padding: 54px 0;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 14px;
  color: #ffffff;
}

.site-footer h2 {
  font-size: 24px;
  font-weight: 950;
}

.site-footer h3 {
  font-size: 16px;
  font-weight: 900;
}

.site-footer p,
.site-footer a {
  display: block;
  margin: 8px 0;
  color: #cbd5e1;
  font-size: 14px;
}

.site-footer a:hover {
  color: #fb7185;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  gap: 22px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 18px;
  color: #94a3b8;
  font-size: 14px;
}

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

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

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

  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 180px;
  }

  .hero-poster {
    width: min(310px, 72vw);
    transform: rotate(0);
  }

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

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

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

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

  .catalog-sidebar {
    position: static;
  }

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

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

  .site-logo span:last-child {
    font-size: 17px;
  }

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

  .hero-copy h1,
  .detail-copy h1 {
    font-size: 40px;
  }

  .hero-search,
  .filter-bar {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-search button {
    min-height: 46px;
  }

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

  .movie-grid,
  .category-grid,
  .all-categories,
  .mini-grid,
  .rank-feature-grid {
    grid-template-columns: 1fr;
  }

  .split-heading,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .rank-action {
    display: none;
  }

  .detail-hero-inner {
    grid-template-columns: 1fr;
    padding: 48px 0;
  }

  .detail-poster {
    width: min(245px, 70vw);
  }

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