:root {
  --bg: #fff8ed;
  --paper: #ffffff;
  --paper-soft: #fff4df;
  --text: #25160b;
  --muted: #7a5b3f;
  --line: rgba(245, 158, 11, 0.22);
  --orange: #f97316;
  --orange-dark: #c2410c;
  --amber: #f59e0b;
  --amber-soft: #fde68a;
  --shadow: 0 24px 60px rgba(146, 64, 14, 0.14);
  --shadow-soft: 0 12px 30px rgba(146, 64, 14, 0.10);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(251, 191, 36, 0.28), transparent 34rem),
    linear-gradient(180deg, #fffaf0 0%, #fff7ed 44%, #ffffff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  line-height: 1.65;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(249, 115, 22, 0.12);
  background: rgba(255, 248, 237, 0.82);
  backdrop-filter: blur(18px);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  box-shadow: 0 10px 28px rgba(249, 115, 22, 0.32);
}

.brand-text strong {
  display: block;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.1;
  color: transparent;
  background: linear-gradient(90deg, var(--orange-dark), var(--amber));
  -webkit-background-clip: text;
  background-clip: text;
}

.brand-text small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

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

.desktop-nav a {
  color: #60421f;
  font-weight: 700;
  transition: color 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--orange-dark);
  transform: translateY(-1px);
}

.header-search,
.inline-search,
.mobile-panel form {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search input,
.inline-search input,
.mobile-panel input,
.filter-panel input,
.filter-panel select {
  border: 1px solid rgba(249, 115, 22, 0.22);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input,
.inline-search input,
.mobile-panel input {
  width: 220px;
  padding: 10px 14px;
}

.header-search input:focus,
.inline-search input:focus,
.mobile-panel input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.14);
}

.header-search button,
.inline-search button,
.mobile-panel button,
.primary-button,
.ghost-button,
.text-button {
  border: 0;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-search button,
.inline-search button,
.mobile-panel button,
.primary-button {
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--amber));
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.24);
}

.header-search button:hover,
.inline-search button:hover,
.mobile-panel button:hover,
.primary-button:hover,
.ghost-button:hover,
.text-button:hover {
  transform: translateY(-2px);
}

.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.ghost-button.small,
.primary-button.small {
  padding: 8px 14px;
  font-size: 14px;
}

.primary-button.full,
.ghost-button.full {
  width: 100%;
  margin-top: 12px;
}

.text-button {
  display: inline-flex;
  align-items: center;
  color: var(--orange-dark);
  font-weight: 900;
}

.mobile-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  color: var(--orange-dark);
  background: transparent;
  font-size: 26px;
}

.mobile-panel {
  display: none;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px 18px;
}

.mobile-panel a {
  display: block;
  padding: 12px 0;
  border-top: 1px solid rgba(249, 115, 22, 0.12);
  font-weight: 800;
}

.hero-shell {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  background: #180d05;
}

.hero-slide {
  display: none;
  min-height: 680px;
  align-items: center;
  gap: 44px;
  padding: 92px max(24px, calc((100vw - var(--max)) / 2 + 20px)) 84px;
  color: #fff;
  isolation: isolate;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  filter: blur(22px) saturate(1.25);
  transform: scale(1.08);
  opacity: 0.36;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 22%, rgba(251, 191, 36, 0.46), transparent 26rem),
    radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.30), transparent 24rem),
    linear-gradient(110deg, rgba(24, 13, 5, 0.95) 0%, rgba(72, 32, 6, 0.78) 48%, rgba(24, 13, 5, 0.92) 100%);
}

.hero-slide.is-active {
  display: flex;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange-dark);
  background: rgba(251, 191, 36, 0.18);
  border: 1px solid rgba(249, 115, 22, 0.22);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.hero-slide .eyebrow,
.detail-hero .eyebrow,
.page-hero .eyebrow {
  color: #fff3d1;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}

.hero-copy h1,
.page-hero h1,
.detail-copy h1 {
  margin: 18px 0 18px;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 1.03;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.hero-summary,
.detail-one-line,
.page-hero p {
  max-width: 740px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 2vw, 20px);
}

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

.hero-meta span,
.movie-meta-line span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-weight: 750;
}

.hero-meta span {
  color: #fff7db;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 8px 12px;
}

.hero-meta.centered {
  justify-content: center;
}

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

.hero-poster {
  width: min(360px, 32vw);
  min-width: 280px;
  padding: 14px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.hero-poster img {
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.28), rgba(245, 158, 11, 0.34));
}

.hero-poster span {
  display: block;
  padding: 12px 4px 2px;
  text-align: center;
  color: #fff3d1;
  font-weight: 800;
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}

