:root {
  --bg: #f8fafc;
  --card: #ffffff;
  --ink: #111827;
  --muted: #64748b;
  --line: #e5e7eb;
  --orange: #f97316;
  --red: #ef4444;
  --pink: #ec4899;
  --blue: #2563eb;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
  --soft-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
  font: inherit;
}

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

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

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: #fff;
  box-shadow: 0 12px 24px rgba(249, 115, 22, 0.28);
}

.brand-text {
  font-size: 22px;
  background: linear-gradient(135deg, #ea580c, #dc2626);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.desktop-nav {
  display: flex;
  gap: 6px;
  margin-left: auto;
}

.nav-link,
.mobile-link {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 10px 14px;
  color: #475569;
  font-weight: 700;
  transition: 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
  color: #ea580c;
  background: #fff7ed;
}

.nav-search {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 4px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

.nav-search input,
.mobile-search input,
.cta-search input,
.search-page-form input,
.filter-bar input,
.filter-bar select {
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.nav-search input {
  width: 220px;
  padding: 9px 12px;
}

.nav-search button,
.mobile-search button,
.cta-search button,
.search-page-form button {
  border: 0;
  border-radius: 999px;
  padding: 9px 16px;
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: #fff7ed;
  color: #ea580c;
  font-size: 22px;
  cursor: pointer;
}

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

.mobile-menu.is-open {
  display: grid;
  gap: 8px;
}

.mobile-search {
  display: flex;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.mobile-search input {
  flex: 1;
  min-width: 0;
  padding: 10px 12px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: 54px 0 74px;
  color: #fff;
  background: radial-gradient(circle at 18% 18%, rgba(255, 237, 213, 0.26), transparent 24%), linear-gradient(135deg, #f97316 0%, #ef4444 48%, #ec4899 100%);
}

.hero-bg-layer {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.2), rgba(15, 23, 42, 0.5));
}

.hero-heading,
.hero-stage,
.hero-controls {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-heading {
  text-align: center;
  margin-bottom: 28px;
}

.hero-heading span,
.section-title span,
.page-hero span,
.ranking-head span,
.category-overview-copy span,
.cta-inner span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ea580c;
  background: #fff7ed;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-heading span {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
}

.hero-heading h1 {
  margin: 18px auto 12px;
  max-width: 950px;
  font-size: clamp(34px, 6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.hero-heading p {
  margin: 0 auto;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
}

.hero-stage {
  min-height: 430px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  align-items: center;
  gap: 34px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.985);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-slide.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.hero-image-glow {
  position: absolute;
  inset: -18px;
  border-radius: 34px;
  background-image: linear-gradient(90deg, rgba(15, 23, 42, 0.72), rgba(15, 23, 42, 0.22)), var(--hero-image);
  background-size: cover;
  background-position: center;
  filter: saturate(1.08);
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-poster {
  position: relative;
  z-index: 1;
}

.hero-copy {
  padding: clamp(24px, 5vw, 56px);
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-weight: 900;
}

.hero-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 5vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.hero-copy p {
  max-width: 680px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.8;
}

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

.hero-tags span,
.detail-tags span,
.tag-cloud a {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 900;
  transition: 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: #fff;
  box-shadow: 0 14px 30px rgba(239, 68, 68, 0.28);
}

.btn.ghost {
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.btn:hover,
.movie-link:hover,
.compact-card:hover,
.category-card:hover {
  transform: translateY(-2px);
}

.hero-poster {
  justify-self: center;
  width: min(360px, 100%);
  border: 8px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.38);
  aspect-ratio: 3 / 4;
}

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

.hero-poster span {
  position: absolute;
  inset: auto 22px 22px auto;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: #fff;
  font-size: 22px;
  box-shadow: 0 16px 30px rgba(239, 68, 68, 0.36);
}

.hero-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 24px;
}

.hero-arrow,
.hero-dot {
  border: 0;
  cursor: pointer;
}

.hero-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 30px;
}

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

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.45);
  transition: 0.2s ease;
}

.hero-dot.is-active {
  width: 34px;
  background: #fff;
}

.section {
  padding: 66px 0;
}

.white-block {
  background: #fff;
}

.section-title {
  margin-bottom: 28px;
  text-align: center;
}

.section-title h2,
.page-hero h1,
.cta-inner h2 {
  margin: 12px 0 10px;
  color: #111827;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.section-title p,
.page-hero p,
.cta-inner p {
  margin: 0 auto;
  max-width: 720px;
  color: var(--muted);
  line-height: 1.8;
}

.row-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
}

.left-title {
  text-align: left;
}

.left-title p {
  margin-left: 0;
}

.more-link,
.ranking-head a {
  color: #ea580c;
  font-weight: 900;
}

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

.category-card,
.category-overview-card {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: 24px;
  border-radius: var(--radius);
  color: #fff;
  box-shadow: var(--soft-shadow);
  transition: 0.2s ease;
}

.category-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.category-cover {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, rgba(15, 23, 42, 0.15), rgba(15, 23, 42, 0.82)), var(--cat-cover);
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: 0.3s ease;
}

.category-card:hover .category-cover {
  transform: scale(1.12);
}

.category-card strong,
.category-card em,
.category-card b {
  position: relative;
  z-index: 1;
}

.category-card strong {
  font-size: 22px;
  font-weight: 900;
}

.category-card em {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-style: normal;
  line-height: 1.6;
}

.category-card b {
  margin-top: 16px;
  font-size: 14px;
}

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

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

.movie-link {
  display: block;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 18px;
  background: var(--card);
  box-shadow: var(--soft-shadow);
  transition: 0.2s ease;
}

.poster-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #fed7aa, #fecaca);
}

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

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

