:root {
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-200: #fde68a;
  --amber-300: #fcd34d;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --amber-800: #92400e;
  --amber-900: #78350f;
  --orange-50: #fff7ed;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --orange-700: #c2410c;
  --stone-50: #fafaf9;
  --stone-100: #f5f5f4;
  --stone-200: #e7e5e4;
  --stone-700: #44403c;
  --stone-800: #292524;
  --stone-900: #1c1917;
  --shadow-soft: 0 24px 60px rgba(120, 53, 15, 0.12);
  --shadow-card: 0 16px 36px rgba(120, 53, 15, 0.12);
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--stone-900);
  background: var(--stone-50);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(253, 230, 138, 0.7);
  background: rgba(255, 251, 235, 0.92);
  backdrop-filter: blur(16px);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-mark,
.footer-logo span {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: white;
  background: linear-gradient(135deg, var(--amber-600), var(--orange-600));
  box-shadow: 0 10px 24px rgba(217, 119, 6, 0.28);
}

.logo-copy {
  display: grid;
  line-height: 1.15;
}

.logo-copy strong {
  font-size: 22px;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, var(--amber-900), var(--orange-700));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo-copy small {
  color: var(--amber-700);
  font-size: 12px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
}

.desktop-nav a {
  color: var(--amber-800);
  font-weight: 700;
  font-size: 14px;
  transition: color 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--orange-600);
}

.nav-search {
  position: relative;
  width: 260px;
  flex-shrink: 0;
}

.search-box,
.filter-box {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  padding: 8px 14px;
  box-shadow: 0 8px 20px rgba(120, 53, 15, 0.06);
}

.search-box span,
.filter-box span {
  color: var(--amber-700);
  font-size: 13px;
  font-weight: 800;
}

.search-box input,
.filter-box input,
.hero-search-box input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--stone-900);
  background: transparent;
}

.search-results {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 10px);
  display: none;
  max-height: 410px;
  overflow: auto;
  border: 1px solid rgba(245, 158, 11, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-card);
  padding: 10px;
}

.search-results.is-open {
  display: grid;
  gap: 8px;
}

.search-result-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 10px;
  align-items: center;
  border-radius: 12px;
  padding: 8px;
  transition: background 0.2s ease;
}

.search-result-item:hover {
  background: var(--amber-50);
}

.search-result-thumb {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--amber-200), var(--orange-500));
}

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

.search-result-item strong {
  display: block;
  color: var(--stone-900);
  font-size: 14px;
  line-height: 1.3;
}

.search-result-item span {
  color: var(--stone-700);
  font-size: 12px;
}

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  color: var(--amber-900);
  background: var(--amber-100);
}

.mobile-nav {
  display: none;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 16px;
  border-top: 1px solid rgba(245, 158, 11, 0.18);
}

.mobile-nav a {
  display: block;
  padding: 12px 8px;
  color: var(--amber-900);
  font-weight: 700;
}

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

.hero-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--amber-100), var(--orange-50) 48%, var(--amber-50));
  padding: 56px 0 42px;
}

.hero-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  filter: blur(20px);
  opacity: 0.48;
  pointer-events: none;
}

.hero-glow-a {
  top: -120px;
  right: 7%;
  background: rgba(249, 115, 22, 0.24);
}

.hero-glow-b {
  bottom: -150px;
  left: 5%;
  background: rgba(245, 158, 11, 0.26);
}

.hero-shell,
.content-section,
.footer-shell,
.page-hero-inner,
.detail-shell,
.player-section {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-topline span,
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid rgba(245, 158, 11, 0.24);
  border-radius: 999px;
  color: var(--amber-800);
  background: rgba(255, 255, 255, 0.6);
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 800;
}

.hero-slider {
  position: relative;
  min-height: 520px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.72fr);
  gap: 42px;
  align-items: center;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.hero-copy h1 {
  max-width: 820px;
  margin: 18px 0 18px;
  color: var(--amber-900);
  font-size: clamp(36px, 7vw, 72px);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.hero-desc {
  max-width: 760px;
  color: var(--amber-800);
  font-size: clamp(17px, 2.3vw, 22px);
}

.hero-tags,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hero-tags span,
.tag-row span {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--amber-800);
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
}

.hero-actions,
.detail-actions,
.category-tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.primary-button,
.ghost-button,
.text-button,
.section-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
  color: white;
  background: linear-gradient(135deg, var(--amber-600), var(--orange-600));
  box-shadow: 0 14px 30px rgba(217, 119, 6, 0.28);
}

