:root {
  --rose-50: #fff1f2;
  --rose-100: #ffe4e6;
  --rose-200: #fecdd3;
  --rose-500: #f43f5e;
  --rose-600: #e11d48;
  --pink-500: #ec4899;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 10px 25px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 55px rgba(15, 23, 42, 0.14);
  --radius-lg: 18px;
  --radius-xl: 26px;
  --radius-full: 999px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--gray-900);
  background: var(--gray-50);
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(254, 205, 211, 0.72);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}

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

.site-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: white;
  background: linear-gradient(135deg, var(--rose-500), var(--pink-500));
  box-shadow: 0 12px 28px rgba(244, 63, 94, 0.28);
}

.logo-text,
.footer-logo span:last-child {
  font-size: 22px;
  background: linear-gradient(90deg, var(--rose-600), var(--pink-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--gray-700);
  font-weight: 600;
  white-space: nowrap;
}

.main-nav a:hover,
.mobile-nav a:hover,
.footer-links a:hover,
.text-link:hover {
  color: var(--rose-600);
}

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

.nav-search input,
.hero-search input,
.filter-row input,
.filter-row select {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  background: white;
  color: var(--gray-900);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-search input {
  width: 210px;
  padding: 10px 15px;
}

.nav-search button,
.hero-search button,
.btn-primary,
.board-more {
  border: 0;
  border-radius: var(--radius-full);
  color: white;
  background: linear-gradient(90deg, var(--rose-500), var(--pink-500));
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 18px 34px rgba(244, 63, 94, 0.26);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-search button {
  padding: 10px 18px;
}

.nav-search input:focus,
.hero-search input:focus,
.filter-row input:focus,
.filter-row select:focus {
  border-color: var(--rose-500);
  box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.13);
}

.menu-button {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: var(--rose-50);
  color: var(--rose-600);
  font-size: 22px;
}

.mobile-nav {
  display: none;
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto 14px;
  padding: 12px;
  border: 1px solid var(--rose-100);
  border-radius: 18px;
  background: white;
}

.mobile-nav a {
  display: block;
  padding: 11px 12px;
  border-radius: 12px;
  font-weight: 700;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  padding: 120px 0 72px;
  overflow: hidden;
  background: linear-gradient(135deg, #fff1f2 0%, #fdf2f8 44%, #fffbeb 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.72;
}

.blob {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  filter: blur(28px);
  mix-blend-mode: multiply;
  animation: blobFloat 12s ease-in-out infinite;
}

.blob-one {
  top: 110px;
  left: 9vw;
  background: rgba(251, 113, 133, 0.48);
}

.blob-two {
  top: 220px;
  right: 8vw;
  background: rgba(236, 72, 153, 0.38);
  animation-delay: 2s;
}

.blob-three {
  bottom: 70px;
  left: 28vw;
  background: rgba(251, 191, 36, 0.38);
  animation-delay: 4s;
}

@keyframes blobFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -36px) scale(1.08);
  }
  66% {
    transform: translate(-26px, 24px) scale(0.96);
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1220px, calc(100% - 32px));
  min-height: calc(100vh - 192px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  align-items: center;
  gap: 52px;
}

.hero-badge {
  display: inline-flex;
  padding: 8px 15px;
  margin-bottom: 24px;
  border: 1px solid var(--rose-200);
  border-radius: var(--radius-full);
  color: var(--rose-600);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.hero-copy h1 {
  max-width: 760px;
  margin: 0 0 24px;
  font-size: clamp(46px, 7vw, 82px);
  line-height: 1.04;
  letter-spacing: -0.07em;
  background: linear-gradient(90deg, var(--rose-600), var(--pink-500), var(--amber-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy p {
  max-width: 720px;
  margin: 0 0 28px;
  color: var(--gray-700);
  font-size: clamp(18px, 2vw, 24px);
}

.hero-search {
  width: min(690px, 100%);
  display: flex;
  gap: 12px;
  padding: 8px;
  border: 1px solid rgba(254, 205, 211, 0.8);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-md);
}

.hero-search input {
  flex: 1;
  padding: 16px 20px;
  border: 0;
  background: transparent;
}

.hero-search button {
  padding: 14px 24px;
}

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

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  font-weight: 800;
}

.btn-primary:hover,
.nav-search button:hover,
.hero-search button:hover,
.board-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(244, 63, 94, 0.32);
}

.btn-secondary {
  border: 2px solid var(--rose-500);
  border-radius: var(--radius-full);
  color: var(--rose-600);
  background: white;
}

.hero-stats span {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--gray-700);
  box-shadow: var(--shadow-sm);
}

.hero-stats b {
  color: var(--rose-600);
  font-size: 24px;
}

.hero-panel {
  position: relative;
  min-height: 600px;
  border-radius: 34px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-lg);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

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

.hero-slide-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.02), rgba(17, 24, 39, 0.78));
}