.poster-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(15, 23, 42, 0.5));
  opacity: 0;
  transition: opacity 0.25s ease;
}

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

.year-badge,
.rank-badge {
  position: absolute;
  z-index: 2;
  top: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.year-badge {
  right: 12px;
  background: rgba(15, 23, 42, 0.76);
}

.rank-badge {
  left: 12px;
  background: linear-gradient(135deg, var(--orange), var(--red));
}

.play-mark {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: #fff;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9);
  transition: 0.25s ease;
  box-shadow: 0 14px 28px rgba(239, 68, 68, 0.35);
}

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

.movie-card-body {
  padding: 18px;
}

.movie-card-body h3 {
  margin: 0 0 10px;
  min-height: 50px;
  color: #111827;
  font-size: 18px;
  line-height: 1.38;
  letter-spacing: -0.02em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-card-body p {
  margin: 0 0 16px;
  min-height: 48px;
  color: #64748b;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #64748b;
  font-size: 13px;
}

.movie-meta-row span:last-child {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 6px 10px;
  background: #fff7ed;
  color: #ea580c;
  font-weight: 900;
}

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

.movie-card.list .movie-link {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
}

.movie-card.list .poster-frame {
  aspect-ratio: auto;
  min-height: 160px;
}

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

.ranking-panel,
.side-card,
.detail-content-card,
.player-card,
.category-overview-card {
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.ranking-panel {
  position: sticky;
  top: 92px;
  padding: 22px;
}

.ranking-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.ranking-head h2 {
  margin: 6px 0 0;
  font-size: 24px;
}

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

.compact-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 8px;
  border-radius: 16px;
  background: #f8fafc;
  transition: 0.2s ease;
}

.compact-card img {
  width: 92px;
  height: 62px;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.compact-rank {
  display: inline-flex;
  margin-bottom: 4px;
  color: #ea580c;
  font-weight: 900;
}

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

.compact-info strong {
  color: #111827;
  font-size: 14px;
}

.compact-info em {
  color: #64748b;
  font-size: 12px;
  font-style: normal;
}

.cta-band {
  padding: 58px 0;
  background: linear-gradient(135deg, #f97316, #ef4444);
  color: #fff;
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
  gap: 28px;
  align-items: center;
}

.cta-inner span {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.cta-inner h2,
.cta-inner p {
  color: #fff;
}

.cta-search,
.search-page-form {
  display: flex;
  gap: 10px;
  padding: 10px;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}

.cta-search input,
.search-page-form input {
  flex: 1;
  min-width: 0;
  padding: 14px 16px;
}

.page-main {
  padding: 42px 0 72px;
}

.page-hero {
  margin-bottom: 28px;
  padding: 40px;
  border-radius: 30px;
  background: linear-gradient(135deg, #ffffff, #fff7ed);
  box-shadow: var(--soft-shadow);
}

.breadcrumb,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  color: #64748b;
  font-size: 14px;
}

.breadcrumb a,
.detail-meta a {
  color: #ea580c;
  font-weight: 800;
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: center;
  padding: 26px;
  color: #111827;
}

.category-overview-copy h2 {
  margin: 12px 0 10px;
  font-size: 32px;
  letter-spacing: -0.04em;
}

.category-overview-copy p {
  margin: 0 0 20px;
  color: #64748b;
  line-height: 1.8;
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 160px 150px 150px auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 22px;
  padding: 14px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.filter-bar input,
.filter-bar select {
  width: 100%;
  min-height: 44px;
  border-radius: 14px;
  padding: 0 14px;
  background: #f8fafc;
}

.filter-count {
  color: #64748b;
  font-size: 14px;
  white-space: nowrap;
}

.filter-count b {
  color: #ea580c;
}

.search-page-form {
  max-width: 820px;
  margin: 0 auto 18px;
}

.tag-cloud {
  justify-content: center;
  margin-bottom: 34px;
}

.tag-cloud a {
  color: #ea580c;
  background: #fff7ed;
}

.search-result-title {
  margin: 0 0 20px;
  font-size: 28px;
  letter-spacing: -0.03em;
}

.detail-shell {
  padding-top: 6px;
}

.detail-breadcrumb {
  margin: 0 0 20px;
}

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

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

.player-card {
  overflow: hidden;
  background: #0f172a;
}

.player-box {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #020617;
}

.player-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.player-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.56) saturate(1.1);
}

.big-play {
  position: relative;
  z-index: 2;
  width: 86px;
  height: 86px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: #fff;
  font-size: 34px;
  box-shadow: 0 20px 42px rgba(239, 68, 68, 0.4);
  cursor: pointer;
}

.detail-content-card {
  padding: clamp(22px, 4vw, 36px);
}

.detail-content-card h1 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.detail-content-card h2 {
  margin: 28px 0 12px;
  font-size: 24px;
}

.detail-content-card p {
  color: #334155;
  line-height: 1.95;
  font-size: 16px;
}

.lead-text {
  margin-top: 22px;
  padding: 18px 20px;
  border-left: 4px solid #f97316;
  border-radius: 16px;
  background: #fff7ed;
  color: #9a3412 !important;
  font-weight: 800;
}

.detail-tags {
  margin-top: 26px;
}

.detail-tags span {
  color: #475569;
  background: #f1f5f9;
}

.side-card {
  padding: 20px;
}

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

.poster-side img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 16px;
}

.poster-side p {
  color: #64748b;
  line-height: 1.7;
}

.ranking-grid .movie-link {
  border-top: 4px solid #f97316;
}

.site-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 54px 0;
}

.footer-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 30px;
}

.footer-brand {
  color: #fff;
  font-size: 22px;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 18px;
}

.site-footer p,
.site-footer a {
  display: block;
  color: #94a3b8;
  line-height: 1.8;
}

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

.tone-orange,
.tone-red,
.tone-pink,
.tone-purple,
.tone-blue,
.tone-cyan,
.tone-green,
.tone-amber,
.tone-slate,
.tone-violet {
  border-color: rgba(251, 146, 60, 0.35);
}

[data-filter-hidden="true"] {
  display: none !important;
}

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

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

  .hero-slide,
  .detail-layout,
  .split-layout,
  .cta-inner,
  .category-overview-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-poster {
    width: min(420px, 88%);
  }

  .ranking-panel {
    position: static;
  }

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

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

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

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

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

@media (max-width: 720px) {
  .shell,
  .hero-heading,
  .hero-stage,
  .hero-controls,
  .nav-shell,
  .mobile-menu {
    width: min(100% - 22px, 1180px);
  }

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

  .hero {
    padding: 34px 0 52px;
  }

  .hero-heading h1 {
    font-size: 34px;
  }

  .hero-copy {
    padding: 22px;
  }

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

  .hero-copy p {
    font-size: 15px;
  }

  .hero-image-glow {
    border-radius: 24px;
  }

  .section {
    padding: 42px 0;
  }

  .row-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .category-grid,
  .movie-grid,
  .list-grid,
  .detail-aside,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .movie-card.list .poster-frame {
    min-height: auto;
    aspect-ratio: 16 / 10;
  }

  .page-hero {
    padding: 26px;
  }

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

  .cta-search,
  .search-page-form {
    flex-direction: column;
  }

  .big-play {
    width: 68px;
    height: 68px;
    font-size: 28px;
  }
}
