:root {
  --page-bg: #fff8ed;
  --page-bg-2: #ffffff;
  --text: #2f2a25;
  --muted: #73675d;
  --soft: #fff1da;
  --soft-2: #ffe6bd;
  --line: #f7d8a8;
  --brand: #f97316;
  --brand-dark: #c2410c;
  --brand-2: #f59e0b;
  --shadow: 0 18px 50px rgba(124, 45, 18, 0.12);
  --shadow-soft: 0 10px 30px rgba(124, 45, 18, 0.10);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fff7ed 0%, #fffbf4 48%, #ffffff 100%);
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 247, 237, 0.90);
  border-bottom: 1px solid rgba(249, 115, 22, 0.14);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(124, 45, 18, 0.08);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
  border-radius: 15px;
  box-shadow: 0 12px 26px rgba(249, 115, 22, 0.28);
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text strong,
.footer-brand strong {
  font-size: 24px;
  letter-spacing: -0.03em;
  background: linear-gradient(90deg, #b45309, #f97316, #d97706);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-text small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-link {
  position: relative;
  padding: 10px 14px;
  border-radius: 999px;
  color: #5f5145;
  font-weight: 700;
  font-size: 14px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--brand-dark);
  background: #ffedd5;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  color: var(--brand-dark);
  background: #ffedd5;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  padding: 56px 0 42px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 20%, rgba(251, 146, 60, 0.32), transparent 30%),
    radial-gradient(circle at 80% 12%, rgba(245, 158, 11, 0.28), transparent 32%),
    linear-gradient(135deg, #fff7ed 0%, #ffedd5 48%, #ffffff 100%);
}

.hero-inner {
  position: relative;
}

.hero-slide {
  display: none;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  gap: 50px;
  align-items: center;
  min-height: 540px;
}

.hero-slide.is-active {
  display: grid;
  animation: fadeIn 0.45s ease both;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 8px 14px;
  color: var(--brand-dark);
  background: linear-gradient(90deg, #ffedd5, #fef3c7);
  border: 1px solid rgba(249, 115, 22, 0.18);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(42px, 7vw, 74px);
  line-height: 1.02;
  letter-spacing: -0.06em;
  background: linear-gradient(90deg, #92400e, #ea580c 42%, #b45309 82%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-desc {
  max-width: 700px;
  margin: 0;
  color: #5b5148;
  font-size: 18px;
  line-height: 1.85;
}

.hero-meta,
.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  color: #78675a;
  font-size: 13px;
}

.hero-meta span,
.movie-meta span {
  padding: 6px 10px;
  background: #ffffff;
  border: 1px solid rgba(249, 115, 22, 0.12);
  border-radius: 999px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: #ffffff;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  box-shadow: 0 15px 30px rgba(249, 115, 22, 0.26);
}

.btn-light {
  color: var(--brand-dark);
  background: #ffffff;
  border-color: #fed7aa;
  box-shadow: var(--shadow-soft);
}

.btn-white {
  color: var(--brand-dark);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(255, 255, 255, 0.22);
}

.hero-art {
  position: relative;
  min-height: 520px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 35px 90px rgba(124, 45, 18, 0.28);
  isolation: isolate;
}

.hero-art img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-art:hover img {
  transform: scale(1.06);
}

.hero-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.56) 100%);
}

.play-mark {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 14px 30px rgba(249, 115, 22, 0.36);
  transition: transform 0.2s ease;
}

.movie-card:hover .play-mark,
.hero-art:hover .play-mark {
  transform: scale(1.08);
}

.hero-play {
  right: 28px;
  bottom: 28px;
  width: 68px;
  height: 68px;
  font-size: 24px;
}

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

