:root {
  --bg: #fff8ed;
  --paper: #ffffff;
  --paper-warm: #fff3dc;
  --ink: #3f2608;
  --muted: #8a5a19;
  --deep: #3b1702;
  --brown: #7c2d12;
  --amber: #d97706;
  --amber-dark: #92400e;
  --gold: #f59e0b;
  --border: rgba(146, 64, 14, 0.16);
  --shadow: 0 18px 45px rgba(91, 33, 6, 0.16);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(circle at top left, rgba(245, 158, 11, 0.16), transparent 28rem), var(--bg);
  color: var(--ink);
  font-family: "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.65;
}

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

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(90deg, #431407, #7c2d12 52%, #431407);
  border-bottom: 2px solid rgba(245, 158, 11, 0.72);
  box-shadow: 0 12px 32px rgba(67, 20, 7, 0.25);
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fffbeb;
  font-weight: 900;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  color: #431407;
  background: linear-gradient(135deg, #fde68a, #f59e0b);
  box-shadow: inset 0 0 0 2px rgba(255, 251, 235, 0.32), 0 10px 24px rgba(245, 158, 11, 0.26);
  font-family: "KaiTi", "STKaiti", serif;
  font-size: 24px;
}

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.main-nav a {
  color: #fde68a;
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 14px;
  transition: 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: #431407;
  background: #fde68a;
}

.search-form {
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-form input {
  width: 220px;
  height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(253, 230, 138, 0.5);
  color: #fffbeb;
  background: rgba(67, 20, 7, 0.48);
  outline: none;
}

.search-form input::placeholder {
  color: rgba(253, 230, 138, 0.78);
}

.search-form button,
.primary-btn,
.secondary-btn,
.ghost-btn {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.search-form button,
.primary-btn {
  color: #fff7ed;
  background: linear-gradient(135deg, #f59e0b, #b45309);
  box-shadow: 0 14px 30px rgba(180, 83, 9, 0.24);
}

.search-form button {
  height: 40px;
  padding: 0 17px;
}

.primary-btn,
.secondary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 24px;
}

.secondary-btn {
  color: #fff7ed;
  border: 1px solid rgba(253, 230, 138, 0.35);
  background: rgba(67, 20, 7, 0.42);
  backdrop-filter: blur(10px);
}

.ghost-btn {
  color: var(--amber-dark);
  background: #fff7ed;
  border: 1px solid var(--border);
}

.search-form button:hover,
.primary-btn:hover,
.secondary-btn:hover,
.ghost-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(120, 53, 15, 0.24);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 0;
  border-radius: 14px;
  background: rgba(253, 230, 138, 0.15);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #fde68a;
}

.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #431407;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) saturate(1.05);
  transform: scale(1.02);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(67, 20, 7, 0.94), rgba(67, 20, 7, 0.62) 42%, rgba(67, 20, 7, 0.22)), linear-gradient(0deg, rgba(67, 20, 7, 0.9), transparent 52%);
}

.hero-inner {
  position: relative;
  z-index: 3;
  min-height: 620px;
  display: flex;
  align-items: center;
}

.hero-copy {
  max-width: 720px;
  color: #fffbeb;
  padding: 96px 0 118px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #fff7ed;
  background: rgba(217, 119, 6, 0.88);
  box-shadow: 0 10px 28px rgba(217, 119, 6, 0.28);
  backdrop-filter: blur(12px);
  font-weight: 800;
}

.hero h1,
.hero h2 {
  margin: 0 0 18px;
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-shadow: 0 5px 24px rgba(0, 0, 0, 0.45);
}

.hero p {
  margin: 0 0 26px;
  max-width: 660px;
  color: #fde68a;
  font-size: clamp(17px, 2vw, 22px);
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.35);
}

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

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

.tag,
.mini-tag,
.info-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-weight: 700;
}

.tag {
  padding: 8px 14px;
  color: #fffbeb;
  background: rgba(120, 53, 15, 0.72);
  border: 1px solid rgba(253, 230, 138, 0.16);
  backdrop-filter: blur(10px);
}

.mini-tag {
  padding: 4px 9px;
  color: #92400e;
  background: #ffedd5;
  font-size: 12px;
}