.hero-slide-copy {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 64px;
  color: white;
}

.hero-slide-copy b {
  display: block;
  margin-bottom: 10px;
  font-size: 28px;
  line-height: 1.15;
}

.hero-slide-copy small {
  color: rgba(255, 255, 255, 0.88);
}

.hero-dots {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 42px;
  height: 6px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
}

.hero-dot.is-active {
  background: white;
}

.feature-strip,
.section-block,
.site-footer,
.detail-section,
.player-section {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.feature-item,
.category-tile,
.movie-card,
.hot-board,
.filter-panel,
.category-overview-card,
.podium-card,
.detail-text-grid article {
  border: 1px solid rgba(254, 205, 211, 0.7);
  border-radius: var(--radius-xl);
  background: white;
  box-shadow: var(--shadow-md);
}

.feature-item {
  padding: 22px;
}

.feature-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gray-900);
  font-size: 18px;
}

.feature-item span {
  color: var(--gray-500);
  font-size: 14px;
}

.section-block {
  padding: 76px 0 0;
}

.page-main,
.detail-main {
  padding-top: 72px;
}

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

.section-head h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.04em;
}

.section-head p {
  margin: 0;
  color: var(--gray-500);
}

.section-head a,
.text-link {
  color: var(--rose-600);
  font-weight: 800;
}

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

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

.category-tile {
  display: flex;
  min-height: 230px;
  padding: 16px;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.category-covers,
.category-visual {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin-bottom: 15px;
}

.category-covers img,
.category-visual img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 14px;
}

.category-tile strong {
  margin-bottom: 8px;
  font-size: 18px;
}

.category-tile span,
.category-range {
  color: var(--gray-500);
  font-size: 14px;
}

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

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

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

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

.movie-card {
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, var(--rose-50), #fff7ed);
}

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

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

.rank-badge {
  position: absolute;
  z-index: 2;
  left: 12px;
  top: 12px;
  min-width: 42px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(90deg, var(--rose-500), var(--amber-500));
  box-shadow: var(--shadow-md);
}

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

.movie-meta-line,
.card-foot,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--gray-500);
  font-size: 13px;
}

.movie-meta-line span,
.detail-meta span {
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--rose-50);
  color: var(--rose-600);
}

.movie-card h3 {
  margin: 12px 0 8px;
  font-size: 19px;
  line-height: 1.25;
}

.movie-card p {
  min-height: 66px;
  margin: 0 0 14px;
  color: var(--gray-500);
  font-size: 14px;
}

.movie-card-compact p {
  min-height: 48px;
}

.tag-row,
.detail-tags,
.term-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag-row span,
.detail-tags span,
.term-filter button {
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--gray-700);
  background: var(--gray-100);
  font-size: 12px;
  font-weight: 700;
}

.term-filter button {
  border: 0;
  cursor: pointer;
}

.term-filter button.is-active,
.term-filter button:hover {
  color: white;
  background: var(--rose-500);
}

.card-foot {
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-100);
}

.rating {
  color: var(--amber-500);
  font-weight: 800;
}

.hot-board {
  position: sticky;
  top: 96px;
  padding: 22px;
}

.hot-board-head h2 {
  margin: 0 0 6px;
}

.hot-board-head p {
  margin: 0 0 16px;
  color: var(--gray-500);
}

.hot-row {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 8px 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--gray-100);
}

.hot-no {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  color: white;
  background: linear-gradient(135deg, var(--rose-500), var(--pink-500));
  font-weight: 900;
}

.hot-title {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 800;
}

.hot-score {
  color: var(--gray-500);
  font-size: 13px;
}

.board-more {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 13px 18px;
}

.rose-panel {
  width: auto;
  max-width: none;
  margin: 76px 0 0;
  padding: 76px max(16px, calc((100% - 1220px) / 2)) 86px;
  background: linear-gradient(135deg, var(--rose-50), #fdf2f8);
}

.page-hero {
  padding: 74px max(16px, calc((100% - 1220px) / 2));
}

.gradient-hero {
  background: linear-gradient(135deg, var(--rose-500), var(--pink-500));
  color: white;
}

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

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.detail-hero .breadcrumb {
  color: rgba(255, 255, 255, 0.86);
}

.category-overview-grid {
  display: grid;
  gap: 24px;
}

.category-overview-card {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 24px;
  padding: 20px;
}

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

.category-count {
  display: inline-flex;
  padding: 7px 13px;
  margin-bottom: 12px;
  border-radius: 999px;
  color: var(--rose-600);
  background: var(--rose-50);
  font-weight: 800;
}

.category-overview-card h2 {
  margin: 0 0 8px;
  font-size: 30px;
}

.category-overview-card p {
  margin: 0 0 12px;
  color: var(--gray-500);
}

.category-overview-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  padding-left: 18px;
  color: var(--gray-700);
}

