:root {
  --bg: #f7f5ff;
  --bg-soft: #fff7fd;
  --text: #1f2937;
  --muted: #6b7280;
  --line: rgba(255, 255, 255, 0.42);
  --panel: rgba(255, 255, 255, 0.76);
  --panel-strong: rgba(255, 255, 255, 0.92);
  --purple: #7c3aed;
  --pink: #db2777;
  --blue: #2563eb;
  --cyan: #06b6d4;
  --shadow: 0 22px 55px rgba(89, 70, 130, 0.18);
  --shadow-strong: 0 32px 80px rgba(59, 44, 100, 0.28);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 8%, rgba(240, 147, 251, 0.24), transparent 32%),
    radial-gradient(circle at 88% 18%, rgba(79, 172, 254, 0.26), transparent 36%),
    linear-gradient(120deg, #fff7fb 0%, #f4f0ff 48%, #eef9ff 100%);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  line-height: 1.65;
  min-height: 100vh;
}

body.no-scroll {
  overflow: hidden;
}

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

img {
  display: block;
  max-width: 100%;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(219, 39, 119, 0.18), rgba(37, 99, 235, 0.16));
}

button,
input,
select {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.text-gradient {
  background: linear-gradient(90deg, #9333ea, #db2777, #2563eb);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nebula-gradient {
  background: linear-gradient(135deg, #667eea, #764ba2, #f093fb, #4facfe, #00f2fe);
}

.glass-effect {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: var(--panel);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.card-hover {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.card-hover:hover {
  transform: translateY(-6px) scale(1.012);
  box-shadow: var(--shadow-strong);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 80;
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 255, 255, 0.76);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-bottom-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 12px 34px rgba(62, 48, 102, 0.12);
}

.header-inner {
  width: min(var(--max), calc(100% - 32px));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 15px;
  background: linear-gradient(135deg, #7c3aed, #db2777, #2563eb);
  box-shadow: 0 14px 30px rgba(124, 58, 237, 0.32);
}

.brand-text,
.footer-brand {
  font-size: clamp(20px, 3vw, 28px);
  background: linear-gradient(90deg, #9333ea, #db2777, #2563eb);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.header-search {
  flex: 1;
  max-width: 360px;
  position: relative;
  margin-left: auto;
}

.header-search input,
.mobile-search input,
.filter-input,
.filter-select {
  width: 100%;
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 999px;
  outline: none;
  color: var(--text);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.header-search input {
  padding: 11px 46px 11px 18px;
}

.header-search button {
  position: absolute;
  right: 4px;
  top: 4px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  background: linear-gradient(135deg, #7c3aed, #db2777);
}

.header-search input:focus,
.mobile-search input:focus,
.filter-input:focus,
.filter-select:focus {
  border-color: rgba(124, 58, 237, 0.42);
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.12);
  background: rgba(255, 255, 255, 0.92);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: max-content;
}

.nav-link {
  color: #4b5563;
  font-weight: 700;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link.is-active {
  color: var(--purple);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.68);
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: #374151;
}

.mobile-panel {
  display: none;
  padding: 0 18px 18px;
}

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

.mobile-panel nav {
  width: min(var(--max), 100%);
  margin: 10px auto 0;
  display: grid;
  gap: 8px;
}

.mobile-search {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: flex;
  gap: 10px;
}

.mobile-search input {
  padding: 11px 16px;
}

.mobile-search button {
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  color: #ffffff;
  cursor: pointer;
  background: linear-gradient(135deg, #7c3aed, #db2777);
}

.mobile-link {
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.52);
}

main {
  min-height: 70vh;
}

.hero {
  position: relative;
  min-height: 74vh;
  overflow: hidden;
  color: #ffffff;
  background: #111827;
}

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

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

.hero-backdrop {
  position: absolute;
  inset: -22px;
  background-size: cover;
  background-position: center;
  filter: blur(12px) brightness(0.72);
  transform: scale(1.08);
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 18%, rgba(240, 147, 251, 0.25), transparent 28%),
    linear-gradient(0deg, rgba(8, 12, 28, 0.92), rgba(8, 12, 28, 0.40) 46%, rgba(8, 12, 28, 0.25)),
    linear-gradient(90deg, rgba(8, 12, 28, 0.84), rgba(8, 12, 28, 0.12));
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(var(--max), calc(100% - 32px));
  min-height: 74vh;
  margin: 0 auto;
  padding: 118px 0 70px;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(260px, 0.62fr);
  align-items: end;
  gap: 38px;
}

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

.hero-kicker,
.section-kicker,
.page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #facc15;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hero h1 {
  margin: 16px 0;
  font-size: clamp(36px, 6.2vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero p {
  max-width: 720px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 2vw, 20px);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 28px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 7px 12px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  color: #ffffff;
  font-weight: 850;
  cursor: pointer;
  background: linear-gradient(135deg, #667eea, #764ba2, #f093fb, #4facfe);
  box-shadow: 0 16px 34px rgba(124, 58, 237, 0.34);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(124, 58, 237, 0.42);
}

.btn-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: none;
}

.hero-panel {
  align-self: center;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.26);
}

.hero-poster {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 20px;
}

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

.hero-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.42), transparent 50%);
}

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

.hero-dot {
  width: 34px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.32);
}

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

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

.content-shell {
  padding: 54px 0 76px;
}

.section {
  margin: 0 0 70px;
}

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

.section-heading h2,
.page-hero h1,
.detail-title h1 {
  margin: 4px 0 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-heading p,
.page-hero p,
.detail-title p {
  max-width: 760px;
  margin: 8px 0 0;
  color: var(--muted);
}

.section-kicker,
.page-kicker {
  color: var(--pink);
  text-transform: uppercase;
  font-size: 13px;
}

.section-more {
  min-width: max-content;
  padding: 9px 15px;
  border-radius: 999px;
  color: var(--purple);
  font-weight: 800;
  background: rgba(124, 58, 237, 0.09);
}

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

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

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

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

.movie-card {
  display: block;
  overflow: hidden;
  border-radius: 22px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.58);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.movie-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.movie-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.3s ease;
}

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

.movie-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.58), transparent 58%);
  opacity: 0.8;
}

