:root {
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --blue-900: #1e3a8a;
  --blue-800: #1e40af;
  --blue-700: #1d4ed8;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --cyan-400: #22d3ee;
  --white: #ffffff;
  --radius: 22px;
  --shadow: 0 18px 48px rgba(15, 23, 42, 0.12);
  --shadow-strong: 0 28px 68px rgba(15, 23, 42, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--slate-900);
  background: var(--slate-100);
  line-height: 1.65;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.98), rgba(30, 58, 138, 0.96), rgba(15, 23, 42, 0.98));
  color: var(--white);
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.24);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--cyan-400), var(--blue-600));
  box-shadow: 0 10px 26px rgba(37, 99, 235, 0.35);
}

.brand-name {
  font-size: 20px;
  white-space: nowrap;
}

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

.main-nav a,
.mobile-panel a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  transition: color 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a.is-active,
.mobile-panel a:hover,
.mobile-panel a.is-active {
  color: var(--white);
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 10px;
}

.header-search input,
.mobile-search input,
.search-panel input,
.filter-wrap input,
.filter-wrap select {
  border: 1px solid rgba(148, 163, 184, 0.28);
  outline: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: inherit;
  padding: 10px 16px;
  transition: border 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.header-search input::placeholder,
.mobile-search input::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.header-search input:focus,
.mobile-search input:focus,
.search-panel input:focus,
.filter-wrap input:focus,
.filter-wrap select:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.18);
}

.header-search button,
.mobile-search button {
  border: 0;
  border-radius: 999px;
  background: var(--blue-600);
  color: var(--white);
  padding: 10px 16px;
  font-weight: 700;
}

.mobile-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 8px 12px;
}

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

.mobile-panel nav {
  display: grid;
  gap: 12px;
  padding-top: 14px;
}

.mobile-search {
  display: flex;
  gap: 10px;
}

.mobile-search input {
  flex: 1;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease;
}

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

.hero-bg,
.detail-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-bg::after,
.detail-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(34, 211, 238, 0.22), transparent 28%), linear-gradient(0deg, rgba(2, 6, 23, 0.78), rgba(2, 6, 23, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: center;
  gap: 56px;
  color: var(--white);
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  color: var(--cyan-400);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 10px;
}

.hero-copy h1,
.page-hero h1,
.detail-copy h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

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

.hero-tags,
.detail-meta,
.tag-row,
.card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

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

.hero-tags span,
.detail-meta span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.9);
  padding: 6px 12px;
  font-weight: 700;
  font-size: 13px;
}

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

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

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

.btn.primary {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  color: var(--white);
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.32);
}

.btn.ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
}

.btn.secondary {
  background: var(--slate-100);
  color: var(--blue-700);
}

.hero-poster {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  transform: rotate(2deg);
  aspect-ratio: 3 / 4;
}

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

.hero-poster span,
.detail-cover span,
.play-mark {
  position: absolute;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.92);
  color: var(--white);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.45);
}

.hero-poster span,
.detail-cover span {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.hero-dots {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
  width: 34px;
  background: var(--white);
}

.quick-strip {
  background: var(--white);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

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

.quick-grid a {
  border-radius: 18px;
  padding: 18px;
  background: linear-gradient(135deg, #eff6ff, #ffffff);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quick-grid a:hover,
.category-card:hover,
.movie-card:hover,
.small-movie:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.quick-grid strong,
.quick-grid span {
  display: block;
}

.quick-grid strong {
  color: var(--slate-900);
  font-size: 18px;
}

.quick-grid span {
  color: var(--slate-600);
  font-size: 14px;
}

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

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

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

.section-head h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.03em;
}

.section-head p {
  max-width: 720px;
  color: var(--slate-600);
  margin: 8px 0 0;
}

.inline-head {
  width: 100%;
}

.text-link {
  color: var(--blue-700);
  font-weight: 800;
  white-space: nowrap;
}

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

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

.movie-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--slate-200);
}

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

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

.poster-shade {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.72), transparent 62%);
  transition: opacity 0.25s ease;
}