.info-pill {
  padding: 7px 12px;
  color: #78350f;
  background: #fef3c7;
  border: 1px solid rgba(217, 119, 6, 0.18);
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 5;
  width: min(1180px, calc(100% - 32px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.hero-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(253, 230, 138, 0.48);
  cursor: pointer;
}

.hero-dot.active {
  width: 36px;
  background: #f59e0b;
}

.hero-arrows {
  display: flex;
  gap: 10px;
}

.hero-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(253, 230, 138, 0.28);
  border-radius: 50%;
  color: #fffbeb;
  background: rgba(67, 20, 7, 0.52);
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.section {
  padding: 72px 0;
}

.section.warm {
  background: linear-gradient(135deg, #fff7ed, #fffbeb);
}

.section.paper {
  background: #ffffff;
}

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

.section-head.center {
  display: block;
  text-align: center;
}

.section-head h1,
.section-head h2 {
  margin: 0 0 8px;
  color: var(--deep);
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.18;
}

.section-head p,
.lead {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

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

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

.movie-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--border);
  box-shadow: 0 10px 28px rgba(120, 53, 15, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-cover {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #7c2d12;
}

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

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

.card-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.66), transparent 64%);
  transition: opacity 0.3s ease;
}

.movie-card:hover .card-cover::after {
  opacity: 1;
}

.card-year {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 4px 9px;
  border-radius: 999px;
  color: #fff7ed;
  background: rgba(217, 119, 6, 0.92);
  font-size: 12px;
  font-weight: 800;
}

.play-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%) scale(0.75);
  opacity: 0;
  border-radius: 50%;
  color: #fff7ed;
  background: rgba(217, 119, 6, 0.92);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.32);
  transition: 0.3s ease;
}

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

.card-body {
  padding: 16px;
}

.card-body h2 {
  margin: 0 0 6px;
  color: var(--deep);
  font-size: 18px;
  line-height: 1.35;
}

.card-body h2 a:hover {
  color: var(--amber-dark);
}

.card-meta,
.card-desc {
  margin: 0;
}

.card-meta {
  color: var(--amber-dark);
  font-size: 13px;
  font-weight: 700;
}

.card-desc {
  display: -webkit-box;
  min-height: 45px;
  margin: 8px 0 12px;
  overflow: hidden;
  color: #7c4a12;
  font-size: 14px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

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

.category-tile {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow);
  background: #7c2d12;
}

.category-tile img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.category-tile:hover img {
  transform: scale(1.08);
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(67, 20, 7, 0.92), rgba(67, 20, 7, 0.32));
}

.category-copy {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 22px;
  color: #fffbeb;
}

.category-copy h2,
.category-copy h3 {
  margin: 0 0 8px;
  font-size: 24px;
}

.category-copy p {
  margin: 0;
  color: #fde68a;
  font-size: 14px;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 58px 96px 1fr;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 10px 26px rgba(120, 53, 15, 0.07);
}

.rank-num {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  color: #fff7ed;
  background: linear-gradient(135deg, #f59e0b, #92400e);
  font-weight: 900;
}

.rank-cover {
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 14px;
  background: #7c2d12;
}

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

.rank-body h2 {
  margin: 0 0 4px;
  color: var(--deep);
  font-size: 18px;
}

.rank-body p,
.rank-body span {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

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

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

.breadcrumb a:hover {
  color: #ffffff;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  color: #fffbeb;
  background: #431407;
}

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

.page-hero::before,
.detail-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 20%, rgba(245, 158, 11, 0.36), transparent 28rem), linear-gradient(135deg, rgba(67, 20, 7, 0.98), rgba(124, 45, 18, 0.9));
}

.page-hero .container,
.detail-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1,
.detail-info h1 {
  margin: 0 0 14px;
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.12;
}

.page-hero p,
.detail-info p {
  max-width: 780px;
  margin: 0;
  color: #fde68a;
  font-size: 18px;
}

.filter-panel {
  margin: 32px 0;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(120, 53, 15, 0.08);
}

.filter-panel input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(146, 64, 14, 0.2);
  border-radius: 16px;
  outline: none;
  color: var(--ink);
  background: #fffbeb;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.filter-chips button {
  border: 1px solid rgba(146, 64, 14, 0.2);
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--amber-dark);
  background: #fff7ed;
  cursor: pointer;
}

.filter-chips button.active,
.filter-chips button:hover {
  color: #fff7ed;
  background: var(--amber-dark);
}

.detail-bg {
  position: absolute;
  inset: 0;
}

.detail-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(3px) brightness(0.42);
  transform: scale(1.04);
}

