* {
  box-sizing: border-box;
}

:root {
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --blue-950: #172554;
  --blue-900: #1e3a8a;
  --blue-600: #2563eb;
  --cyan-500: #06b6d4;
  --cyan-300: #67e8f9;
  --orange-500: #f97316;
  --red-500: #ef4444;
  --yellow-400: #facc15;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --white: #ffffff;
  --shadow-soft: 0 18px 60px rgba(15, 23, 42, 0.14);
  --shadow-card: 0 12px 28px rgba(15, 23, 42, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--gray-800);
  background: linear-gradient(180deg, var(--gray-50), var(--white));
}

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

img {
  display: block;
  width: 100%;
  height: auto;
}

button,
input {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.97), rgba(30, 58, 138, 0.97), rgba(15, 23, 42, 0.97));
  box-shadow: 0 12px 35px rgba(2, 6, 23, 0.28);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--cyan-500), var(--blue-600));
  box-shadow: 0 10px 24px rgba(6, 182, 212, 0.3);
  transition: transform 0.25s ease;
}

.brand:hover .brand-mark {
  transform: scale(1.08) rotate(-4deg);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-subtitle {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--cyan-300);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-link {
  position: relative;
  color: #e5e7eb;
  font-weight: 700;
  transition: color 0.25s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--cyan-300);
  transition: width 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--cyan-300);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

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

.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--white);
}

.mobile-nav {
  display: none;
  padding: 10px 16px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

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

.mobile-link {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  color: #e5e7eb;
  font-weight: 700;
}

.mobile-link:hover,
.mobile-link.active {
  color: var(--cyan-300);
  background: rgba(255, 255, 255, 0.1);
}

.hero-carousel {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: var(--slate-950);
}

.hero-stage,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  display: grid;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide img,
.detail-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 22%, rgba(6, 182, 212, 0.34), transparent 30%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.95), rgba(15, 23, 42, 0.76) 42%, rgba(15, 23, 42, 0.25)),
    linear-gradient(0deg, rgba(2, 6, 23, 0.88), rgba(2, 6, 23, 0.05) 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 32px));
  margin-left: max(16px, calc((100vw - 1200px) / 2));
  padding: 120px 0 170px;
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 8px 14px;
  border: 1px solid rgba(103, 232, 249, 0.3);
  border-radius: 999px;
  color: var(--cyan-300);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
  font-size: 14px;
  font-weight: 800;
}

.hero-content h1,
.inner-hero h1,
.detail-copy h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.hero-content p,
.inner-hero p,
.detail-copy p {
  max-width: 700px;
  margin: 22px 0 0;
  font-size: 20px;
  line-height: 1.75;
  color: #dbeafe;
}

.hero-tags,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags {
  margin-top: 22px;
}

.hero-tags span,
.tag-list span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.hero-tags span {
  color: #eff6ff;
  background: rgba(255, 255, 255, 0.16);
}

.tag-list span {
  color: #164e63;
  background: #ecfeff;
}

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

.primary-button,
.ghost-button,
.text-button,
.section-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.primary-button {
  min-height: 46px;
  padding: 0 24px;
  color: var(--white);
  background: linear-gradient(135deg, var(--cyan-500), var(--blue-600));
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.35);
}

.ghost-button {
  min-height: 46px;
  padding: 0 24px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.ghost-button.dark {
  color: var(--blue-900);
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.18);
}

.primary-button:hover,
.ghost-button:hover,
.text-button:hover,
.section-link:hover {
  transform: translateY(-2px);
}

.hero-panel {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transform: translateX(-50%);
}

.hero-search,
.inline-search {
  display: flex;
  width: min(560px, 100%);
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.hero-search input,
.inline-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: none;
  padding: 0 18px;
  color: var(--gray-800);
  background: transparent;
}

.hero-search button {
  border: 0;
  border-radius: 999px;
  padding: 12px 22px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange-500), var(--red-500));
  cursor: pointer;
  font-weight: 800;
}

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