.movie-card:hover .poster-shade {
  opacity: 1;
}

.play-mark {
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.72);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.card-badge,
.card-rank {
  position: absolute;
  top: 12px;
  left: 12px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.94);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  padding: 5px 10px;
}

.card-rank {
  left: auto;
  right: 12px;
  background: rgba(2, 6, 23, 0.78);
}

.card-body {
  padding: 16px;
}

.card-body h2 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.35;
}

.card-body h2 a:hover {
  color: var(--blue-700);
}

.card-body p {
  margin: 0;
  color: var(--slate-600);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 52px;
}

.card-meta {
  margin-top: 14px;
  color: var(--slate-600);
  font-size: 13px;
}

.card-meta span {
  border-radius: 999px;
  background: var(--slate-100);
  padding: 4px 8px;
}

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

.category-card {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  padding: 18px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-covers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 16px;
}

.category-covers img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  object-fit: cover;
}

.category-card strong,
.category-card em {
  display: block;
}

.category-card strong {
  font-size: 20px;
  margin-bottom: 6px;
}

.category-card em {
  color: var(--slate-600);
  font-style: normal;
  font-size: 14px;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 30px;
  align-items: stretch;
}

.ranking-list,
.rank-hero-panel,
.overview-list {
  display: grid;
  gap: 12px;
}

.small-movie {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 14px;
  align-items: center;
  background: var(--white);
  border-radius: 18px;
  padding: 10px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.small-cover {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 4 / 3;
}

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

.small-rank {
  position: absolute;
  left: 6px;
  top: 6px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.94);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  padding: 2px 7px;
}

.small-info strong,
.small-info em {
  display: block;
}

.small-info strong {
  line-height: 1.35;
}

.small-info em {
  color: var(--slate-600);
  font-size: 13px;
  font-style: normal;
  margin-top: 5px;
}

.spotlight-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border-radius: 30px;
  background: var(--slate-950);
  color: var(--white);
  box-shadow: var(--shadow-strong);
}

.spotlight-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.46;
}

.spotlight-card div {
  position: relative;
  z-index: 1;
  padding: 36px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.spotlight-card span {
  color: var(--cyan-400);
  font-weight: 800;
}

.spotlight-card h2 {
  margin: 8px 0 12px;
  font-size: 34px;
  line-height: 1.12;
}

.spotlight-card p {
  color: rgba(255, 255, 255, 0.82);
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, var(--slate-950), var(--blue-900));
}

.compact-hero {
  padding: 72px 0;
}

.hero-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 36px;
  align-items: center;
}

.hero-panel,
.search-panel {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(2, 6, 23, 0.24);
  backdrop-filter: blur(18px);
  padding: 26px;
}

.hero-panel h2 {
  margin: 0 0 14px;
}

.hero-panel a,
.link-cloud a {
  display: block;
  border-radius: 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 14px;
  margin-top: 10px;
  font-weight: 700;
}

.link-cloud {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.link-cloud a {
  margin: 0;
}

.filter-wrap {
  padding: 24px 0;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.filter-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 18px;
}

.filter-grid label,
.search-panel {
  display: grid;
  gap: 8px;
}

.filter-grid span {
  color: var(--slate-600);
  font-weight: 700;
  font-size: 13px;
}

.filter-wrap input,
.filter-wrap select,
.search-panel input {
  width: 100%;
  background: var(--slate-100);
  color: var(--slate-900);
}

.overview-grid {
  display: grid;
  gap: 24px;
}

.category-overview {
  border-radius: 28px;
  background: var(--white);
  padding: 26px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.category-overview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

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

.category-overview p {
  color: var(--slate-600);
  margin: 8px 0 0;
}

.category-overview .overview-list {
  grid-template-columns: repeat(5, 1fr);
}

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

.detail-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 46px;
  align-items: center;
  min-height: 560px;
  padding: 64px 0;
}

.detail-cover {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow-strong);
  aspect-ratio: 3 / 4;
}

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

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

