:root {
  --bg: #fff7f9;
  --bg-soft: #fff1f2;
  --bg-warm: #fff7ed;
  --text: #111827;
  --muted: #6b7280;
  --line: rgba(244, 63, 94, 0.14);
  --rose: #e11d48;
  --pink: #db2777;
  --orange: #f97316;
  --white: #ffffff;
  --shadow: 0 20px 45px rgba(225, 29, 72, 0.14);
  --shadow-soft: 0 10px 25px rgba(17, 24, 39, 0.08);
  --radius-xl: 26px;
  --radius-lg: 18px;
  --radius-md: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  background: linear-gradient(135deg, #fff1f2 0%, #fdf2f8 45%, #fff7ed 100%);
  min-height: 100vh;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(244, 63, 94, 0.12);
  backdrop-filter: blur(18px);
}

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

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 900;
  color: var(--rose);
  white-space: nowrap;
}

.logo-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 13px;
  background: linear-gradient(135deg, var(--rose), var(--orange));
  box-shadow: 0 12px 28px rgba(225, 29, 72, 0.28);
  font-size: 15px;
}

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

.nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: #374151;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--rose);
  background: rgba(225, 29, 72, 0.09);
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.05);
}

.header-search input {
  width: 170px;
  border: 0;
  outline: 0;
  padding: 8px 6px 8px 12px;
  background: transparent;
}

.header-search button,
.global-search-form button,
.primary-button {
  border: 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--rose), var(--orange));
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(225, 29, 72, 0.23);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-search button:hover,
.global-search-form button:hover,
.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(225, 29, 72, 0.28);
}

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: rgba(225, 29, 72, 0.09);
  padding: 10px;
}

.mobile-menu-button span {
  display: block;
  height: 2px;
  background: var(--rose);
  margin: 5px 0;
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 16px;
}

.mobile-nav a {
  display: block;
  padding: 12px 14px;
  color: #374151;
  font-weight: 800;
  border-radius: 14px;
}

.mobile-nav a:hover {
  background: rgba(225, 29, 72, 0.08);
  color: var(--rose);
}

.hero-carousel {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: linear-gradient(115deg, #be123c, #db2777 55%, #f97316);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image: radial-gradient(circle at 20% 20%, #fff 0 2px, transparent 3px), radial-gradient(circle at 80% 30%, #fff 0 1px, transparent 3px);
  background-size: 58px 58px, 88px 88px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 110px 20px 96px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

.hero-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.16;
  filter: blur(5px) saturate(1.25);
  transform: scale(1.06);
}

.hero-shade {
  position: fixed;
  inset: 0;
  background: linear-gradient(90deg, rgba(136, 19, 55, 0.92), rgba(219, 39, 119, 0.72), rgba(249, 115, 22, 0.55));
}

.hero-content,
.hero-poster {
  position: relative;
  z-index: 2;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  padding: 8px 14px;
  color: var(--rose);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 10px 25px rgba(17, 24, 39, 0.08);
}

.hero-content h1,
.page-hero h1 {
  margin: 22px 0 10px;
  color: var(--white);
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-content h2 {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.12;
}

.hero-content p {
  max-width: 690px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  line-height: 1.8;
}

.hero-tags,
.detail-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 28px;
}

.hero-tag,
.tag-chip,
.chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  color: #be123c;
  background: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 800;
}

.detail-meta .chip,
.detail-meta .tag-chip {
  background: rgba(225, 29, 72, 0.1);
  color: var(--rose);
}

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

.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border-radius: 999px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.52);
  font-weight: 800;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.secondary-button:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
}

.hero-poster {
  display: block;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(17, 24, 39, 0.42);
  transform: rotate(2deg);
  transition: transform 0.25s ease;
}

.hero-poster:hover {
  transform: rotate(0) translateY(-4px);
}

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

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 30px;
  z-index: 5;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-arrow,
.hero-dot {
  border: 0;
  cursor: pointer;
}

.hero-arrow {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  font-size: 32px;
  line-height: 1;
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  padding: 0;
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
  width: 30px;
  background: var(--white);
}

