:root {
  --color-bg: #f8f3ea;
  --color-bg-soft: #fff9ef;
  --color-card: #ffffff;
  --color-card-muted: #fff7ed;
  --color-text: #221b14;
  --color-muted: #786553;
  --color-border: rgba(180, 83, 9, 0.18);
  --color-primary: #b45309;
  --color-primary-dark: #92400e;
  --color-primary-light: #f59e0b;
  --color-accent: #ea580c;
  --shadow-soft: 0 18px 45px rgba(120, 53, 15, 0.12);
  --shadow-card: 0 12px 30px rgba(120, 53, 15, 0.10);
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  background:
    radial-gradient(circle at top left, rgba(251, 191, 36, 0.28), transparent 34rem),
    linear-gradient(135deg, #faf1df 0%, #fffaf2 48%, #f5efe5 100%);
  min-height: 100vh;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 247, 237, 0.92);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(18px);
}

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

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

.brand-mark {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  box-shadow: 0 12px 24px rgba(180, 83, 9, 0.28);
}

.brand-text strong {
  display: block;
  font-size: 22px;
  line-height: 1.1;
  color: var(--color-primary-dark);
  letter-spacing: -0.02em;
}

.brand-text small {
  display: block;
  margin-top: 3px;
  color: var(--color-primary);
  font-size: 12px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #6b3d14;
  font-weight: 650;
}

.desktop-nav a {
  padding: 10px 6px;
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--color-accent);
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  color: var(--color-primary-dark);
  background: rgba(245, 158, 11, 0.12);
  cursor: pointer;
}

.mobile-toggle span,
.mobile-toggle span::before,
.mobile-toggle span::after {
  width: 20px;
  height: 2px;
  display: block;
  margin: 0 auto;
  content: "";
  background: currentColor;
  border-radius: 999px;
}

.mobile-toggle span::before {
  transform: translateY(-7px);
}

.mobile-toggle span::after {
  transform: translateY(5px);
}

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

.mobile-nav.is-open {
  display: grid;
  gap: 10px;
}

.mobile-nav a {
  padding: 12px 16px;
  border-radius: 14px;
  color: #6b3d14;
  background: rgba(255, 255, 255, 0.54);
}

.main-content {
  min-height: 70vh;
}

.hero {
  padding: 36px 0 56px;
}

.hero-frame {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  min-height: 520px;
  background:
    radial-gradient(circle at 20% 20%, rgba(251, 191, 36, 0.34), transparent 18rem),
    linear-gradient(135deg, #7c2d12 0%, #b45309 45%, #f97316 100%);
  box-shadow: 0 28px 70px rgba(124, 45, 18, 0.24);
}

.hero-frame::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.08)),
    radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.16), transparent 22rem);
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  align-items: center;
  gap: 44px;
  padding: 54px;
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.hero-copy {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #ffedd5;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  font-weight: 700;
}

.hero-copy h1,
.hero-copy h2 {
  margin: 0 0 18px;
  max-width: 740px;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-copy p {
  max-width: 660px;
  margin: 0 0 24px;
  color: #ffedd5;
  font-size: 18px;
  line-height: 1.8;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #7c2d12;
  background: #ffedd5;
  font-size: 13px;
  font-weight: 750;
}

.hero-actions,
.card-actions,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  box-shadow: 0 14px 26px rgba(180, 83, 9, 0.25);
}

.button-light {
  color: #7c2d12;
  background: rgba(255, 255, 255, 0.86);
}

.button-ghost {
  border: 1px solid rgba(180, 83, 9, 0.24);
  color: var(--color-primary-dark);
  background: rgba(255, 255, 255, 0.56);
}