.hero-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.46);
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}

.hero-dot.active {
  transform: scale(1.25);
  background: var(--cyan-300);
}

.floating-grid {
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  margin-top: -90px;
}

.page-section {
  padding: 72px 0 0;
}

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

.section-heading h2 {
  display: inline-flex;
  align-items: center;
  margin: 0 0 0 10px;
  font-size: clamp(26px, 4vw, 38px);
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 8px 0 0;
  color: var(--gray-500);
  line-height: 1.7;
}

.section-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange-500), var(--red-500));
  box-shadow: 0 12px 26px rgba(249, 115, 22, 0.24);
}

.section-link,
.text-button {
  color: var(--blue-600);
}

.movie-grid {
  display: grid;
  gap: 20px;
}

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

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 46px rgba(15, 23, 42, 0.18);
}

.poster-wrap {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--slate-900), var(--blue-900));
}

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

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

.poster-shade,
.tile-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(2, 6, 23, 0.76));
}

.rating-pill,
.rank-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.rating-pill {
  right: 10px;
  top: 10px;
  min-width: 40px;
  height: 28px;
  color: #78350f;
  background: var(--yellow-400);
}

.rank-badge {
  left: 10px;
  top: 10px;
  min-width: 34px;
  height: 28px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange-500), var(--red-500));
}

.card-body {
  padding: 14px;
}

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

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

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

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

.feature-band {
  margin-top: 72px;
  padding: 42px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #eff6ff, #ecfeff);
}

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

.category-tile {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  background: var(--slate-900);
}

.category-tile img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.category-tile:hover img {
  transform: scale(1.08);
}

.category-tile strong,
.category-tile small {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  color: var(--white);
}

.category-tile strong {
  bottom: 64px;
  font-size: 24px;
  font-weight: 900;
}

.category-tile small {
  bottom: 18px;
  display: -webkit-box;
  overflow: hidden;
  font-size: 13px;
  line-height: 1.5;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.split-layout,
.article-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
}

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

.mini-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.mini-card img {
  height: 96px;
  border-radius: 12px;
  object-fit: cover;
}

.mini-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--slate-900);
}

.mini-card small {
  color: var(--gray-500);
}

.inner-hero {
  padding: 88px 0 78px;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 18%, rgba(6, 182, 212, 0.34), transparent 32%),
    linear-gradient(135deg, var(--blue-950), var(--slate-900) 55%, #164e63);
}

.inner-hero p {
  color: #dbeafe;
}

.inline-search {
  width: min(720px, 100%);
  margin-top: 28px;
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.big-search {
  min-height: 58px;
}

.card-filter {
  margin: 0 0 24px;
  box-shadow: 0 8px 26px rgba(15, 23, 42, 0.08);
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.category-cover-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.category-cover-stack img {
  aspect-ratio: 2 / 3;
  border-radius: 12px;
  object-fit: cover;
}

.category-name {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--slate-900);
  font-size: 26px;
  font-weight: 900;
}

.category-overview-card p {
  margin: 0 0 18px;
  color: var(--gray-500);
  line-height: 1.8;
}

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

.podium-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  color: var(--white);
  background: var(--slate-900);
  box-shadow: var(--shadow-soft);
}

.podium-card img {
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
}

.podium-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(2, 6, 23, 0.9));
}

.podium-card strong,
.podium-card small,
.podium-rank {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
}

.podium-rank {
  top: 22px;
  right: auto;
  display: inline-flex;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  color: #78350f;
  background: var(--yellow-400);
  font-weight: 900;
}

.podium-card strong {
  bottom: 54px;
  font-size: 28px;
  line-height: 1.25;
}

.podium-card small {
  bottom: 26px;
  color: #bfdbfe;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--slate-950);
}

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

.detail-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 18%, rgba(6, 182, 212, 0.26), transparent 34%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(15, 23, 42, 0.76)),
    linear-gradient(0deg, rgba(2, 6, 23, 1), rgba(2, 6, 23, 0.34));
}