.detail-meta,
.tag-row {
  margin-top: 18px;
}

.player-section {
  padding: 46px 0;
  background: var(--slate-950);
}

.player-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 26px;
  align-items: stretch;
}

.static-player {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  aspect-ratio: 16 / 9;
  background: #000000;
  box-shadow: var(--shadow-strong);
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 0;
  background: radial-gradient(circle, rgba(15, 23, 42, 0.08), rgba(2, 6, 23, 0.54));
  color: var(--white);
}

.player-overlay span {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.94);
  box-shadow: 0 18px 50px rgba(37, 99, 235, 0.46);
  font-size: 30px;
}

.static-player.is-playing .player-overlay {
  display: none;
}

.player-side {
  border-radius: 28px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.72), rgba(15, 23, 42, 0.94));
  padding: 28px;
}

.player-side h2 {
  margin: 0 0 12px;
}

.player-side strong {
  display: block;
  font-size: 22px;
  line-height: 1.3;
}

.player-side p {
  color: rgba(255, 255, 255, 0.78);
}

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

.prose-card,
.side-card,
.rank-panel {
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  padding: 30px;
}

.prose-card h2,
.side-card h2,
.rank-panel h2 {
  margin: 0 0 16px;
  font-size: 26px;
}

.prose-card p {
  color: var(--slate-700);
  margin: 0 0 18px;
}

.side-card dl {
  margin: 0;
}

.side-card dt {
  color: var(--slate-600);
  font-weight: 800;
  margin-top: 14px;
}

.side-card dd {
  margin: 4px 0 0;
}

.rank-panels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.rank-panel > div {
  display: grid;
  gap: 12px;
}

.search-panel {
  align-self: stretch;
}

.search-panel .btn {
  border: 0;
}

.site-footer {
  background: linear-gradient(180deg, var(--slate-900), var(--slate-950));
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 34px;
}

.footer-grid h2 {
  color: var(--white);
  font-size: 17px;
  margin: 0 0 14px;
}

.footer-grid a {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-brand {
  color: var(--white);
  font-size: 22px;
}

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

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

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  border-radius: 24px;
  background: var(--white);
  padding: 40px;
  color: var(--slate-600);
}

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

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

  .split-grid,
  .hero-content,
  .hero-two-col,
  .player-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .hero-poster,
  .hero-panel,
  .search-panel {
    max-width: 520px;
  }

  .category-overview .overview-list,
  .rank-panels {
    grid-template-columns: 1fr;
  }

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

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

  .mobile-toggle {
    display: inline-flex;
  }

  .header-inner {
    gap: 12px;
  }

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

  .home-hero,
  .hero-content {
    min-height: 720px;
  }

  .hero-content {
    padding: 52px 0 84px;
  }

  .hero-poster {
    width: min(320px, 100%);
  }

  .card-grid,
  .dense-grid,
  .category-grid,
  .quick-grid,
  .filter-grid,
  .detail-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-head,
  .category-overview-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .detail-layout {
    padding-top: 42px;
  }

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

  .section-block {
    padding: 52px 0;
  }
}

@media (max-width: 520px) {
  .container,
  .header-inner,
  .mobile-panel,
  .footer-grid {
    width: min(100% - 24px, 1180px);
  }

  .hero-copy h1,
  .page-hero h1,
  .detail-copy h1 {
    font-size: 36px;
  }

  .hero-copy p,
  .page-hero p,
  .detail-copy .lead {
    font-size: 16px;
  }

  .link-cloud {
    grid-template-columns: 1fr;
  }

  .small-movie {
    grid-template-columns: 72px 1fr;
  }

  .prose-card,
  .side-card,
  .rank-panel,
  .hero-panel,
  .search-panel {
    padding: 22px;
  }
}
