:root {
  --green-50: #f0fdf4;
  --green-100: #dcfce7;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --emerald-400: #34d399;
  --emerald-500: #10b981;
  --emerald-600: #059669;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 16px 40px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 28px 70px rgba(15, 23, 42, 0.2);
  --radius-lg: 18px;
  --radius-xl: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--gray-800);
  background: linear-gradient(180deg, var(--green-50) 0%, #ffffff 28%, var(--gray-50) 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: #ffffff;
  background: linear-gradient(90deg, var(--green-600), var(--green-500), var(--emerald-500));
  box-shadow: 0 12px 30px rgba(22, 163, 74, 0.24);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  color: var(--green-700);
  background: #ffffff;
  font-weight: 900;
  box-shadow: inset 0 -3px 0 rgba(16, 185, 129, 0.2);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-text strong {
  font-size: 24px;
  letter-spacing: 0.02em;
}

.brand-text small {
  color: var(--green-100);
  font-size: 12px;
}

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

.nav-link {
  position: relative;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: #ffffff;
  transform: translateY(-1px);
}

.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 3px;
  border-radius: 999px;
  background: #ffffff;
}

.top-search {
  display: flex;
  align-items: center;
  width: 260px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.top-search input {
  width: 100%;
  min-width: 0;
  color: #ffffff;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 8px 10px 8px 14px;
}

.top-search input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.top-search button {
  border: 0;
  color: var(--green-700);
  background: #ffffff;
  border-radius: 999px;
  padding: 7px 14px;
  cursor: pointer;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.16);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 3px;
  background: #ffffff;
}

.hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(90deg, var(--green-600), var(--emerald-500), var(--green-600));
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: radial-gradient(circle at 2px 2px, #ffffff 1px, transparent 0);
  background-size: 40px 40px;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: 46px;
  min-height: 560px;
  padding: 72px 0 96px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-100);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0 0 20px;
  font-size: clamp(44px, 7vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.05em;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.hero-lead {
  max-width: 680px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 20px;
}

.hero-actions,
.hero-pills,
.cta-panel div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

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

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

.btn-light {
  color: var(--green-700);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

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

.hero-pills {
  margin-top: 26px;
}

.hero-pills a {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  padding: 8px 14px;
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.hero-carousel {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}

.hero-track {
  position: relative;
  height: 420px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: none;
  overflow: hidden;
}

.hero-slide.is-active {
  display: block;
}

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

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 7, 18, 0.05), rgba(3, 7, 18, 0.78));
}

.hero-slide-content {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 28px;
  z-index: 2;
}

.hero-slide-content span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 12px;
  border-radius: 999px;
  color: var(--green-700);
  background: #ffffff;
  font-size: 13px;
  font-weight: 800;
}

.hero-slide-content h2 {
  margin: 0 0 8px;
  font-size: 30px;
}

.hero-slide-content p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.88);
}

.hero-slide-content a {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--green-500);
  font-weight: 800;
}

.hero-controls {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}

.hero-controls button {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: var(--green-700);
  background: #ffffff;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  pointer-events: auto;
}

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

.hero-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  background: rgba(255, 255, 255, 0.55);
}

.hero-dots button.is-active {
  width: 24px;
  border-radius: 999px;
  background: #ffffff;
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 1;
  width: 100%;
  height: 110px;
  fill: var(--green-50);
}

.section {
  padding: 64px 0;
}

.soft-section {
  background: linear-gradient(90deg, #ecfdf5, var(--green-50));
}

.white-section {
  background: #ffffff;
}

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

.section-heading div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-heading span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  color: #ffffff;
  background: var(--green-600);
  font-weight: 900;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 36px);
  color: var(--gray-800);
}

.section-heading a {
  color: var(--green-600);
  font-weight: 800;
}

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

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

.category-card {
  position: relative;
  overflow: hidden;
  min-height: 160px;
  padding: 26px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(135deg, var(--green-500), var(--emerald-500));
  transition: opacity 0.25s ease;
}

.category-card:hover {
  color: #ffffff;
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.category-card:hover::before {
  opacity: 1;
}

.category-card span,
.category-card strong,
.category-card p {
  position: relative;
  z-index: 1;
}

.category-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 50%;
  color: var(--green-600);
  background: var(--green-100);
  font-weight: 900;
}

.category-card:hover span {
  background: #ffffff;
}

.category-card strong {
  display: block;
  font-size: 20px;
  margin-bottom: 8px;
}

.category-card p {
  margin: 0;
  color: var(--gray-600);
}

.category-card:hover p {
  color: rgba(255, 255, 255, 0.86);
}

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

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

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

.movie-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.card-cover {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  background: linear-gradient(135deg, var(--green-100), #ffffff);
}

.movie-card-horizontal {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
}

.movie-card-horizontal .card-cover {
  aspect-ratio: auto;
  min-height: 176px;
}

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

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

.card-badge,
.card-year,
.rank-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.card-badge {
  left: 10px;
  top: 10px;
  color: var(--green-700);
  background: rgba(255, 255, 255, 0.94);
  padding: 5px 9px;
}

.card-year {
  right: 10px;
  bottom: 10px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.54);
  padding: 4px 8px;
}

.rank-badge {
  left: 10px;
  bottom: 10px;
  width: 34px;
  height: 34px;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, #ef4444, #f97316);
  box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3);
}

.card-body {
  padding: 16px;
}

.card-title {
  display: -webkit-box;
  overflow: hidden;
  min-height: 48px;
  color: var(--gray-900);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-title:hover {
  color: var(--green-600);
}

.card-body p {
  display: -webkit-box;
  overflow: hidden;
  min-height: 44px;
  margin: 10px 0 12px;
  color: var(--gray-600);
  font-size: 14px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--gray-500);
  font-size: 13px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.tag-row span,
.detail-tags a {
  color: var(--green-700);
  background: var(--green-100);
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 12px;
  font-weight: 700;
}

.hot-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 24px;
}