.hero-controls button {
  border: 0;
  color: inherit;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  cursor: pointer;
}

.hero-controls > button {
  width: 42px;
  height: 42px;
  font-size: 28px;
}

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

.hero-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  opacity: 0.58;
}

.hero-dots button.is-active {
  width: 30px;
  opacity: 1;
  background: linear-gradient(90deg, var(--orange), var(--amber));
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 74px 20px;
}

.section-tight {
  padding-top: 50px;
  padding-bottom: 34px;
}

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

.section-head h2,
.filter-panel h2,
.article-block h2,
.sticky-card h2,
.sitemap-section h2 {
  margin: 12px 0 8px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.section-head p {
  max-width: 740px;
  margin: 0;
  color: var(--muted);
}

.compact-head h2 {
  font-size: 34px;
}

.with-search {
  align-items: center;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.stat-strip div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.stat-strip strong {
  display: block;
  color: var(--orange-dark);
  font-size: 32px;
  line-height: 1;
  font-weight: 950;
}

.stat-strip span {
  color: var(--muted);
  font-weight: 700;
}

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

.category-tile,
.category-card-large {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 20px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover,
.category-card-large:hover,
.movie-card:hover,
.rank-row:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.category-covers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.category-covers img {
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.25), rgba(245, 158, 11, 0.28));
}

.category-covers.large {
  min-height: 260px;
}

.category-tile h3,
.category-card-large h2 {
  margin: 6px 0 8px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 950;
}

.category-tile p,
.category-card-large p {
  color: var(--muted);
  margin: 0 0 10px;
}

.category-tile span:not(.eyebrow) {
  color: var(--orange-dark);
  font-weight: 900;
}

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

.amber-section {
  max-width: none;
  padding-left: max(20px, calc((100vw - var(--max)) / 2 + 20px));
  padding-right: max(20px, calc((100vw - var(--max)) / 2 + 20px));
  background:
    radial-gradient(circle at 20% 20%, rgba(251, 191, 36, 0.22), transparent 24rem),
    linear-gradient(180deg, rgba(255, 245, 220, 0.72), rgba(255, 250, 240, 0.0));
}

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

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

.movie-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.poster-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.22), rgba(245, 158, 11, 0.28));
}

.poster-wrap img {
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transition: transform 0.28s ease;
}

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

.year-badge,
.rank-badge {
  position: absolute;
  top: 12px;
  z-index: 2;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  padding: 5px 9px;
  background: rgba(0, 0, 0, 0.54);
  backdrop-filter: blur(10px);
}

.year-badge {
  left: 12px;
}

.rank-badge {
  right: 12px;
  background: linear-gradient(90deg, var(--orange), var(--amber));
}

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

.movie-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.movie-meta-line span {
  color: var(--orange-dark);
  background: rgba(249, 115, 22, 0.10);
  padding: 4px 8px;
  font-size: 12px;
}

.movie-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 950;
}

.movie-card p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
}

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

.tag-row span {
  color: #7c2d12;
  background: #ffedd5;
  padding: 4px 8px;
  font-size: 12px;
}

.page-hero {
  max-width: var(--max);
  margin: 28px auto 0;
  padding: 72px 24px;
  text-align: center;
  color: #fff;
  border-radius: 34px;
  background:
    radial-gradient(circle at 24% 24%, rgba(255, 255, 255, 0.20), transparent 20rem),
    linear-gradient(135deg, #c2410c 0%, #f97316 46%, #f59e0b 100%);
  box-shadow: var(--shadow);
}

.page-hero h1 {
  margin-left: auto;
  margin-right: auto;
}

.page-hero p {
  margin: 0 auto;
}

.page-hero .stat-strip {
  color: var(--text);
  text-align: left;
}

.two-column-layout {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 28px;
  align-items: start;
}

.filter-panel,
.sticky-card,
.article-block,
.player-section {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

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

.filter-panel h2 {
  font-size: 24px;
}

.filter-panel label {
  display: grid;
  gap: 8px;
  margin: 14px 0;
  color: var(--muted);
  font-weight: 800;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  padding: 11px 12px;
  border-radius: 14px;
}

.filter-count {
  color: var(--muted);
}

.filter-count strong {
  color: var(--orange-dark);
}

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

.rank-row {
  display: grid;
  grid-template-columns: 72px 92px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-number {
  color: var(--orange-dark);
  font-size: 28px;
  font-weight: 950;
  text-align: center;
}

.rank-thumb img {
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.22), rgba(245, 158, 11, 0.28));
}

.rank-info h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 950;
}

.rank-info p {
  margin: 0 0 8px;
  color: var(--muted);
}

