:root {
  --bg: #f8fafc;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --panel: #ffffff;
  --soft: #eff6ff;
  --blue: #2563eb;
  --blue-deep: #1d4ed8;
  --slate: #0f172a;
  --slate-2: #1e293b;
  --radius: 22px;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.65;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, #0f172a, #1e3a8a, #0f172a);
  color: #fff;
  box-shadow: 0 12px 34px rgba(2, 6, 23, 0.32);
}

.nav-shell {
  width: min(1200px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.logo-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #60a5fa, #2563eb 55%, #7c3aed);
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.45);
}

.logo-text {
  font-size: 21px;
}

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

.nav-link,
.nav-more {
  color: rgba(255, 255, 255, 0.88);
  padding: 10px 12px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.nav-more:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.nav-dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  right: 0;
  top: 44px;
  min-width: 180px;
  padding: 10px;
  display: none;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.nav-dropdown:hover .dropdown-panel {
  display: grid;
  gap: 4px;
}

.dropdown-panel a {
  padding: 9px 12px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.86);
}

.dropdown-panel a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.nav-search {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 4px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(10px);
}

.nav-search input {
  width: 210px;
  border: 0;
  outline: 0;
  color: #fff;
  background: transparent;
  padding: 8px 10px;
}

.nav-search input::placeholder {
  color: rgba(255, 255, 255, 0.64);
}

.nav-search button {
  border: 0;
  color: #fff;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 999px;
  background: #2563eb;
}

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

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.mobile-menu {
  display: none;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 18px;
}

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

.mobile-link {
  padding: 11px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  min-height: 680px;
  color: #fff;
  overflow: hidden;
  background: #0f172a;
}

.hero-track,
.hero-slide,
.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

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

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

.hero-bg {
  background-position: center;
  background-size: cover;
  filter: blur(5px) saturate(1.2);
  transform: scale(1.08);
  opacity: 0.46;
}

.hero-overlay {
  background:
    radial-gradient(circle at 72% 28%, rgba(37, 99, 235, 0.50), transparent 32%),
    linear-gradient(120deg, rgba(15, 23, 42, 0.98) 0%, rgba(15, 23, 42, 0.86) 45%, rgba(30, 58, 138, 0.74) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 32px));
  min-height: 680px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  align-items: center;
  gap: 48px;
  padding: 64px 0;
}

.eyebrow,
.section-head span,
.sub-hero span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  color: #bfdbfe;
  background: rgba(37, 99, 235, 0.16);
  border: 1px solid rgba(147, 197, 253, 0.28);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 760px;
  margin: 20px 0 18px;
  font-size: clamp(40px, 7vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.hero-line {
  max-width: 760px;
  margin: 0 0 24px;
  color: #dbeafe;
  font-size: clamp(18px, 2.3vw, 24px);
}

.hero-tags,
.detail-tags,
.tag-row,
.meta-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.hero-tags span,
.detail-tags span,
.tag-row span,
.meta-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  color: #1e3a8a;
  background: #dbeafe;
  font-size: 12px;
  font-weight: 700;
}

.hero-tags span,
.detail-tags span {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

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

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

.primary-btn {
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  box-shadow: 0 18px 38px rgba(37, 99, 235, 0.34);
}

.ghost-btn {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.10);
}

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

.hero-poster {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.42);
  transform: rotate(2deg);
}

.hero-poster::before {
  content: "";
  display: block;
  aspect-ratio: 3 / 4;
}

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

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

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

.hero-dot {
  width: 34px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
}

.hero-dot.active {
  background: #60a5fa;
}

.feature-strip {
  width: min(1200px, calc(100% - 32px));
  margin: -56px auto 0;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-box {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.feature-box strong {
  display: block;
  margin-bottom: 6px;
  font-size: 20px;
}

.feature-box span {
  color: var(--muted);
}

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

.section-head {
  max-width: 760px;
  margin: 0 0 32px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head h2,
.list-tools h2,
.article-card h2,
.rank-side h2 {
  margin: 12px 0 10px;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.dark-section {
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100% - 1200px) / 2));
  padding-right: max(16px, calc((100% - 1200px) / 2));
  background: linear-gradient(135deg, #0f172a, #1e3a8a 70%, #0f172a);
  color: #fff;
}

.section-head.light h2,
.section-head.light p {
  color: #fff;
}

.section-head.light p {
  color: #cbd5e1;
}

.soft-section {
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100% - 1200px) / 2));
  padding-right: max(16px, calc((100% - 1200px) / 2));
  background: linear-gradient(180deg, #eff6ff, #f8fafc);
}

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

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

.movie-card {
  min-width: 0;
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  background: #dbeafe;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.12);
}

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.78));
  opacity: 0.88;
}