.corner-chip,
.rank-badge,
.play-dot {
  position: absolute;
  z-index: 2;
}

.corner-chip {
  top: 12px;
  right: 12px;
  border-radius: 999px;
  padding: 5px 10px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 850;
  background: rgba(0, 0, 0, 0.56);
}

.rank-badge {
  top: 12px;
  left: 12px;
  min-width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-weight: 950;
  background: linear-gradient(135deg, #ef4444, #f97316);
  box-shadow: 0 12px 24px rgba(239, 68, 68, 0.28);
}

.play-dot {
  left: 14px;
  bottom: 14px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.35);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.movie-info {
  padding: 16px;
}

.movie-info h3 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-info p {
  min-height: 48px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #6b7280;
  font-size: 12px;
}

.movie-meta span {
  border-radius: 999px;
  padding: 4px 8px;
  background: rgba(124, 58, 237, 0.08);
}

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

.row-thumb {
  height: 100%;
  min-height: 160px;
  aspect-ratio: auto;
}

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

.category-tile {
  position: relative;
  min-height: 132px;
  overflow: hidden;
  border-radius: 22px;
  padding: 20px;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.92), rgba(219, 39, 119, 0.72), rgba(79, 172, 254, 0.8));
  box-shadow: var(--shadow);
}

.category-tile::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.category-tile h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 10px;
  font-size: 20px;
}

.category-tile p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
}

.page-hero {
  padding: 130px 0 48px;
}

.page-hero-panel {
  overflow: hidden;
  border-radius: 30px;
  padding: clamp(26px, 5vw, 52px);
  background:
    radial-gradient(circle at 88% 14%, rgba(240, 147, 251, 0.3), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.58));
  border: 1px solid rgba(255, 255, 255, 0.64);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

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

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

.filter-bar {
  display: grid;
  grid-template-columns: minmax(200px, 1.4fr) repeat(3, minmax(130px, 0.55fr));
  gap: 12px;
  margin: 0 0 24px;
  padding: 14px;
  border-radius: 22px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.filter-input,
.filter-select {
  height: 46px;
  padding: 0 16px;
}

.filter-empty {
  display: none;
  margin: 24px 0;
  padding: 28px;
  border-radius: 22px;
  color: var(--muted);
  text-align: center;
  background: var(--panel-strong);
}

.filter-empty.is-visible {
  display: block;
}

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

.detail-shell {
  padding: 118px 0 74px;
}

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

.detail-main,
.detail-side,
.article-card {
  border-radius: 28px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.58);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.detail-main {
  overflow: hidden;
}

.player-card {
  position: relative;
  background: #060914;
}

.video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #080b16;
}