.quick-search-panel,
.page-container {
  max-width: 1200px;
  margin: 0 auto;
}

.quick-search-panel {
  position: relative;
  z-index: 8;
  margin-top: -42px;
  display: grid;
  grid-template-columns: 1fr minmax(260px, 520px);
  gap: 22px;
  align-items: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.quick-search-panel strong {
  display: block;
  font-size: 24px;
  margin-bottom: 4px;
}

.quick-search-panel span {
  color: var(--muted);
}

.global-search-form {
  display: flex;
  gap: 10px;
}

.global-search-form input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 13px 16px;
  outline: none;
  background: var(--white);
}

.global-search-form input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: rgba(225, 29, 72, 0.48);
  box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.1);
}

.page-container {
  padding: 56px 20px;
}

.top-space {
  padding-top: 34px;
}

.content-section {
  margin-bottom: 64px;
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

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

.section-more {
  color: var(--rose);
  font-weight: 900;
  white-space: nowrap;
}

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

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

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

.movie-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.72);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.poster-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, #fecdd3, #fed7aa);
}

.poster-wrap img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.poster-category,
.rank-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 10px;
  color: var(--white);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--rose), var(--orange));
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.18);
}

.rank-badge {
  left: 12px;
  right: auto;
  background: rgba(17, 24, 39, 0.72);
}

.poster-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 44px;
  background: rgba(17, 24, 39, 0.0);
  opacity: 0;
  transition: opacity 0.24s ease, background 0.24s ease;
}

.movie-card:hover .poster-play {
  opacity: 1;
  background: rgba(17, 24, 39, 0.25);
}

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

.card-type {
  color: var(--rose);
  font-size: 12px;
  font-weight: 900;
}

.card-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 45px;
  font-size: 17px;
  line-height: 1.32;
  font-weight: 900;
}

.card-desc {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 42px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #6b7280;
  font-size: 12px;
}

.card-meta span {
  padding: 4px 8px;
  border-radius: 999px;
  background: #fff1f2;
}

.compact-card {
  display: grid;
  grid-template-columns: 128px 1fr;
}

.compact-card .poster-wrap img {
  height: 100%;
  aspect-ratio: auto;
}

.compact-card .poster-category {
  display: none;
}

.compact-card .card-title {
  min-height: auto;
}

.compact-card .card-desc {
  min-height: auto;
}

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

.ranking-panel,
.sidebar-panel {
  padding: 24px;
  background: linear-gradient(135deg, #fff, #fff7ed);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
}

.small-heading h2 {
  font-size: 28px;
}

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

.mini-link {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 34px;
  grid-template-rows: auto auto;
  gap: 4px 12px;
  align-items: center;
  padding: 8px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  transition: background 0.2s ease, transform 0.2s ease;
}

.mini-link:hover {
  background: #fff1f2;
  transform: translateX(4px);
}

.mini-link img {
  grid-row: span 2;
  width: 64px;
  height: 76px;
  object-fit: cover;
  border-radius: 12px;
}

.mini-link strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
}

.mini-link em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.mini-link span {
  grid-row: span 2;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--rose), var(--orange));
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
}

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

.category-tile,
.category-overview-card,
.genre-chip-link,
.spotlight-card {
  overflow: hidden;
  min-height: 180px;
  position: relative;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  background: #111827;
}

.category-tile img,
.category-overview-card img,
.genre-chip-link img,
.spotlight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.category-tile:hover img,
.category-overview-card:hover img,
.genre-chip-link:hover img,
.spotlight-card:hover img {
  transform: scale(1.08);
  opacity: 0.88;
}

.category-tile span,
.category-overview-body,
.genre-chip-link span,
.spotlight-body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px;
  color: var(--white);
  background: linear-gradient(0deg, rgba(17, 24, 39, 0.88), rgba(17, 24, 39, 0));
}

.category-tile strong,
.category-overview-card strong,
.genre-chip-link span,
.spotlight-card strong {
  display: block;
  font-size: 20px;
  font-weight: 900;
}

.category-tile em,
.category-overview-card em,
.spotlight-card small {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
  font-size: 13px;
  line-height: 1.5;
}

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