.hot-large .movie-card .card-cover {
  aspect-ratio: 16 / 9;
}

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

.cta-panel {
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 52px 30px;
  color: #ffffff;
  text-align: center;
  background: linear-gradient(90deg, var(--green-600), var(--emerald-600));
  box-shadow: var(--shadow-md);
}

.cta-panel h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 46px);
}

.cta-panel p {
  max-width: 720px;
  margin: 0 auto 28px;
  color: var(--green-100);
  font-size: 18px;
}

.cta-panel div {
  justify-content: center;
}

.page-hero {
  color: #ffffff;
  background: linear-gradient(90deg, var(--green-600), var(--emerald-600));
  padding: 58px 0;
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(36px, 6vw, 56px);
}

.page-hero p {
  max-width: 780px;
  margin: 0;
  color: var(--green-100);
  font-size: 19px;
}

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

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

.breadcrumb em {
  font-style: normal;
  color: #ffffff;
}

.breadcrumb-dark {
  color: rgba(255, 255, 255, 0.72);
}

.filter-bar {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
  padding: 16px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.filter-bar-large {
  align-items: stretch;
}

.filter-bar input,
.filter-bar select {
  height: 46px;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  color: var(--gray-700);
  background: var(--gray-50);
  padding: 0 14px;
  outline: 0;
}

.filter-bar input {
  flex: 1 1 auto;
  min-width: 180px;
}

.filter-bar input:focus,
.filter-bar select:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12);
}

.empty-state {
  margin-top: 32px;
  padding: 46px;
  border-radius: var(--radius-lg);
  color: var(--gray-600);
  text-align: center;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

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

.detail-player-section {
  background: #050505;
  padding: 24px 0 34px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  max-width: 1060px;
  margin: 0 auto;
  border-radius: 18px;
  background: #000000;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.78));
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.play-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  color: var(--green-700);
  background: #ffffff;
  font-size: 30px;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.32);
}

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

.player-overlay small {
  max-width: min(700px, 86%);
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
}

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

.detail-cover {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-md);
}

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

.detail-info {
  border-radius: var(--radius-lg);
  padding: 30px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.detail-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.detail-labels a,
.detail-labels span {
  border-radius: 999px;
  color: var(--green-700);
  background: var(--green-100);
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 800;
}

.detail-info h1 {
  margin: 0 0 14px;
  color: var(--gray-900);
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.16;
}

.detail-lead {
  margin: 0 0 24px;
  color: var(--gray-600);
  font-size: 20px;
}

.detail-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}

.detail-meta-grid div {
  border-radius: 14px;
  background: var(--gray-50);
  padding: 14px;
}

.detail-meta-grid strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gray-500);
  font-size: 13px;
}

.detail-meta-grid span {
  color: var(--gray-800);
  font-weight: 800;
}

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

.content-panel {
  margin-top: 24px;
  border-radius: var(--radius-lg);
  padding: 30px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.content-panel h2 {
  margin: 0 0 14px;
  color: var(--gray-900);
  font-size: 28px;
}

.content-panel p {
  margin: 0;
  color: var(--gray-700);
  font-size: 17px;
  line-height: 1.9;
}

.compact-heading {
  margin-bottom: 20px;
}

.site-footer {
  color: var(--gray-300);
  background: linear-gradient(180deg, var(--gray-800), var(--gray-900));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: 34px;
  padding: 46px 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 20px;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: #ffffff;
}

.site-footer p {
  margin: 0;
  color: var(--gray-300);
}

.site-footer a {
  display: block;
  margin: 8px 0;
  color: var(--gray-300);
}

.site-footer a:hover {
  color: var(--emerald-400);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--gray-300);
  text-align: center;
  padding: 18px 0;
}

@media (max-width: 1060px) {
  .top-search {
    width: 220px;
  }

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

  .hero-copy {
    text-align: center;
  }

  .hero-lead,
  .hero-actions,
  .hero-pills {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

  .detail-cover {
    max-width: 320px;
  }

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

@media (max-width: 840px) {
  .header-inner {
    min-height: 70px;
  }

  .brand-text strong {
    font-size: 20px;
  }

  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border-radius: 18px;
    background: var(--green-700);
    box-shadow: var(--shadow-md);
  }

  .main-nav.is-open {
    display: flex;
  }

  .nav-link {
    padding: 12px 14px;
    border-radius: 12px;
  }

  .nav-link.is-active::after {
    display: none;
  }

  .nav-link:hover,
  .nav-link.is-active {
    background: rgba(255, 255, 255, 0.14);
  }

  .top-search {
    display: none;
  }

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

  .hero-layout {
    min-height: auto;
    padding: 54px 0 86px;
  }

  .hero-carousel,
  .hero-track {
    min-height: 360px;
    height: 360px;
  }

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

  .filter-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .movie-card-horizontal {
    grid-template-columns: 110px minmax(0, 1fr);
  }
}

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

  .hero-copy h1 {
    font-size: 42px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-carousel,
  .hero-track {
    height: 320px;
    min-height: 320px;
  }

  .section {
    padding: 44px 0;
  }

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

  .category-grid,
  .category-grid-wide,
  .movie-grid,
  .dense-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .movie-card-horizontal {
    grid-template-columns: 98px minmax(0, 1fr);
  }

  .movie-card-horizontal .card-cover {
    min-height: 150px;
  }

  .detail-info,
  .content-panel {
    padding: 22px;
  }

  .detail-meta-grid {
    grid-template-columns: 1fr;
  }

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