.play-dot {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: auto;
  border-radius: 50%;
  color: #fff;
  background: rgba(37, 99, 235, 0.86);
  opacity: 0;
  transform: scale(0.86);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.poster-link:hover img {
  transform: scale(1.06);
}

.poster-link:hover .play-dot {
  opacity: 1;
  transform: scale(1);
}

.poster-meta {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.rank-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  min-width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #fff;
  background: linear-gradient(135deg, #ef4444, #f59e0b);
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(239, 68, 68, 0.28);
}

.card-body {
  padding: 14px 2px 0;
}

.card-type {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

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

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

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

.compact-card .card-body h2 {
  font-size: 16px;
}

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

.category-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 20px;
  padding: 18px;
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow);
}

.category-cover {
  position: relative;
  min-height: 220px;
  border-radius: 20px;
  overflow: hidden;
}

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

.category-cover span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 9px 10px;
  border-radius: 12px;
  color: #fff;
  background: rgba(15, 23, 42, 0.72);
  text-align: center;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.category-content h2 {
  margin: 6px 0 10px;
  font-size: 24px;
}

.category-content p {
  color: var(--muted);
  margin: 0 0 12px;
}

.category-samples {
  display: grid;
  gap: 8px;
}

.category-samples a {
  color: var(--blue-deep);
  font-weight: 700;
}

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

.wide-item {
  display: grid;
  grid-template-columns: auto 76px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wide-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.wide-item img {
  width: 76px;
  height: 96px;
  border-radius: 14px;
  object-fit: cover;
}

.wide-item strong {
  display: -webkit-box;
  color: var(--ink);
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.wide-item em {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
}

.list-rank {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: #2563eb;
  font-weight: 900;
}

.sub-hero {
  min-height: 360px;
  display: grid;
  align-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 78% 20%, rgba(37, 99, 235, 0.50), transparent 32%),
    linear-gradient(135deg, #0f172a, #1e3a8a 70%, #0f172a);
}

.sub-hero > div {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 70px 0;
}

.sub-hero h1 {
  margin: 14px 0;
  font-size: clamp(42px, 7vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.sub-hero p {
  max-width: 760px;
  margin: 0;
  color: #dbeafe;
  font-size: 20px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  color: #bfdbfe;
  font-size: 14px;
}

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

.breadcrumb em {
  color: rgba(255, 255, 255, 0.45);
  font-style: normal;
}

.list-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}

.list-tools h2 {
  margin: 0;
}

.filter-input {
  width: min(420px, 100%);
  border: 1px solid var(--line);
  border-radius: 999px;
  outline: 0;
  padding: 14px 18px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}

.filter-input:focus {
  border-color: #93c5fd;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}

.search-panel {
  margin-bottom: 28px;
}

.filter-input.large {
  width: 100%;
  min-height: 58px;
  font-size: 18px;
}

.empty-state {
  display: none;
  margin-top: 28px;
  padding: 26px;
  border: 1px dashed #bfdbfe;
  border-radius: 22px;
  color: var(--muted);
  background: #eff6ff;
  text-align: center;
}

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

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

.rank-side {
  position: sticky;
  top: 98px;
  align-self: start;
  padding: 20px;
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow);
}

.rank-side h2 {
  margin-top: 0;
  font-size: 26px;
}

.mini-list {
  grid-template-columns: 1fr;
}

.mini-list .wide-item {
  grid-template-columns: auto 56px minmax(0, 1fr);
}

.mini-list .wide-item img {
  width: 56px;
  height: 72px;
}

.detail-hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #0f172a;
}

.detail-backdrop {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  filter: blur(6px) saturate(1.18);
  transform: scale(1.08);
  opacity: 0.42;
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 28%, rgba(37, 99, 235, 0.45), transparent 30%),
    linear-gradient(120deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.78));
}

.detail-wrap {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 70px 0;
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.detail-poster {
  display: block;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.44);
}

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

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

.detail-one-line {
  max-width: 820px;
  margin: 0 0 22px;
  color: #dbeafe;
  font-size: 21px;
}

.meta-chips {
  margin-bottom: 14px;
}

.meta-chips span {
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.player-section {
  padding-top: 54px;
  padding-bottom: 54px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #020617;
  box-shadow: 0 26px 70px rgba(2, 6, 23, 0.24);
  aspect-ratio: 16 / 9;
}

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

.play-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-content: center;
  gap: 14px;
  border: 0;
  color: #fff;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.22), rgba(2, 6, 23, 0.68));
  cursor: pointer;
  font-weight: 800;
  font-size: 20px;
}

.play-overlay.is-hidden {
  display: none;
}

.play-circle {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.34);
}

.detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.article-card {
  padding: 30px;
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow);
}

.article-card h2 {
  margin-top: 0;
  font-size: 28px;
}

.article-card p {
  color: #334155;
  margin: 0 0 16px;
}

.site-footer {
  color: #cbd5e1;
  background: linear-gradient(180deg, #0f172a, #020617);
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
}

.footer-logo span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #60a5fa, #2563eb 55%, #7c3aed);
}

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

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

.footer-grid a:hover {
  color: #60a5fa;
}

.footer-grid p {
  margin: 0;
}

.footer-bottom {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  text-align: center;
  font-size: 14px;
}

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

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

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

  .hero-inner,
  .detail-wrap,
  .rank-layout {
    grid-template-columns: 1fr;
  }

  .hero-poster,
  .detail-poster {
    max-width: 340px;
  }

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

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

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

@media (max-width: 760px) {
  .nav-shell {
    min-height: 64px;
  }

  .hero,
  .hero-inner {
    min-height: 740px;
  }

  .hero-inner {
    gap: 28px;
    padding-top: 42px;
    padding-bottom: 92px;
  }

  .feature-strip,
  .category-grid,
  .wide-list,
  .detail-content,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-strip {
    margin-top: -36px;
  }

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

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

  .category-cover {
    min-height: 260px;
  }

  .wide-item {
    grid-template-columns: auto 68px minmax(0, 1fr);
  }

  .list-tools {
    align-items: flex-start;
    flex-direction: column;
  }

  .filter-input {
    width: 100%;
  }

  .section {
    padding: 52px 0;
  }

  .sub-hero > div {
    padding: 54px 0;
  }

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

  .detail-one-line,
  .hero-line {
    font-size: 17px;
  }

  .article-card {
    padding: 22px;
  }
}

@media (max-width: 460px) {
  .movie-grid,
  .compact-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .primary-btn,
  .ghost-btn {
    width: 100%;
  }
}
