:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --accent: #06b6d4;
  --text: #111827;
  --muted: #6b7280;
  --soft: #f3f8ff;
  --line: #e5e7eb;
  --dark: #0f172a;
  --card: #ffffff;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 26px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 800;
  white-space: nowrap;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  color: transparent;
}

.logo-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.26);
}

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

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

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
  color: var(--primary);
  background: #eff6ff;
}

.header-search {
  width: 290px;
  display: flex;
  align-items: center;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
}

.header-search input,
.wide-search input,
.filter-panel input,
.filter-panel select {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
}

.header-search input {
  padding: 10px 12px 10px 16px;
}

.header-search button {
  border: 0;
  color: #ffffff;
  background: var(--primary);
  padding: 10px 16px;
  cursor: pointer;
}

.menu-button {
  display: none;
  border: 0;
  border-radius: 12px;
  padding: 9px 12px;
  background: #f3f4f6;
  color: #111827;
  cursor: pointer;
}

.nav-pills {
  display: flex;
  gap: 10px;
  padding-bottom: 14px;
  overflow-x: auto;
}

.nav-pill {
  flex: 0 0 auto;
  padding: 7px 14px;
  border-radius: 999px;
  color: #2563eb;
  background: #eff6ff;
  font-size: 14px;
  font-weight: 600;
}

.mobile-nav {
  display: none;
  padding: 0 16px 16px;
  border-top: 1px solid #eef2f7;
}

.hero {
  min-height: 680px;
  background: #020617;
}

.hero-slider {
  position: relative;
  min-height: 680px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 35%, rgba(6, 182, 212, 0.22), transparent 36%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.62) 48%, rgba(2, 6, 23, 0.14)),
    linear-gradient(0deg, rgba(2, 6, 23, 0.72), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 680px;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(720px, 100%);
  color: #ffffff;
  padding: 92px 0 160px;
}

.hero-kicker,
.detail-category,
.page-hero span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 16px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hero h1 {
  margin: 20px 0 16px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.hero p {
  width: min(640px, 100%);
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.hero-tags,
.detail-tags,
.movie-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags span,
.detail-tags span,
.movie-tags span {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
}

.movie-tags span {
  color: #2563eb;
  background: #eff6ff;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.25);
}

.btn-secondary {
  color: #0f172a;
  background: #ffffff;
}

.btn-ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.btn.small {
  padding: 9px 16px;
  font-size: 14px;
}

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(2, 6, 23, 0.58);
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
}

.hero-prev {
  left: 18px;
}

.hero-next {
  right: 18px;
}

.hero-thumbs {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 4;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.hero-thumb {
  min-width: 0;
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  text-align: left;
  cursor: pointer;
  backdrop-filter: blur(16px);
}

.hero-thumb.active {
  background: rgba(37, 99, 235, 0.72);
  border-color: rgba(255, 255, 255, 0.55);
}

.hero-thumb img {
  width: 64px;
  height: 48px;
  object-fit: cover;
  border-radius: 10px;
}

.hero-thumb span {
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 13px;
  font-weight: 800;
}

.section {
  padding: 68px 0;
  background: #ffffff;
}

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

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

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.03em;
}

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

.section-more {
  flex: 0 0 auto;
  color: var(--primary);
  font-weight: 800;
}

.home-search-panel {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 520px);
  gap: 28px;
  align-items: center;
  padding: 32px;
  border-radius: 26px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: var(--shadow);
}

.home-search-panel h2 {
  margin: 0 0 8px;
  font-size: 30px;
  font-weight: 900;
}

.home-search-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.wide-search {
  display: flex;
  overflow: hidden;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.16);
}

.wide-search input {
  padding: 15px 18px;
}

.wide-search button {
  border: 0;
  padding: 14px 24px;
  color: #ffffff;
  background: var(--primary);
  font-weight: 800;
  cursor: pointer;
}

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

.movie-card {
  overflow: hidden;
  border: 1px solid #eef2f7;
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.poster-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #dbeafe;
}

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

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

.poster-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.62), transparent 56%);
  opacity: 0.9;
}

.type-badge,
.duration-badge,
.rank-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