.category-overview-card {
  min-height: 260px;
}

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

.genre-chip-link {
  min-height: 150px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 56px;
  border-radius: 32px;
  background: linear-gradient(135deg, var(--rose), var(--pink), var(--orange));
  box-shadow: var(--shadow);
  margin-bottom: 36px;
}

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

.soft-hero:before,
.category-hero:before {
  content: "";
  position: absolute;
  inset: -30% auto auto 55%;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.filter-panel {
  display: grid;
  grid-template-columns: 1fr 190px 190px;
  gap: 14px;
  padding: 18px;
  margin-bottom: 34px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 13px 16px;
  background: var(--white);
  color: var(--text);
  outline: 0;
}

.empty-state {
  display: grid;
  place-items: center;
  padding: 36px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.75);
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
}

.spotlight-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 36px;
}

.spotlight-card {
  min-height: 320px;
}

.spotlight-card em {
  display: inline-flex;
  width: max-content;
  padding: 5px 10px;
  margin-bottom: 8px;
  color: var(--rose);
  background: var(--white);
  border-radius: 999px;
  font-style: normal;
  font-weight: 900;
  font-size: 12px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 14px;
}

.breadcrumb a {
  color: var(--rose);
  font-weight: 800;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 36px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  border-radius: 30px;
  background: #111827;
  box-shadow: 0 30px 80px rgba(17, 24, 39, 0.28);
}

.movie-player {
  width: 100%;
  height: 100%;
  min-height: 480px;
  background: #111827;
  object-fit: contain;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  background: radial-gradient(circle at 50% 45%, rgba(225, 29, 72, 0.14), rgba(17, 24, 39, 0.48));
  cursor: pointer;
  z-index: 3;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

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

.player-button {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  padding-left: 7px;
  color: var(--white);
  font-size: 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rose), var(--orange));
  box-shadow: 0 22px 58px rgba(225, 29, 72, 0.45);
}

.detail-poster-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

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

.full-button {
  text-align: center;
}

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

.detail-main {
  padding: 34px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.detail-main h1 {
  margin: 18px 0 12px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.detail-main h2 {
  margin: 30px 0 12px;
  font-size: 24px;
}

.detail-main p {
  color: #374151;
  font-size: 17px;
  line-height: 1.95;
}

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

.sidebar-panel h2 {
  margin: 0 0 18px;
  font-size: 24px;
}

.site-footer {
  margin-top: 34px;
  background: rgba(17, 24, 39, 0.94);
  color: rgba(255, 255, 255, 0.86);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  align-items: center;
  justify-content: space-between;
}

.footer-inner strong {
  color: var(--white);
  font-size: 20px;
}

[hidden] {
  display: none !important;
}

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

  .compact-grid,
  .small-grid,
  .split-section,
  .detail-grid,
  .detail-hero {
    grid-template-columns: 1fr;
  }

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

  .detail-sidebar {
    position: static;
  }
}

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

  .mobile-menu-button {
    display: block;
    margin-left: auto;
  }

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

  .hero-carousel {
    min-height: 760px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 86px;
  }

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

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

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

  .detail-poster-card {
    display: none;
  }
}

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

  .site-logo {
    font-size: 18px;
  }

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

  .hero-slide {
    padding: 72px 16px 100px;
  }

  .hero-content h1,
  .page-hero h1 {
    font-size: 34px;
  }

  .hero-content h2 {
    font-size: 25px;
  }

  .hero-content p,
  .page-hero p {
    font-size: 16px;
  }

  .hero-poster {
    display: none;
  }

  .page-container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .quick-search-panel {
    margin-left: 14px;
    margin-right: 14px;
  }

  .movie-grid,
  .compact-grid,
  .small-grid,
  .category-grid,
  .category-overview-grid,
  .genre-grid,
  .spotlight-grid {
    grid-template-columns: 1fr;
  }

  .compact-card {
    grid-template-columns: 112px 1fr;
  }

  .page-hero,
  .detail-main {
    padding: 26px;
    border-radius: 24px;
  }

  .player-shell,
  .movie-player {
    min-height: 260px;
  }

  .footer-inner {
    display: grid;
  }
}
