:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --ink: #111827;
  --muted: #64748b;
  --line: #e5e7eb;
  --red: #ef4444;
  --orange: #f97316;
  --yellow: #f59e0b;
  --green: #22c55e;
  --cyan: #06b6d4;
  --blue: #2563eb;
  --purple: #7c3aed;
  --pink: #ec4899;
  --shadow: 0 22px 55px rgba(15, 23, 42, 0.12);
  --soft-shadow: 0 12px 30px rgba(15, 23, 42, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
}

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;
}

.rainbow-line {
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--yellow), var(--green), var(--cyan), var(--blue), var(--purple));
}

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

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  position: relative;
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--orange), var(--purple));
  box-shadow: 0 10px 24px rgba(239, 68, 68, 0.32);
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: -4px;
  z-index: -1;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--red), var(--yellow), var(--blue));
  filter: blur(8px);
  opacity: 0.65;
}

.brand-mark svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-text {
  font-size: 24px;
  line-height: 1;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--yellow), var(--green), var(--cyan), var(--blue), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: #334155;
  font-weight: 700;
  transition: 0.2s ease;
}

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

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: #f1f5f9;
  cursor: pointer;
}

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

.mobile-panel {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 14px;
  padding: 12px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.mobile-panel.is-open {
  display: grid;
}

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

.mobile-link:hover {
  background: #f1f5f9;
  color: var(--blue);
}

.hero-slider {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  background:
    radial-gradient(circle at 8% 10%, rgba(239, 68, 68, 0.26), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(37, 99, 235, 0.26), transparent 30%),
    linear-gradient(135deg, #fff7ed 0%, #eff6ff 38%, #faf5ff 100%);
}

.hero-shell {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0 42px;
}

.hero-glow {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.36;
}

.hero-glow-a {
  top: 90px;
  left: -90px;
  background: var(--pink);
}

.hero-glow-b {
  right: -70px;
  bottom: 90px;
  background: var(--cyan);
}

.hero-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.hero-topline span,
.page-kicker,
.section-heading span {
  display: inline-flex;
  align-items: center;
  width: max-content;
  padding: 6px 12px;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--purple));
  box-shadow: 0 12px 24px rgba(124, 58, 237, 0.18);
}

.hero-stage {
  position: relative;
  min-height: 470px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.68fr);
  align-items: center;
  gap: 44px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.hero-kicker {
  margin: 0 0 14px;
  color: var(--blue);
  font-weight: 800;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.hero-copy h2 {
  margin: 16px 0 12px;
  font-size: clamp(26px, 4vw, 46px);
  line-height: 1.1;
  color: #1e293b;
}

.hero-desc {
  max-width: 680px;
  margin: 0 0 22px;
  color: #475569;
  font-size: 18px;
}

.hero-tags,
.tag-row,
.detail-pills,
.rank-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags span,
.tag-row span,
.detail-pills span,
.rank-meta span {
  padding: 5px 10px;
  border-radius: 999px;
  color: #334155;
  background: #f1f5f9;
  font-size: 13px;
  font-weight: 700;
}

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

.primary-button,
.secondary-button,
.section-more,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.2s ease;
}

.primary-button {
  color: #fff;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--purple));
  box-shadow: 0 16px 28px rgba(239, 68, 68, 0.24);
}

.secondary-button,
.section-more,
.text-link {
  color: var(--blue);
  background: #eff6ff;
}

.primary-button:hover,
.secondary-button:hover,
.section-more:hover,
.text-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--soft-shadow);
}

.primary-button.small {
  min-height: 38px;
  padding: 0 14px;
  font-size: 14px;
}

.hero-poster {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 12px solid rgba(255, 255, 255, 0.64);
  border-radius: 36px;
  background: #e2e8f0;
  box-shadow: var(--shadow);
}

.hero-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(15, 23, 42, 0.78));
}

.hero-poster img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  transition: 0.4s ease;
}

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

.hero-poster span {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
}

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

.hero-dot {
  width: 36px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(100, 116, 139, 0.24);
  cursor: pointer;
}