.type-badge {
  top: 12px;
  left: 12px;
  padding: 5px 10px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.duration-badge {
  right: 12px;
  bottom: 12px;
  padding: 5px 10px;
  background: rgba(2, 6, 23, 0.78);
}

.rank-badge {
  top: 12px;
  right: 12px;
  min-width: 34px;
  height: 34px;
  background: #f59e0b;
  font-size: 16px;
}

.play-mark {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin: auto;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(37, 99, 235, 0.84);
  transform: scale(0.88);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.movie-card:hover .play-mark {
  opacity: 1;
  transform: scale(1);
}

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

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

.movie-title:hover {
  color: var(--primary);
}

.movie-desc {
  display: -webkit-box;
  min-height: 44px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 8px 0 12px;
  color: var(--muted);
  font-size: 14px;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  color: #64748b;
  font-size: 13px;
}

.movie-tags {
  margin-top: 12px;
}

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

.category-card,
.category-overview-card,
.detail-content-card,
.detail-side-card,
.player-info-card {
  border: 1px solid #eef2f7;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.category-card {
  overflow: hidden;
  padding-bottom: 18px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.category-covers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  height: 170px;
  overflow: hidden;
  background: #dbeafe;
}

.category-covers img,
.category-cover-wall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card h3,
.category-overview-body h2 {
  margin: 16px 16px 8px;
  font-size: 20px;
  font-weight: 900;
}

.category-card p,
.category-overview-body p {
  margin: 0 16px 14px;
  color: var(--muted);
  font-size: 14px;
}

.category-card span {
  margin-left: 16px;
  color: var(--primary);
  font-weight: 800;
}

.ranking-grid,
.ranking-list {
  display: grid;
  gap: 16px;
}

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

.movie-card-horizontal {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: stretch;
}

.movie-card-horizontal .poster-wrap {
  height: 100%;
  min-height: 150px;
  aspect-ratio: auto;
}

.movie-card-horizontal .movie-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-hero {
  padding: 80px 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 78% 20%, rgba(6, 182, 212, 0.24), transparent 32%),
    linear-gradient(135deg, #1e40af, #0891b2);
}

.page-hero-compact {
  padding: 58px 0;
}

.page-hero-search {
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 255, 255, 0.22), transparent 32%),
    linear-gradient(135deg, #1d4ed8, #06b6d4);
}

.page-hero h1 {
  margin: 18px 0 12px;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.page-hero p {
  width: min(760px, 100%);
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.page-hero .wide-search {
  width: min(720px, 100%);
  margin-top: 28px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

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

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

.category-overview-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  overflow: hidden;
}

.category-cover-wall {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  min-height: 240px;
  background: #dbeafe;
}

.category-preview-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 16px 18px;
}

.category-preview-links a {
  max-width: 100%;
  padding: 5px 10px;
  overflow: hidden;
  border-radius: 999px;
  color: #2563eb;
  background: #eff6ff;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.filter-panel {
  display: grid;
  grid-template-columns: 1fr 180px 180px;
  gap: 14px;
  margin-bottom: 26px;
  padding: 16px;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.07);
}

.filter-panel-wide {
  grid-template-columns: 1fr 180px 160px 160px;
}

.filter-panel input,
.filter-panel select {
  border-radius: 14px;
  padding: 12px 14px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
}

.empty-state {
  display: none;
  padding: 46px;
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--muted);
  text-align: center;
  box-shadow: var(--shadow);
}

.empty-state.show {
  display: block;
}

.detail-top {
  padding: 26px 0 44px;
  background: #020617;
}

.detail-top .breadcrumb {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.8);
}

.player-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(320px, 0.9fr);
  gap: 24px;
  align-items: stretch;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #000000;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  aspect-ratio: 16 / 9;
}

.player-shell video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  object-fit: contain;
  cursor: pointer;
}

.player-cover {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  color: #ffffff;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.70), rgba(2, 6, 23, 0.18));
  cursor: pointer;
}

.player-cover.hidden {
  display: none;
}

.player-play-icon {
  width: 84px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.36);
  font-size: 32px;
}

.player-info-card {
  padding: 28px;
  color: #ffffff;
  background: linear-gradient(145deg, rgba(30, 64, 175, 0.92), rgba(8, 145, 178, 0.72));
  border-color: rgba(255, 255, 255, 0.14);
}

.player-info-card h1 {
  margin: 20px 0 14px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  font-weight: 900;
}

.player-info-card p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.86);
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 18px;
}

.detail-meta span {
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
}

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

.detail-content-card,
.detail-side-card {
  padding: 26px;
}

.detail-content-card h2,
.detail-side-card h2 {
  margin: 0 0 14px;
  font-size: 24px;
  font-weight: 900;
}

.detail-content-card h2:not(:first-child) {
  margin-top: 30px;
}

.detail-content-card p {
  margin: 0;
  color: #374151;
  font-size: 16px;
}

.movie-info-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.movie-info-list div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #eef2f7;
}

.movie-info-list dt {
  color: var(--muted);
  font-weight: 800;
}

.movie-info-list dd {
  margin: 0;
}

.detail-side-card {
  position: sticky;
  top: 110px;
}

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

.side-ranking .movie-card-horizontal {
  grid-template-columns: 112px 1fr;
}

.side-ranking .movie-card-horizontal .poster-wrap {
  min-height: 92px;
}

.side-ranking .movie-title {
  min-height: 0;
  font-size: 14px;
}

.side-ranking .movie-desc,
.side-ranking .movie-tags {
  display: none;
}

.side-ranking .movie-meta {
  font-size: 12px;
}

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

.site-footer {
  color: #cbd5e1;
  background: #0f172a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 34px;
  padding: 54px 0 34px;
}

.footer-grid p {
  margin: 14px 0 0;
  color: #94a3b8;
}

.footer-grid h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 16px;
}

.footer-grid a:not(.footer-logo) {
  display: block;
  margin: 8px 0;
  color: #cbd5e1;
}

.footer-grid a:hover {
  color: #38bdf8;
}

.footer-bottom {
  padding: 18px 16px 28px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  color: #94a3b8;
  text-align: center;
}

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

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

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

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

  .hero-thumb:nth-child(n + 4) {
    display: none;
  }

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

  .detail-side-card {
    position: static;
  }
}

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

  .menu-button {
    display: inline-flex;
    margin-left: auto;
  }

  .mobile-nav.open {
    display: grid;
    gap: 8px;
  }

  .hero,
  .hero-slider,
  .hero-content {
    min-height: 620px;
  }

  .hero-copy {
    padding: 72px 0 150px;
  }

  .hero-control {
    display: none;
  }

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

  .hero-thumb:nth-child(n + 2) {
    display: none;
  }

  .home-search-panel,
  .category-overview-card {
    grid-template-columns: 1fr;
  }

  .wide-search {
    border-radius: 20px;
    flex-direction: column;
  }

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

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

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

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

  .logo {
    font-size: 20px;
  }

  .section {
    padding: 48px 0;
  }

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

  .movie-card-horizontal,
  .side-ranking .movie-card-horizontal {
    grid-template-columns: 132px 1fr;
  }

  .movie-card-horizontal .poster-wrap {
    min-height: 120px;
  }

  .section-heading {
    display: block;
  }

  .section-more {
    display: inline-flex;
    margin-top: 10px;
  }

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

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