.hero-arrow,
.hero-dot {
  border: 0;
  color: var(--brand-dark);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.hero-arrow {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  font-size: 30px;
  line-height: 1;
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
  opacity: 0.55;
}

.hero-dot.is-active {
  width: 30px;
  opacity: 1;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
}

.section {
  padding: 74px 0;
}

.section-white {
  background: rgba(255, 255, 255, 0.70);
}

.section-tint {
  background: linear-gradient(90deg, #fff7ed, #ffedd5, #fff7ed);
}

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

.section-heading h2,
.page-hero h1,
.detail-copy h1 {
  margin: 10px 0 0;
  color: #352a21;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-action {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--brand-dark);
  font-weight: 800;
}

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

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

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

.movie-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(249, 115, 22, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.movie-card-horizontal {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: stretch;
}

.poster-shell {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 260px;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.32), transparent 28%),
    linear-gradient(135deg, #f97316, #f59e0b 48%, #fef3c7);
  isolation: isolate;
}

.poster-shell img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.poster-shell:hover img {
  transform: scale(1.07);
}

.poster-shell::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.56));
  pointer-events: none;
}

.poster-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 20px;
  color: #ffffff;
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-shadow: 0 8px 24px rgba(124, 45, 18, 0.35);
}

.poster-shell.no-image .poster-fallback {
  z-index: 4;
}

.poster-horizontal {
  min-height: 100%;
}

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

.movie-title {
  display: -webkit-box;
  min-height: 48px;
  overflow: hidden;
  color: #332a22;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: color 0.2s ease;
}

.movie-title:hover {
  color: var(--brand-dark);
}

.movie-desc {
  margin: 10px 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.tag-row span {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--brand-dark);
  background: #ffedd5;
  font-size: 12px;
  font-weight: 700;
}

.line-clamp-2 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

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

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

.category-card {
  position: relative;
  overflow: hidden;
  min-height: 170px;
  padding: 24px;
  color: #4a2b16;
  background: linear-gradient(135deg, #ffffff, #fff7ed 54%, #ffedd5);
  border: 1px solid rgba(249, 115, 22, 0.16);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card::after {
  content: "";
  position: absolute;
  right: -32px;
  top: -32px;
  width: 110px;
  height: 110px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.12);
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.category-card strong {
  display: block;
  font-size: 22px;
  margin-bottom: 8px;
}

.category-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--brand-dark);
  font-weight: 800;
}

.category-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.cta-band {
  padding: 70px 0;
  color: #ffffff;
  text-align: center;
  background: linear-gradient(90deg, var(--brand), var(--brand-2), var(--brand));
}

.cta-band h2 {
  margin: 0 0 12px;
  font-size: clamp(32px, 5vw, 52px);
  letter-spacing: -0.04em;
}

.cta-band p {
  max-width: 760px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.90);
  line-height: 1.8;
}

.page-hero {
  padding: 70px 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 255, 255, 0.20), transparent 26%),
    linear-gradient(120deg, #ea580c, #f59e0b 58%, #fb923c);
}

.page-hero .eyebrow {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
}

.page-hero h1 {
  color: #ffffff;
}

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