.hero-dot.is-active {
  width: 58px;
  background: linear-gradient(90deg, var(--red), var(--blue));
}

.hero-category-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-category-row a,
.quick-links a {
  padding: 10px 14px;
  border-radius: 14px;
  color: #1e293b;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.72);
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.content-section {
  padding: 68px 0;
}

.soft-bg {
  background: #f1f5f9;
}

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

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

.section-heading h2 {
  margin: 12px 0 4px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
}

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

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

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  transition: 0.22s ease;
}

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

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, #fee2e2, #dbeafe, #f3e8ff);
}

.movie-card.wide .poster-link {
  aspect-ratio: 16 / 10;
}

.poster-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.28s ease;
}

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

.poster-link::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.5));
}

.year-badge,
.rank-badge {
  position: absolute;
  z-index: 2;
  top: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  background: rgba(15, 23, 42, 0.68);
  backdrop-filter: blur(12px);
}

.year-badge {
  left: 12px;
}

.rank-badge {
  right: 12px;
  background: linear-gradient(90deg, var(--red), var(--orange));
}

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

.movie-meta-line {
  margin: 0 0 6px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

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

.movie-card h3 a:hover,
.rank-body h3 a:hover,
.overview-links a:hover {
  color: var(--blue);
}

.movie-desc {
  min-height: 52px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
}

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

.side-panel,
.detail-side,
.movie-article,
.filter-panel,
.category-overview-card {
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
}

.side-panel {
  position: sticky;
  top: 96px;
  padding: 28px;
}

.side-panel h2 {
  margin: 0 0 10px;
}

.side-panel p {
  margin: 0 0 18px;
  color: var(--muted);
}

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

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

.rank-item {
  display: grid;
  grid-template-columns: 54px 92px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.rank-number {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--red), var(--orange), var(--purple));
}

.rank-thumb {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 16px;
  background: #e2e8f0;
}

.rank-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rank-body h3 {
  margin: 0 0 6px;
  font-size: 20px;
}

.rank-body p {
  margin: 0 0 10px;
  color: var(--muted);
}

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

.category-tile {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 8px;
  padding: 20px;
  border-radius: 26px;
  color: #fff;
  box-shadow: var(--soft-shadow);
  isolation: isolate;
}

.category-tile img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  transition: 0.28s ease;
}

.category-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.15), rgba(15, 23, 42, 0.72));
}

.category-tile:hover img {
  transform: scale(1.06);
  opacity: 0.56;
}

.tile-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.22);
  font-weight: 900;
}

.category-tile strong {
  font-size: 22px;
}

.category-tile small {
  color: rgba(255, 255, 255, 0.86);
}