.filter-panel {
  padding: 18px;
  margin-bottom: 18px;
}

.filter-row {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 170px 170px 140px;
  gap: 12px;
  margin-bottom: 14px;
}

.filter-row input,
.filter-row select {
  width: 100%;
  padding: 13px 16px;
}

.result-note {
  margin-bottom: 18px;
  color: var(--gray-500);
  font-weight: 800;
}

.podium-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 34px;
}

.podium-card {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  color: white;
}

.podium-card img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.podium-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.02), rgba(17, 24, 39, 0.82));
}

.podium-card span,
.podium-card strong,
.podium-card em {
  position: absolute;
  z-index: 1;
  left: 22px;
  right: 22px;
}

.podium-card span {
  top: 22px;
  width: max-content;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  font-weight: 900;
}

.podium-card strong {
  bottom: 62px;
  font-size: 30px;
  line-height: 1.18;
}

.podium-card em {
  bottom: 28px;
  font-style: normal;
  color: rgba(255, 255, 255, 0.88);
}

.detail-hero {
  position: relative;
  overflow: hidden;
  color: white;
  background: #111827;
}

.detail-bg {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  filter: blur(10px);
  transform: scale(1.08);
}

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

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.95), rgba(17, 24, 39, 0.64));
}

.detail-content {
  position: relative;
  z-index: 1;
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 70px 0;
}

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

.detail-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}

.detail-info h1 {
  margin: 0 0 14px;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.detail-one-line {
  max-width: 820px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
}

.detail-score {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px;
  margin: 20px 0;
}

.detail-score strong {
  color: var(--amber-400);
  font-size: 42px;
}

.detail-score span {
  color: var(--amber-400);
  font-weight: 900;
}

.detail-score em {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-style: normal;
  font-weight: 800;
}

.detail-tags {
  margin-bottom: 22px;
}

.detail-tags span {
  color: white;
  background: rgba(255, 255, 255, 0.16);
}

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

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #020617;
  box-shadow: var(--shadow-lg);
}

.movie-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #020617;
  cursor: pointer;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  color: white;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.18), rgba(15, 23, 42, 0.72));
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.player-overlay span {
  width: 82px;
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-500), var(--pink-500));
  box-shadow: 0 20px 45px rgba(244, 63, 94, 0.42);
  font-size: 30px;
  text-indent: 4px;
}

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

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

.detail-section {
  padding-top: 42px;
}

.detail-text-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 24px;
}

.detail-text-grid article {
  padding: 28px;
}

.detail-text-grid h2 {
  margin: 0 0 14px;
  font-size: 26px;
}

.detail-text-grid p {
  margin: 0;
  color: var(--gray-700);
  white-space: pre-line;
}

.related-section {
  padding-bottom: 76px;
}

.mini-card {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  color: var(--gray-700);
}

.mini-card img {
  width: 56px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 10px;
}

.mini-card span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 800;
}

.site-footer {
  padding: 70px 0 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 42px;
  padding: 32px;
  border: 1px solid var(--rose-100);
  border-radius: 32px;
  background: linear-gradient(135deg, white, var(--rose-50));
}

.footer-grid p {
  color: var(--gray-500);
}

.footer-grid h2 {
  margin: 0 0 14px;
  font-size: 18px;
}

.footer-links {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--gray-600, #4b5563);
}

.footer-bottom {
  padding-top: 22px;
  text-align: center;
  color: var(--gray-500);
  font-size: 14px;
}

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

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

  .hero-inner,
  .two-column,
  .detail-text-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: 520px;
  }

  .hot-board {
    position: static;
  }

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

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

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

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

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

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

  .hero-inner {
    gap: 32px;
  }

  .hero-panel {
    min-height: 430px;
  }

  .hero-search,
  .section-head,
  .footer-grid,
  .category-overview-card,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .hero-search {
    border-radius: 24px;
    flex-direction: column;
  }

  .hero-search button {
    width: 100%;
  }

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

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

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

  .detail-poster {
    width: min(280px, 100%);
  }
}

@media (max-width: 560px) {
  .nav-shell {
    height: 64px;
  }

  .logo-text {
    font-size: 19px;
  }

  .feature-strip,
  .category-grid,
  .movie-grid,
  .category-movie-grid,
  .ranking-grid,
  .search-grid,
  .home-grid,
  .related-grid,
  .podium-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    letter-spacing: -0.05em;
  }

  .hero-stats span {
    width: 100%;
    justify-content: space-between;
  }

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

  .movie-card p {
    min-height: auto;
  }

  .page-main,
  .detail-main {
    padding-top: 64px;
  }
}