.ghost-button,
.section-more {
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--amber-800);
  background: rgba(255, 255, 255, 0.72);
}

.text-button {
  color: var(--amber-900);
}

.primary-button:hover,
.ghost-button:hover,
.text-button:hover,
.section-more:hover {
  transform: translateY(-2px);
}

.hero-art {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(145deg, var(--amber-300), var(--orange-600));
  box-shadow: 0 34px 90px rgba(120, 53, 15, 0.2);
}

.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.48));
  z-index: 3;
}

.hero-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  transition: transform 0.6s ease;
}

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

.hero-art-title {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  color: white;
  z-index: 4;
  font-size: 24px;
  font-weight: 900;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

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

.hero-dot {
  width: 30px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(180, 83, 9, 0.25);
}

.hero-dot.is-active {
  background: var(--orange-600);
}

.hero-search-panel {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  align-items: center;
  margin-top: 30px;
  border: 1px solid rgba(245, 158, 11, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: var(--shadow-soft);
  padding: 18px;
}

.hero-search-copy strong,
.hero-search-copy span {
  display: block;
}

.hero-search-copy strong {
  color: var(--amber-900);
  font-size: 20px;
}

.hero-search-copy span {
  color: var(--amber-700);
}

.hero-search-box {
  position: relative;
}

.hero-search-box input {
  height: 52px;
  border: 1px solid rgba(245, 158, 11, 0.22);
  border-radius: 999px;
  background: white;
  padding: 0 20px;
}

.hero-search-results {
  top: calc(100% + 8px);
}

.hero-category-pills,
.hero-mini-strip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 18px 2px 2px;
}

.hero-category-pills a {
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--amber-800);
  padding: 10px 16px;
  font-weight: 900;
}

.hero-mini-card {
  flex: 0 0 210px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(245, 158, 11, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  padding: 10px;
  box-shadow: 0 12px 26px rgba(120, 53, 15, 0.08);
}

.mini-poster {
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--amber-200), var(--orange-500));
}

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

.hero-mini-card strong {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: var(--stone-900);
  font-size: 14px;
  line-height: 1.3;
}

.hero-mini-card small {
  color: var(--stone-700);
}

.content-section {
  padding: 54px 0 0;
}

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

.section-heading p {
  margin: 0 0 6px;
  color: var(--amber-700);
  font-weight: 900;
}

.section-heading h2,
.story-card h2,
.category-side h2 {
  margin: 0;
  color: var(--stone-900);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
}

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

.movie-card {
  min-width: 0;
}

.card-link {
  display: block;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(245, 158, 11, 0.12);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: 0 10px 26px rgba(120, 53, 15, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.poster-frame {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(145deg, var(--amber-200), var(--orange-600));
}

.poster-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  transition: transform 0.45s ease;
}

.card-link:hover .poster-frame img {
  transform: scale(1.06);
}

.poster-frame img.is-missing,
.hero-art img.is-missing,
.mini-poster img.is-missing,
.search-result-thumb img.is-missing {
  display: none;
}

.poster-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
}

.rank-badge {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 4;
  min-width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--orange-600), var(--amber-600));
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.card-body {
  padding: 14px;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  color: var(--stone-700);
  font-size: 12px;
}

.card-body h2 {
  display: -webkit-box;
  margin: 8px 0 8px;
  min-height: 44px;
  overflow: hidden;
  color: var(--stone-900);
  font-size: 16px;
  line-height: 1.38;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-body p {
  display: -webkit-box;
  min-height: 42px;
  margin: 0;
  overflow: hidden;
  color: var(--stone-700);
  font-size: 13px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-body .tag-row {
  margin-top: 12px;
}

.card-body .tag-row span {
  background: var(--amber-50);
}

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

.category-tile,
.category-overview-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(245, 158, 11, 0.14);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, white, var(--amber-50));
  box-shadow: 0 12px 28px rgba(120, 53, 15, 0.08);
}

.category-tile {
  min-height: 170px;
  padding: 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.category-tile span,
.category-overview-main span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: white;
  background: linear-gradient(135deg, var(--amber-600), var(--orange-600));
  font-weight: 900;
}

.category-tile strong,
.category-overview-main h2 {
  display: block;
  margin: 18px 0 8px;
  color: var(--amber-900);
  font-size: 20px;
}

.category-tile small,
.category-overview-main p {
  color: var(--stone-700);
}

.page-hero {
  background: linear-gradient(135deg, var(--amber-100), var(--orange-50));
}

.compact-hero {
  padding: 54px 0;
}

