:root {
  --color-primary: #f97316;
  --color-primary-dark: #ea580c;
  --color-amber: #f59e0b;
  --color-yellow: #facc15;
  --color-cyan: #06b6d4;
  --color-blue: #2563eb;
  --color-green: #16a34a;
  --color-red: #ef4444;
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-gray-800: #1f2937;
  --color-gray-900: #111827;
  --shadow-soft: 0 18px 50px rgba(15, 23, 42, 0.14);
  --shadow-card: 0 10px 30px rgba(15, 23, 42, 0.12);
  --radius-xl: 1.25rem;
  --radius-2xl: 1.75rem;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-gray-800);
  background: var(--color-gray-50);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(229, 231, 235, 0.85);
  backdrop-filter: blur(16px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--color-gray-900);
  letter-spacing: -0.03em;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #ffffff;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-yellow));
  box-shadow: 0 12px 26px rgba(249, 115, 22, 0.3);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 10px 14px;
  color: var(--color-gray-600);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-primary-dark);
  background: #fff7ed;
}

.header-search {
  display: flex;
  align-items: center;
  width: min(300px, 32vw);
  padding: 4px;
  border: 1px solid var(--color-gray-200);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}

.header-search input {
  width: 100%;
  min-width: 0;
  padding: 9px 12px 9px 16px;
  color: var(--color-gray-800);
  border: 0;
  outline: 0;
  background: transparent;
}

.header-search button {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  color: #ffffff;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-amber));
}

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

.hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-amber) 48%, var(--color-yellow) 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.24), transparent 28%), radial-gradient(circle at 80% 8%, rgba(255, 255, 255, 0.16), transparent 24%), linear-gradient(rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08));
  pointer-events: none;
}

.hero-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 42px;
  align-items: center;
  min-height: 640px;
  padding: 74px 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.hero h1 {
  max-width: 760px;
  margin: 0 0 22px;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.hero p {
  margin: 0;
}

.hero-lead {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 24px);
}

.hero-search {
  display: flex;
  align-items: center;
  max-width: 620px;
  margin: 34px 0 18px;
  padding: 6px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.26);
}

.hero-search input {
  width: 100%;
  min-width: 0;
  padding: 15px 18px 15px 24px;
  color: var(--color-gray-800);
  border: 0;
  outline: 0;
  border-radius: 999px;
  background: transparent;
  font-size: 17px;
}

.hero-search button,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hero-search button,
.primary-button {
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-amber));
  box-shadow: 0 16px 34px rgba(249, 115, 22, 0.3);
}

.secondary-button {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.primary-button:hover,
.secondary-button:hover,
.hero-search button:hover {
  transform: translateY(-2px);
}

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

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero-pill {
  padding: 10px 16px;
  color: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(160px, 0.52fr);
  gap: 18px;
  align-items: stretch;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.26);
  backdrop-filter: blur(18px);
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition: opacity 0.55s ease, transform 0.55s ease;
  pointer-events: none;
}

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

.hero-poster {
  position: relative;
  overflow: hidden;
  min-height: 484px;
  border-radius: 24px;
  background: rgba(17, 24, 39, 0.2);
}

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

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

.hero-poster::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(17, 24, 39, 0.82), transparent 60%);
}

.hero-card-content {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 2;
}

.hero-card-content h2 {
  margin: 0 0 8px;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.1;
}

.hero-card-content p {
  display: -webkit-box;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.84);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

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

.hero-mini-card {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 12px;
  min-width: 0;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.16);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-mini-card:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: translateX(2px);
}

.hero-mini-card img {
  width: 74px;
  height: 92px;
  object-fit: cover;
  border-radius: 14px;
}

.hero-mini-card strong {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 4px;
  font-size: 15px;
  line-height: 1.3;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.hero-mini-card span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.hero-dots {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
}

.hero-dot.is-active {
  width: 28px;
  background: #ffffff;
}

.section {
  padding: 72px 0;
}

.section-white {
  background: #ffffff;
}

.section-blue {
  background: linear-gradient(135deg, #eff6ff, #ecfeff);
}

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

.section-title {
  margin: 0;
  color: var(--color-gray-900);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.section-desc {
  margin: 8px 0 0;
  color: var(--color-gray-500);
}

.view-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  color: var(--color-primary-dark);
  border-radius: 999px;
  background: #fff7ed;
  font-weight: 800;
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

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

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

.movie-card,
.feature-card,
.rank-card,
.category-card,
.detail-card,
.search-card {
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.72);
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover,
.feature-card:hover,
.rank-card:hover,
.category-card:hover,
.search-card:hover {
  transform: translateY(-6px);
  border-color: rgba(249, 115, 22, 0.32);
  box-shadow: var(--shadow-soft);
}

.poster-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--color-gray-100);
}

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

.movie-card:hover img,
.feature-card:hover img,
.rank-card:hover img,
.search-card:hover img {
  transform: scale(1.07);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--color-primary);
  font-size: 12px;
  font-weight: 800;
}

.poster-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
}

.poster-score {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 2;
  color: #ffffff;
  background: rgba(17, 24, 39, 0.78);
  backdrop-filter: blur(10px);
}

.card-body {
  padding: 15px;
}