.hero-poster {
  position: relative;
  z-index: 2;
  overflow: hidden;
  min-height: 410px;
  border: 12px solid rgba(255, 255, 255, 0.22);
  border-radius: 30px;
  background: linear-gradient(135deg, #fed7aa, #fff7ed);
  box-shadow: 0 30px 70px rgba(67, 20, 7, 0.34);
}

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

.hero-poster:hover img {
  transform: scale(1.05);
}

.hero-controls {
  position: absolute;
  left: 54px;
  bottom: 34px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-dot {
  width: 34px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
  width: 54px;
  background: #fff7ed;
}

.hero-search {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  width: min(620px, 100%);
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.hero-search input {
  min-width: 0;
  border: 0;
  outline: 0;
  border-radius: 12px;
  padding: 0 14px;
  color: #431407;
  background: rgba(255, 255, 255, 0.92);
}

.section {
  padding: 54px 0;
}

.section-muted {
  background: rgba(255, 255, 255, 0.44);
  border-block: 1px solid rgba(180, 83, 9, 0.12);
}

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

.section-title {
  margin: 0;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.12;
  color: #3b220f;
  letter-spacing: -0.03em;
}

.section-subtitle {
  max-width: 720px;
  margin: 8px 0 0;
  color: var(--color-muted);
  line-height: 1.8;
}

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

.movie-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(180, 83, 9, 0.13);
  border-radius: 18px;
  background: var(--color-card);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(234, 88, 12, 0.34);
  box-shadow: 0 20px 42px rgba(120, 53, 15, 0.18);
}

.movie-card.is-hidden {
  display: none;
}

.poster {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  margin: 0;
  background: linear-gradient(135deg, #fef3c7, #fed7aa);
}

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

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

.poster-badge,
.rank-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  padding: 5px 9px;
  border-radius: 999px;
  color: #fff;
  background: rgba(234, 88, 12, 0.94);
  font-size: 12px;
  font-weight: 800;
}

.play-mark {
  position: absolute;
  left: 10px;
  bottom: 10px;
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  transform: translateY(6px);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card:hover .play-mark {
  opacity: 1;
  transform: translateY(0);
}

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

.movie-card h3 {
  display: -webkit-box;
  overflow: hidden;
  min-height: 42px;
  margin: 0;
  color: #24170d;
  font-size: 15px;
  line-height: 1.4;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-card:hover h3 {
  color: var(--color-accent);
}

.movie-meta,
.movie-one-line {
  margin: 0;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.5;
}

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

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

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

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

.category-card {
  overflow: hidden;
  min-height: 220px;
  border: 1px solid rgba(180, 83, 9, 0.14);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 237, 213, 0.72));
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.category-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  height: 94px;
  padding: 10px 10px 0;
}

.thumb-cell {
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(135deg, #fef3c7, #fdba74);
}

.thumb-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-body {
  padding: 18px;
}

.category-body h3 {
  margin: 0 0 8px;
  color: #3b220f;
  font-size: 20px;
}

.category-body p {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.7;
}

.category-count {
  display: inline-flex;
  margin-top: 14px;
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 800;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 58px 96px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 12px;
  border: 1px solid rgba(180, 83, 9, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 22px rgba(120, 53, 15, 0.08);
}

.rank-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  font-weight: 900;
}

.rank-cover {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  background: #ffedd5;
}

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

.rank-info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.rank-info p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.6;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) repeat(4, minmax(130px, 170px));
  gap: 12px;
  padding: 16px;
  margin-bottom: 26px;
  border: 1px solid rgba(180, 83, 9, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-card);
}

.filter-panel input,
.filter-panel select {
  min-height: 46px;
  width: 100%;
  border: 1px solid rgba(180, 83, 9, 0.18);
  border-radius: 14px;
  outline: 0;
  padding: 0 13px;
  color: #3b220f;
  background: #fffaf3;
}

.filter-panel input:focus,
.filter-panel select:focus {
  border-color: rgba(234, 88, 12, 0.5);
  box-shadow: 0 0 0 4px rgba(251, 146, 60, 0.15);
}

.results-line {
  margin: -12px 0 22px;
  color: var(--color-muted);
  font-size: 14px;
}

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

.page-hero-card {
  overflow: hidden;
  border-radius: 28px;
  padding: 44px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.18), transparent 18rem),
    linear-gradient(135deg, #78350f, #c2410c 58%, #f59e0b);
  box-shadow: var(--shadow-soft);
}

.page-hero-card h1 {
  margin: 0 0 12px;
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: -0.05em;
}

.page-hero-card p {
  max-width: 820px;
  margin: 0;
  color: #ffedd5;
  font-size: 17px;
  line-height: 1.8;
}

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

.breadcrumbs a {
  color: var(--color-primary-dark);
  font-weight: 700;
}

.detail-page {
  padding: 34px 0 60px;
}

.detail-shell {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.detail-cover {
  position: sticky;
  top: 104px;
  overflow: hidden;
  border-radius: 28px;
  background: #ffedd5;
  box-shadow: var(--shadow-soft);
}

.detail-cover img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.detail-panel,
.player-card,
.text-card,
.related-card {
  border: 1px solid rgba(180, 83, 9, 0.12);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-card);
}