.detail-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 44px;
  align-items: center;
  padding: 76px 0;
}

.detail-poster img {
  aspect-ratio: 2 / 3;
  border: 4px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: #bfdbfe;
  font-size: 14px;
}

.breadcrumb a:hover {
  color: var(--cyan-300);
}

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

.detail-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(255, 255, 255, 0.12);
}

.player-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--slate-950);
  box-shadow: var(--shadow-soft);
}

.player-box {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--slate-950);
}

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

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: var(--white);
  background:
    radial-gradient(circle, rgba(6, 182, 212, 0.24), transparent 30%),
    rgba(2, 6, 23, 0.38);
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-circle {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  padding-left: 6px;
  border-radius: 50%;
  font-size: 34px;
  color: var(--white);
  background: linear-gradient(135deg, var(--cyan-500), var(--blue-600));
  box-shadow: 0 18px 42px rgba(6, 182, 212, 0.38);
}

.player-info {
  padding: 22px 26px 28px;
  color: var(--white);
}

.player-info h2 {
  margin: 0 0 10px;
}

.player-info p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.8;
}

.story-card,
.side-panel {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.story-card {
  padding: 34px;
}

.story-card h2,
.side-panel h2 {
  margin: 0 0 16px;
  color: var(--slate-900);
}

.story-card p {
  margin: 0 0 26px;
  color: var(--gray-700);
  font-size: 17px;
  line-height: 1.95;
}

.story-card p:last-child {
  margin-bottom: 0;
}

.side-panel {
  align-self: start;
  padding: 28px;
}

.side-panel dl {
  margin: 0;
}

.side-panel dl div {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
}

.side-panel dl div:last-child {
  border-bottom: 0;
}

.side-panel dt {
  color: var(--gray-500);
  font-weight: 800;
}

.side-panel dd {
  margin: 0;
  color: var(--slate-900);
  line-height: 1.6;
}

.site-footer {
  margin-top: 92px;
  color: #cbd5e1;
  background: linear-gradient(135deg, var(--slate-950), var(--slate-900));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 42px;
  padding: 56px 0;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 22px;
}

.site-footer p {
  max-width: 420px;
  line-height: 1.8;
}

.site-footer h3 {
  margin: 0 0 18px;
  color: var(--white);
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a:hover {
  color: var(--cyan-300);
}

.footer-bottom {
  padding: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  color: #94a3b8;
}

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

@media (max-width: 1100px) {
  .floating-grid,
  .movie-grid.six-col,
  .movie-grid.five-col,
  .category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .category-overview-grid,
  .split-layout,
  .article-section {
    grid-template-columns: 1fr;
  }
}

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

  .menu-button {
    display: block;
  }

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

  .hero-content {
    padding: 90px 0 220px;
  }

  .hero-content h1,
  .inner-hero h1,
  .detail-copy h1 {
    font-size: 40px;
  }

  .hero-panel {
    display: grid;
  }

  .floating-grid,
  .movie-grid.six-col,
  .movie-grid.five-col,
  .movie-grid.four-col,
  .category-grid,
  .podium-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-band {
    padding: 28px 18px;
  }

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

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

  .detail-poster {
    max-width: 270px;
  }

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

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

  .brand-name {
    font-size: 18px;
  }

  .brand-subtitle {
    display: none;
  }

  .hero-content p,
  .inner-hero p,
  .detail-copy p {
    font-size: 16px;
  }

  .hero-search {
    border-radius: 20px;
  }

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

  .floating-grid,
  .movie-grid.six-col,
  .movie-grid.five-col,
  .movie-grid.four-col,
  .category-grid,
  .podium-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .card-body {
    padding: 12px;
  }

  .card-title {
    font-size: 14px;
  }

  .card-body p,
  .tag-list {
    display: none;
  }

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

  .category-overview-card {
    padding: 14px;
  }

  .category-cover-stack {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-card,
  .side-panel {
    padding: 22px;
  }
}