.tile-1 {
  background: linear-gradient(135deg, #ef4444, #f97316);
}

.tile-2 {
  background: linear-gradient(135deg, #f97316, #f59e0b);
}

.tile-3 {
  background: linear-gradient(135deg, #22c55e, #06b6d4);
}

.tile-4 {
  background: linear-gradient(135deg, #06b6d4, #2563eb);
}

.tile-5 {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
}

.tile-6 {
  background: linear-gradient(135deg, #7c3aed, #ec4899);
}

.page-hero {
  padding: 78px 0;
  color: #fff;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.24), transparent 26%),
    linear-gradient(120deg, #ef4444, #f97316 24%, #22c55e 48%, #06b6d4 70%, #7c3aed);
}

.page-hero h1 {
  max-width: 860px;
  margin: 12px 0 12px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.08;
}

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

.page-kicker {
  color: #111827;
  background: rgba(255, 255, 255, 0.86);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  font-weight: 800;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.88);
}

.breadcrumb strong {
  color: #fff;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  padding: 16px;
  margin-bottom: 26px;
}

.filter-search input,
.filter-controls select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0 16px;
  color: #1e293b;
  background: #f8fafc;
  outline: none;
}

.filter-search input:focus,
.filter-controls select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.filter-controls {
  display: flex;
  gap: 10px;
}

.filter-empty {
  padding: 26px;
  border-radius: 20px;
  text-align: center;
  color: var(--muted);
  background: #fff;
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 26px;
  padding: 18px;
}

.overview-image {
  overflow: hidden;
  border-radius: 22px;
  background: #e2e8f0;
}

.overview-image img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
}

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

.category-overview-card p {
  margin: 0 0 14px;
  color: var(--muted);
}

.overview-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.overview-links a {
  padding: 7px 10px;
  border-radius: 999px;
  color: #334155;
  background: #f1f5f9;
  font-weight: 700;
  font-size: 14px;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  padding: 68px 0;
  color: #fff;
  background:
    radial-gradient(circle at 16% 20%, rgba(239, 68, 68, 0.45), transparent 26%),
    radial-gradient(circle at 84% 16%, rgba(6, 182, 212, 0.36), transparent 24%),
    linear-gradient(135deg, #0f172a, #1e293b 52%, #312e81);
}

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

.detail-poster {
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  background: #334155;
  box-shadow: var(--shadow);
}

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

.detail-info h1 {
  max-width: 820px;
  margin: 12px 0 16px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.08;
}

.detail-one-line {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
}

.detail-pills span {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.player-section {
  background: #0f172a;
  color: #fff;
}

.player-section h2 {
  margin: 0 0 18px;
  font-size: 30px;
}

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

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

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  border: 0;
  color: #fff;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.16), rgba(2, 6, 23, 0.68));
  cursor: pointer;
}

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

.play-circle {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--orange), var(--purple));
  box-shadow: 0 20px 42px rgba(239, 68, 68, 0.34);
  font-size: 28px;
  text-indent: 4px;
}

.player-overlay span:last-child {
  font-size: 20px;
  font-weight: 900;
}

.article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: start;
}

.movie-article {
  padding: 30px;
}

.movie-article h2,
.detail-side h2 {
  margin: 0 0 14px;
  font-size: 26px;
}

.movie-article p {
  margin: 0 0 24px;
  color: #334155;
  font-size: 17px;
}

.detail-tags {
  margin-top: 10px;
}

.detail-side {
  position: sticky;
  top: 96px;
  padding: 26px;
}

.detail-side dl {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 12px 16px;
  margin: 0;
}

.detail-side dt {
  color: var(--muted);
  font-weight: 800;
}

.detail-side dd {
  margin: 0;
  color: #1e293b;
}

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

.footer-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px 260px;
  gap: 32px;
  padding: 46px 0;
}

.footer-brand p {
  max-width: 440px;
  margin: 18px 0 0;
  color: #94a3b8;
}

.brand-footer .brand-text {
  font-size: 22px;
}

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

.footer-links h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 18px;
}

.footer-links a {
  color: #cbd5e1;
}

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

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  color: #94a3b8;
  font-size: 14px;
}

@media (max-width: 1100px) {
  .compact-grid,
  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .menu-toggle {
    display: block;
  }

  .hero-slider {
    min-height: 780px;
  }

  .hero-slide,
  .detail-shell,
  .article-grid,
  .two-column,
  .footer-shell,
  .category-overview-card {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 650px;
  }

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

  .hero-poster img {
    min-height: 300px;
  }

  .side-panel,
  .detail-side {
    position: static;
  }

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

  .filter-controls {
    display: grid;
  }

  .rank-item {
    grid-template-columns: 44px 74px minmax(0, 1fr);
  }

  .rank-item .text-link {
    grid-column: 2 / -1;
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .container,
  .nav-shell,
  .hero-shell,
  .footer-shell,
  .footer-bottom,
  .mobile-panel {
    width: min(100% - 22px, 1180px);
  }

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

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero-shell {
    padding-top: 42px;
  }

  .hero-stage {
    min-height: 710px;
  }

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

  .compact-grid,
  .wide-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-tile {
    min-height: 170px;
  }

  .content-section {
    padding: 48px 0;
  }

  .page-hero,
  .detail-hero {
    padding: 50px 0;
  }

  .movie-article,
  .detail-side,
  .side-panel {
    padding: 22px;
  }
}