.page-hero-inner h1 {
  margin: 18px 0 12px;
  color: var(--amber-900);
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.08;
}

.page-hero-inner p:not(.eyebrow) {
  max-width: 780px;
  color: var(--amber-800);
  font-size: 18px;
}

.category-overview-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-overview-main {
  display: block;
  padding: 22px 22px 12px;
}

.category-overview-card ul {
  margin: 0;
  padding: 0 22px 22px;
  list-style: none;
}

.category-overview-card li a {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--stone-700);
  padding: 6px 0;
  font-size: 14px;
}

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

.category-side {
  position: sticky;
  top: 98px;
  border: 1px solid rgba(245, 158, 11, 0.14);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: 0 10px 26px rgba(120, 53, 15, 0.07);
  padding: 20px;
}

.category-side ol {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.category-side li a {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 8px;
  border-bottom: 1px solid var(--stone-100);
  padding: 10px 0;
  color: var(--stone-800);
  font-weight: 800;
}

.category-side li:last-child a {
  border-bottom: 0;
}

.category-side span {
  color: var(--amber-700);
}

.detail-hero {
  padding: 36px 0 42px;
  background: linear-gradient(135deg, var(--amber-100), var(--orange-50));
}

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

.detail-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 34px;
  align-items: center;
}

.detail-poster {
  border-radius: 30px;
  box-shadow: 0 24px 60px rgba(120, 53, 15, 0.18);
}

.detail-info h1 {
  margin: 18px 0;
  color: var(--amber-900);
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.detail-one-line {
  max-width: 850px;
  color: var(--amber-800);
  font-size: 20px;
}

.detail-meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.detail-meta-list span {
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--amber-900);
  padding: 8px 12px;
  font-weight: 800;
}

.player-section {
  padding-top: 44px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #111;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
  aspect-ratio: 16 / 9;
}

.movie-player {
  width: 100%;
  height: 100%;
  background: #111;
}

.player-cover {
  position: absolute;
  inset: 0;
  z-index: 8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 0;
  color: white;
  background: radial-gradient(circle at center, rgba(249, 115, 22, 0.34), rgba(0, 0, 0, 0.82));
  cursor: pointer;
}

.player-cover.is-hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.player-cover-title {
  max-width: 82%;
  font-size: clamp(24px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.18;
  text-align: center;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.42);
}

.play-button {
  width: 82px;
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--amber-600), var(--orange-600));
  box-shadow: 0 16px 36px rgba(249, 115, 22, 0.38);
  font-size: 32px;
  padding-left: 5px;
}

.detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.story-card {
  border: 1px solid rgba(245, 158, 11, 0.14);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: 0 12px 28px rgba(120, 53, 15, 0.07);
  padding: 24px;
}

.story-card p {
  margin: 16px 0 0;
  color: var(--stone-700);
  font-size: 17px;
  white-space: pre-line;
}

.prev-next {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.prev-next a {
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, white, var(--amber-50));
  color: var(--amber-900);
  padding: 18px;
  font-weight: 900;
}

.site-footer {
  margin-top: 70px;
  color: var(--amber-50);
  background: linear-gradient(135deg, var(--amber-900), var(--orange-700));
}

.footer-shell {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  padding: 46px 0;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
}

.footer-brand p {
  max-width: 680px;
  color: var(--amber-100);
}

.footer-links h2 {
  margin: 0 0 14px;
  color: var(--amber-200);
  font-size: 20px;
}

.footer-links ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: var(--amber-100);
}

.footer-bottom {
  border-top: 1px solid rgba(253, 230, 138, 0.18);
  color: var(--amber-200);
  text-align: center;
  padding: 18px;
}

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

  .mobile-menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-search {
    margin-left: auto;
  }

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

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

@media (max-width: 860px) {
  .nav-shell {
    height: auto;
    min-height: 70px;
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .nav-search {
    order: 3;
    width: 100%;
  }

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

  .hero-slider {
    min-height: 790px;
  }

  .hero-art {
    min-height: 360px;
  }

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

  .category-side {
    position: static;
  }

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

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

  .prev-next {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .logo-copy small {
    display: none;
  }

  .hero-section {
    padding-top: 34px;
  }

  .hero-slider {
    min-height: 720px;
  }

  .hero-art {
    min-height: 300px;
    border-radius: 24px;
  }

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

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

  .card-body {
    padding: 12px;
  }

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

  .content-section {
    padding-top: 40px;
  }

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

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

  .player-shell {
    border-radius: 20px;
  }
}