.tool-panel {
  margin-top: 34px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(249, 115, 22, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.search-box {
  display: grid;
  gap: 8px;
  color: var(--brand-dark);
  font-weight: 900;
}

.search-box input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  color: var(--text);
  background: #fffaf3;
  border: 2px solid #fed7aa;
  border-radius: 15px;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.search-box input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 5px rgba(249, 115, 22, 0.12);
}

.big-search input {
  min-height: 62px;
  font-size: 18px;
}

.filter-stack {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.filter-group {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 14px;
  align-items: start;
}

.filter-group strong {
  padding-top: 8px;
  color: #4b3a2d;
}

.filter-group div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-chip {
  border: 1px solid #fed7aa;
  border-radius: 999px;
  padding: 8px 12px;
  color: #6b4f3b;
  background: #ffffff;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.filter-chip:hover,
.filter-chip.is-active {
  color: #ffffff;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  transform: translateY(-1px);
}

.result-count {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin-top: 42px;
}

.page-num {
  min-width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid #fed7aa;
  border-radius: 12px;
  color: #6b4f3b;
  background: #ffffff;
  font-weight: 900;
}

.page-num.is-active,
.page-num:hover {
  color: #ffffff;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
}

.rank-badge {
  position: absolute;
  z-index: 5;
  left: 12px;
  top: 12px;
  display: grid;
  place-items: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, #ef4444, var(--brand));
  box-shadow: 0 12px 24px rgba(239, 68, 68, 0.28);
}

.detail-hero {
  padding: 54px 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(245, 158, 11, 0.22), transparent 28%),
    linear-gradient(135deg, #fff7ed, #ffedd5 58%, #ffffff);
}

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

.detail-poster {
  min-height: 520px;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.detail-copy h1 {
  font-size: clamp(38px, 5vw, 64px);
}

.detail-one-line {
  margin: 18px 0;
  color: #5d5148;
  font-size: 18px;
  line-height: 1.85;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: #856149;
  font-size: 14px;
}

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

.breadcrumb em {
  font-style: normal;
  color: var(--muted);
}

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

.detail-meta-grid span {
  display: grid;
  gap: 4px;
  padding: 14px;
  background: #ffffff;
  border: 1px solid rgba(249, 115, 22, 0.12);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.detail-meta-grid b {
  color: var(--brand-dark);
  font-size: 12px;
}

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

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

.player-card,
.content-card,
.side-card,
.info-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(249, 115, 22, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

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

.content-card h2,
.side-card h2,
.info-card h2 {
  margin: 0 0 14px;
  color: #3e3026;
  font-size: 24px;
}

.content-card p,
.side-card p,
.info-card p {
  margin: 0;
  color: #62544a;
  line-height: 1.9;
}

.player {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  background: #111827;
}

.player video {
  width: 100%;
  min-height: 420px;
  max-height: 70vh;
  object-fit: contain;
  background: #111827;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-content: center;
  gap: 10px;
  border: 0;
  color: #ffffff;
  text-align: center;
  background: radial-gradient(circle at 50% 44%, rgba(249, 115, 22, 0.38), rgba(17, 24, 39, 0.82));
}

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

.player-play-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 16px 34px rgba(249, 115, 22, 0.35);
  font-size: 30px;
}

.player-overlay strong {
  font-size: 24px;
}

.player-overlay small {
  color: rgba(255, 255, 255, 0.78);
}

.player-status {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 5;
  margin: 0;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(0, 0, 0, 0.36);
  border-radius: 999px;
  font-size: 12px;
}

.brand-card {
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.brand-card h2,
.brand-card p {
  color: #ffffff;
}

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

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

.side-related .poster-shell {
  min-height: 96px;
}

.side-related .movie-card-body {
  padding: 10px;
}

.side-related .movie-title {
  min-height: auto;
  font-size: 14px;
}

.side-related .movie-desc,
.side-related .tag-row {
  display: none;
}

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

.site-footer {
  background: linear-gradient(180deg, #fff7ed, #ffedd5);
  border-top: 1px solid rgba(249, 115, 22, 0.14);
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.site-footer h2 {
  margin: 0 0 14px;
  font-size: 18px;
}

.site-footer p,
.site-footer a {
  color: #675649;
  line-height: 1.8;
  font-size: 14px;
}

.site-footer ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a:hover {
  color: var(--brand-dark);
}

.footer-bottom {
  padding: 18px;
  text-align: center;
  border-top: 1px solid rgba(249, 115, 22, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

[hidden],
.is-hidden {
  display: none !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .movie-grid,
  .compact-grid,
  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

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

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

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

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

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

  .nav-links {
    position: absolute;
    left: 12px;
    right: 12px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: #ffffff;
    border: 1px solid #fed7aa;
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-link {
    padding: 13px 14px;
  }

  .hero {
    min-height: auto;
    padding: 28px 0 30px;
  }

  .hero-slide {
    min-height: auto;
    gap: 26px;
  }

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

  .hero-art,
  .hero-art img {
    min-height: 380px;
  }

  .movie-grid,
  .compact-grid,
  .category-grid,
  .category-grid.large,
  .info-grid,
  .detail-side {
    grid-template-columns: 1fr;
  }

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

  .poster-horizontal {
    min-height: 150px;
  }

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

  .detail-poster,
  .detail-poster img {
    min-height: 420px;
  }

  .filter-group {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .section {
    padding: 48px 0;
  }

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

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