.card-title {
  display: -webkit-box;
  overflow: hidden;
  min-height: 44px;
  margin: 0 0 8px;
  color: var(--color-gray-900);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 800;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-meta,
.card-desc {
  color: var(--color-gray-500);
  font-size: 13px;
}

.card-desc {
  display: -webkit-box;
  overflow: hidden;
  min-height: 42px;
  margin-top: 8px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.feature-card {
  display: grid;
  grid-template-columns: 42% 1fr;
  min-height: 280px;
}

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

.feature-card .card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
}

.feature-card .card-title {
  min-height: 0;
  font-size: 22px;
}

.feature-card .card-desc {
  margin: 12px 0 18px;
  font-size: 15px;
  -webkit-line-clamp: 4;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  color: var(--color-gray-600);
  border-radius: 999px;
  background: var(--color-gray-100);
  font-size: 12px;
  font-weight: 700;
}

.rank-card {
  position: relative;
}

.rank-number {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #ffffff;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--color-red), var(--color-primary));
  box-shadow: 0 12px 24px rgba(239, 68, 68, 0.28);
  font-weight: 900;
}

.category-card {
  position: relative;
  display: block;
  min-height: 210px;
  padding: 24px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-amber));
}

.category-card:nth-child(3n + 2) {
  background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
}

.category-card:nth-child(3n) {
  background: linear-gradient(135deg, var(--color-green), #22c55e);
}

.category-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.category-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.category-card strong {
  position: absolute;
  right: 22px;
  bottom: 18px;
  color: rgba(255, 255, 255, 0.9);
}

.page-hero {
  padding: 72px 0 56px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-gray-900), var(--color-gray-800));
}

.page-hero h1 {
  max-width: 880px;
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.05em;
}

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

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 28px;
  padding: 16px;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.filter-input {
  flex: 1 1 280px;
  min-width: 0;
  padding: 13px 16px;
  color: var(--color-gray-800);
  border: 1px solid var(--color-gray-200);
  border-radius: 999px;
  outline: 0;
}

.filter-select {
  padding: 13px 16px;
  color: var(--color-gray-700);
  border: 1px solid var(--color-gray-200);
  border-radius: 999px;
  outline: 0;
  background: #ffffff;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: var(--color-gray-900);
}

.detail-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.22;
}

.detail-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(8px);
  transform: scale(1.05);
}

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

.detail-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: end;
  padding: 72px 0;
}

.detail-poster {
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

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

.detail-title {
  max-width: 850px;
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.detail-lead {
  max-width: 800px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
}

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

.detail-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  font-weight: 700;
}

.player-section {
  padding: 58px 0 0;
  background: #ffffff;
}

.player-shell {
  overflow: hidden;
  border-radius: 28px;
  background: #050505;
  box-shadow: var(--shadow-soft);
}

.player-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.player-frame video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.28));
  cursor: pointer;
}

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

.play-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 92px;
  height: 92px;
  color: #ffffff;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-amber));
  box-shadow: 0 18px 48px rgba(249, 115, 22, 0.42);
  font-size: 30px;
  transition: transform 0.2s ease;
}

.play-button:hover {
  transform: scale(1.08);
}

.detail-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
  padding: 54px 0 72px;
}

.detail-card {
  padding: 30px;
}

.detail-card h2 {
  margin: 0 0 16px;
  color: var(--color-gray-900);
  font-size: 28px;
}

.detail-card p {
  margin: 0 0 18px;
  color: var(--color-gray-600);
  font-size: 17px;
}

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

.detail-list a {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 18px;
  background: var(--color-gray-50);
  transition: background 0.2s ease, transform 0.2s ease;
}

.detail-list a:hover {
  background: #fff7ed;
  transform: translateX(2px);
}

.detail-list img {
  width: 72px;
  height: 92px;
  object-fit: cover;
  border-radius: 14px;
}

.detail-list strong {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 4px;
  color: var(--color-gray-900);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.detail-list span {
  color: var(--color-gray-500);
  font-size: 13px;
}

.search-results {
  display: grid;
  gap: 16px;
}

.search-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 12px;
}

.search-card img {
  width: 110px;
  height: 146px;
  object-fit: cover;
  border-radius: 16px;
}

.search-card h3 {
  margin: 4px 0 8px;
  color: var(--color-gray-900);
}

.empty-state {
  padding: 34px;
  text-align: center;
  color: var(--color-gray-500);
  border: 1px dashed var(--color-gray-200);
  border-radius: var(--radius-xl);
  background: #ffffff;
}

.site-footer {
  padding: 42px 0;
  color: rgba(255, 255, 255, 0.76);
  background: var(--color-gray-900);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

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

.hidden {
  display: none !important;
}

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

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

@media (max-width: 920px) {
  .navbar {
    min-height: 66px;
  }

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

  .nav-links,
  .header-search {
    display: none;
  }

  .site-header.is-open .nav-links,
  .site-header.is-open .header-search {
    display: flex;
  }

  .site-header.is-open .navbar {
    flex-wrap: wrap;
    padding-bottom: 14px;
  }

  .site-header.is-open .nav-links {
    order: 4;
    width: 100%;
    justify-content: center;
  }

  .site-header.is-open .header-search {
    order: 5;
    width: 100%;
  }

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

  .hero-shell {
    min-height: auto;
  }

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

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

  .detail-shell {
    align-items: start;
  }

  .detail-poster {
    width: min(280px, 70vw);
  }
}

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

  .hero-search {
    align-items: stretch;
    flex-direction: column;
    padding: 8px;
    border-radius: 28px;
  }

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

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

  .hero-side-list {
    display: none;
  }

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

  .hero-poster {
    min-height: 486px;
  }

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

  .feature-card {
    display: block;
  }

  .feature-card .poster-wrap {
    aspect-ratio: 3 / 4;
  }

  .section-header {
    display: block;
  }

  .view-more {
    margin-top: 14px;
  }

  .detail-card {
    padding: 22px;
  }

  .search-card {
    grid-template-columns: 88px 1fr;
  }

  .search-card img {
    width: 88px;
    height: 120px;
  }
}