.breadcrumb {
  max-width: var(--max);
  margin: 24px auto 16px;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-weight: 750;
}

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

.detail-hero {
  position: relative;
  overflow: hidden;
  max-width: var(--max);
  margin: 0 auto;
  padding: 42px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 34px;
  color: #fff;
  border-radius: 34px;
  background: #1c0d03;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  filter: blur(24px) saturate(1.2);
  transform: scale(1.08);
  opacity: 0.34;
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, rgba(24, 13, 5, 0.94), rgba(120, 53, 15, 0.78), rgba(24, 13, 5, 0.88));
}

.detail-poster img {
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.35);
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.25), rgba(245, 158, 11, 0.32));
}

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

.detail-tags span {
  background: rgba(255, 255, 255, 0.14);
  color: #fff8dc;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: start;
}

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

.player-section,
.article-block,
.sticky-card {
  padding: 22px;
}

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

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

.player-start {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  color: #fff;
  background:
    radial-gradient(circle at center, rgba(249, 115, 22, 0.34), rgba(0, 0, 0, 0.30)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.38));
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

.player-start span {
  width: 76px;
  height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  box-shadow: 0 20px 50px rgba(249, 115, 22, 0.36);
}

.player-shell.is-playing .player-start {
  display: none;
}

.player-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.article-block h2 {
  font-size: 28px;
}

.article-block p {
  margin: 0;
  color: #4c2f18;
  font-size: 17px;
}

.info-table {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px 16px;
}

.info-table dt {
  color: var(--muted);
  font-weight: 900;
}

.info-table dd {
  margin: 0;
  color: var(--text);
  font-weight: 750;
}

.detail-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.detail-nav-links .ghost-button {
  color: var(--orange-dark);
  border-color: rgba(249, 115, 22, 0.25);
  background: rgba(255, 237, 213, 0.76);
}

.detail-sidebar {
  position: sticky;
  top: 94px;
}

.sticky-card p {
  color: var(--muted);
}

.sitemap-section {
  display: grid;
  gap: 18px;
}

.sitemap-list {
  columns: 2;
  margin: 0;
  padding-left: 20px;
}

.sitemap-list li {
  break-inside: avoid;
  margin: 8px 0;
}

.sitemap-list a {
  color: var(--orange-dark);
  font-weight: 750;
}

.movie-sitemap {
  columns: 3;
}

.site-footer {
  color: #fff6df;
  background:
    radial-gradient(circle at 10% 20%, rgba(245, 158, 11, 0.25), transparent 22rem),
    linear-gradient(135deg, #78350f, #431407);
  margin-top: 60px;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 52px 20px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
}

.footer-grid p,
.footer-grid a {
  color: #fdecc8;
}

.footer-grid a {
  display: block;
  margin: 8px 0;
}

.footer-grid h3 {
  margin: 0 0 12px;
  color: #fff;
}

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 20px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #fbd99d;
}

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

@media (max-width: 1100px) {
  .header-search {
    display: none;
  }

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

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

  .detail-sidebar {
    position: static;
  }
}

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

  .mobile-toggle {
    display: inline-flex;
  }

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

  .hero-slide.is-active,
  .detail-hero,
  .two-column-layout,
  .footer-grid,
  .category-grid,
  .category-tile,
  .category-card-large {
    grid-template-columns: 1fr;
  }

  .hero-slide.is-active {
    display: grid;
  }

  .hero-shell,
  .hero-slide {
    min-height: auto;
  }

  .hero-slide {
    padding-top: 70px;
    padding-bottom: 96px;
  }

  .hero-poster {
    width: 100%;
    min-width: 0;
    max-width: 360px;
  }

  .section-head,
  .with-search {
    display: grid;
    align-items: start;
  }

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

  .filter-panel {
    position: static;
  }

  .rank-row {
    grid-template-columns: 52px 76px 1fr;
  }

  .rank-row .text-button {
    grid-column: 2 / -1;
  }

  .movie-sitemap,
  .sitemap-list {
    columns: 1;
  }
}

@media (max-width: 620px) {
  .header-inner {
    padding: 12px 16px;
  }

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

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

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

  .movie-card h3 {
    font-size: 17px;
  }

  .movie-card p,
  .tag-row {
    display: none;
  }

  .page-hero {
    margin: 16px 12px 0;
    padding: 50px 18px;
    border-radius: 24px;
  }

  .section {
    padding: 50px 14px;
  }

  .detail-hero {
    margin: 0 12px;
    padding: 22px;
    border-radius: 24px;
  }

  .detail-poster {
    max-width: 260px;
  }

  .stat-strip {
    grid-template-columns: 1fr;
  }

  .inline-search {
    display: grid;
  }

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