.detail-panel {
  padding: 30px;
}

.detail-panel h1 {
  margin: 0 0 14px;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.05;
  color: #2d1a0b;
  letter-spacing: -0.05em;
}

.detail-lead {
  margin: 18px 0 24px;
  color: #5f3d21;
  font-size: 18px;
  line-height: 1.8;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.detail-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  color: #7c2d12;
  background: #ffedd5;
  font-size: 13px;
  font-weight: 750;
}

.player-card {
  padding: 18px;
  margin-top: 24px;
}

.player-card h2,
.text-card h2,
.related-card h2 {
  margin: 0 0 16px;
  color: #2d1a0b;
  font-size: 24px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  background: radial-gradient(circle at center, #3b220f, #09090b 70%);
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 8px;
  border: 0;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.68)),
    radial-gradient(circle at center, rgba(251, 146, 60, 0.2), transparent 20rem);
  cursor: pointer;
}

.player-overlay.is-hidden {
  display: none;
}

.player-icon {
  display: inline-grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  color: #7c2d12;
  background: #fff7ed;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
  font-size: 30px;
}

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

.player-overlay em {
  color: #fed7aa;
  font-style: normal;
}

.player-message {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--color-muted);
  font-size: 14px;
}

.text-card {
  padding: 28px;
  margin-top: 24px;
}

.text-card p {
  margin: 0 0 18px;
  color: #4a3320;
  font-size: 16px;
  line-height: 1.9;
}

.text-card p:last-child {
  margin-bottom: 0;
}

.review-box {
  padding: 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff7ed, #ffedd5);
}

.related-card {
  padding: 28px;
  margin-top: 24px;
}

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

.site-footer {
  margin-top: 36px;
  color: #ffedd5;
  background: linear-gradient(135deg, #78350f, #9a3412);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 30px;
  padding: 46px 0 34px;
}

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

.footer-grid p,
.footer-grid a {
  color: #fed7aa;
  line-height: 1.8;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255, 237, 213, 0.22);
  color: #fed7aa;
  text-align: center;
  font-size: 13px;
}

.poster.is-missing,
.hero-poster.is-missing,
.detail-cover.is-missing,
.thumb-cell.is-missing,
.rank-cover.is-missing {
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 14px;
  color: #7c2d12;
  text-align: center;
  background:
    radial-gradient(circle at 25% 15%, rgba(251, 191, 36, 0.42), transparent 8rem),
    linear-gradient(135deg, #fff7ed, #fed7aa);
}

.poster.is-missing img,
.hero-poster.is-missing img,
.detail-cover.is-missing img,
.thumb-cell.is-missing img,
.rank-cover.is-missing img {
  display: none;
}

.poster.is-missing::after,
.hero-poster.is-missing::after,
.detail-cover.is-missing::after,
.thumb-cell.is-missing::after,
.rank-cover.is-missing::after {
  content: attr(data-fallback-title);
  font-weight: 850;
  line-height: 1.5;
}

.empty-message {
  display: none;
  padding: 32px;
  border-radius: 20px;
  color: var(--color-muted);
  text-align: center;
  background: rgba(255, 255, 255, 0.75);
}

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

@media (max-width: 1100px) {
  .movie-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

  .detail-shell {
    grid-template-columns: 260px minmax(0, 1fr);
  }
}

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

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

  .brand {
    min-width: auto;
  }

  .brand-text small {
    display: none;
  }

  .hero-frame {
    min-height: 720px;
    border-radius: 26px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 32px 24px 76px;
  }

  .hero-poster {
    min-height: 260px;
    border-width: 8px;
  }

  .hero-poster img {
    min-height: 260px;
  }

  .hero-controls {
    left: 24px;
    bottom: 24px;
  }

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

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

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

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

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

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

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

  .detail-cover {
    position: relative;
    top: auto;
    max-width: 360px;
    margin: 0 auto;
  }

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

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

  .nav-bar {
    min-height: 66px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

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

  .hero {
    padding-top: 18px;
  }

  .hero-frame {
    min-height: 700px;
  }

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

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

  .category-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

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

  .page-hero-card,
  .detail-panel,
  .text-card,
  .related-card {
    padding: 24px;
  }

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