.video-wrap video {
  width: 100%;
  height: 100%;
  display: block;
  background: #080b16;
  object-fit: contain;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: #ffffff;
  background:
    radial-gradient(circle at 50% 40%, rgba(124, 58, 237, 0.18), transparent 32%),
    linear-gradient(0deg, rgba(6, 9, 20, 0.82), rgba(6, 9, 20, 0.32));
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

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

.big-play {
  width: 86px;
  height: 86px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 31px;
  cursor: pointer;
  background: linear-gradient(135deg, #7c3aed, #db2777, #2563eb);
  box-shadow: 0 22px 50px rgba(124, 58, 237, 0.45);
}

.detail-body {
  padding: clamp(20px, 4vw, 34px);
}

.detail-title h1 {
  margin: 10px 0 14px;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
}

.detail-tags span {
  border-radius: 999px;
  padding: 6px 12px;
  color: var(--purple);
  font-weight: 800;
  background: rgba(124, 58, 237, 0.09);
}

.article-card {
  padding: 24px;
  margin-top: 22px;
}

.article-card h2,
.detail-side h2 {
  margin: 0 0 12px;
  font-size: 24px;
}

.article-card p {
  margin: 0 0 12px;
  color: #4b5563;
}

.detail-side {
  padding: 20px;
}

.poster-box {
  overflow: hidden;
  border-radius: 22px;
  aspect-ratio: 3 / 4;
  margin-bottom: 18px;
}

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

.info-list {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
}

.info-item {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(107, 114, 128, 0.12);
}

.info-item span:first-child {
  color: var(--muted);
}

.info-item span:last-child {
  font-weight: 800;
  text-align: right;
}

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

.related-item {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.56);
  transition: transform 0.2s ease, background 0.2s ease;
}

.related-item:hover {
  transform: translateX(3px);
  background: rgba(255, 255, 255, 0.9);
}

.related-item img {
  width: 74px;
  height: 82px;
  object-fit: cover;
  border-radius: 12px;
}

.related-item strong {
  display: block;
  margin-bottom: 4px;
  line-height: 1.35;
}

.related-item span {
  color: var(--muted);
  font-size: 12px;
}

.site-footer {
  margin-top: 20px;
  padding: 40px 0 24px;
  color: #4b5563;
}

.footer-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 28px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.62);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.footer-brand {
  display: inline-block;
  font-weight: 950;
}

.footer-inner p {
  max-width: 480px;
  margin: 10px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.footer-links a {
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--purple);
  font-weight: 750;
  background: rgba(124, 58, 237, 0.08);
}

.footer-bottom {
  width: min(var(--max), calc(100% - 32px));
  margin: 18px auto 0;
  color: #6b7280;
  font-size: 14px;
  text-align: center;
}

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

  .menu-button {
    display: block;
  }

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

  .hero-panel {
    display: none;
  }

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

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

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

  .detail-side {
    order: -1;
  }

  .poster-box {
    max-width: 320px;
  }

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

@media (max-width: 760px) {
  .header-inner {
    width: min(100% - 24px, var(--max));
    height: 66px;
    gap: 12px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

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

  .header-search {
    display: none;
  }

  .hero,
  .hero-content {
    min-height: 78vh;
  }

  .hero-content {
    padding-top: 96px;
    padding-bottom: 76px;
  }

  .hero h1 {
    font-size: clamp(34px, 12vw, 52px);
  }

  .content-shell {
    padding-top: 38px;
  }

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

  .grid-4,
  .grid-3,
  .grid-2,
  .category-strip {
    grid-template-columns: 1fr;
  }

  .movie-card-row {
    grid-template-columns: 122px minmax(0, 1fr);
  }

  .row-thumb {
    min-height: 150px;
  }

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

  .page-hero {
    padding-top: 98px;
  }

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

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

  .footer-links {
    justify-content: flex-start;
  }
}