.detail-hero-inner {
  min-height: 560px;
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 42px;
  align-items: center;
  padding: 70px 0;
}

.detail-poster {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.36);
  background: #7c2d12;
}

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

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

.player-section {
  padding: 64px 0 36px;
  background: #180b04;
  color: #fffbeb;
}

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

.player-heading h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 42px);
}

.player-heading p {
  margin: 0;
  color: #fde68a;
}

.player-frame {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #000000;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.52);
}

.player-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: #000000;
}

.watch-cover {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #fffbeb;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.22));
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.watch-button {
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff7ed;
  background: linear-gradient(135deg, #f59e0b, #b45309);
  box-shadow: 0 18px 45px rgba(217, 119, 6, 0.38);
  font-size: 34px;
  padding-left: 5px;
}

.detail-main {
  padding: 64px 0;
}

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

.detail-panel,
.related-panel {
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(120, 53, 15, 0.08);
}

.detail-panel {
  padding: 30px;
}

.detail-panel h2,
.related-panel h2 {
  margin: 0 0 18px;
  color: var(--deep);
  font-size: 26px;
}

.detail-panel p {
  margin: 0 0 20px;
  color: #6f4210;
  font-size: 17px;
  text-align: justify;
}

.review-box {
  margin-top: 28px;
  padding: 24px;
  border-left: 5px solid var(--amber);
  border-radius: 18px;
  background: linear-gradient(135deg, #fff7ed, #fef3c7);
}

.related-panel {
  position: sticky;
  top: 100px;
  padding: 22px;
}

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

.related-item {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 16px;
  transition: background 0.25s ease;
}

.related-item:hover {
  background: #fff7ed;
}

.related-item img {
  width: 108px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 13px;
  background: #7c2d12;
}

.related-item h3 {
  margin: 0 0 4px;
  font-size: 15px;
  line-height: 1.35;
}

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

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

.compact-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  min-height: 156px;
  background: #7c2d12;
}

.compact-card img {
  width: 100%;
  height: 156px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.compact-card span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 30px 12px 12px;
  color: #fffbeb;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), transparent);
  font-weight: 800;
  font-size: 14px;
}

.site-footer {
  color: #fde68a;
  background: linear-gradient(135deg, #431407, #1c0a02);
  border-top: 2px solid rgba(245, 158, 11, 0.4);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 32px;
  padding: 48px 0;
}

.footer-brand {
  margin-bottom: 14px;
  font-size: 21px;
}

.site-footer p {
  margin: 0;
  color: #fcd34d;
}

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

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

.footer-links a {
  color: #fde68a;
}

.footer-links a:hover {
  color: #ffffff;
}

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

.footer-bottom {
  padding: 18px;
  text-align: center;
  color: #fcd34d;
  border-top: 1px solid rgba(253, 230, 138, 0.12);
}

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

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

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

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

  .related-panel {
    position: static;
  }
}

@media (max-width: 900px) {
  .nav-container {
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    order: 5;
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 18px;
    background: rgba(67, 20, 7, 0.72);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    text-align: center;
  }

  .top-search {
    order: 6;
    flex-basis: 100%;
    display: none;
  }

  .top-search.open {
    display: flex;
  }

  .top-search input {
    flex: 1;
    width: auto;
  }

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

  .detail-poster {
    width: min(300px, 76vw);
  }

  .rank-list {
    grid-template-columns: 1fr;
  }
}

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

  .hero,
  .hero-inner {
    min-height: 580px;
  }

  .hero-copy {
    padding: 70px 0 120px;
  }

  .hero-controls {
    align-items: flex-start;
    flex-direction: column;
  }

  .section {
    padding: 52px 0;
  }

  .section-head {
    display: block;
  }

  .movie-grid,
  .movie-grid.dense,
  .category-grid,
  .compact-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .card-body {
    padding: 12px;
  }

  .card-body h2 {
    font-size: 16px;
  }

  .rank-item {
    grid-template-columns: 44px 82px 1fr;
    gap: 10px;
  }

  .detail-panel {
    padding: 20px;
  }

  .related-item {
    grid-template-columns: 92px 1fr;
  }

  .related-item img {
    width: 92px;
  }

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

@media (max-width: 430px) {
  .movie-grid,
  .movie-grid.dense,
  .category-grid,
  .compact-row {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .primary-btn,
  .secondary-btn,
  .ghost-btn {
    width: 100%;
  }
}
