:root {
  color-scheme: dark;
  --bg: #020617;
  --bg-soft: #0f172a;
  --bg-card: rgba(15, 23, 42, 0.78);
  --line: rgba(148, 163, 184, 0.18);
  --line-strong: rgba(34, 211, 238, 0.34);
  --text: #e5eefb;
  --muted: #94a3b8;
  --muted-2: #64748b;
  --cyan: #22d3ee;
  --blue: #3b82f6;
  --violet: #8b5cf6;
  --pink: #ec4899;
  --amber: #f59e0b;
  --radius: 22px;
  --shadow: 0 24px 80px rgba(2, 8, 23, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  background:
    radial-gradient(circle at 10% 0%, rgba(34, 211, 238, 0.16), transparent 32rem),
    radial-gradient(circle at 90% 10%, rgba(139, 92, 246, 0.14), transparent 28rem),
    linear-gradient(180deg, #020617 0%, #07111f 46%, #020617 100%);
  color: var(--text);
}

body.no-scroll {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
  padding-top: 72px;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.94), rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.94));
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 14px 40px rgba(2, 8, 23, 0.3);
}

.header-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.logo-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.22), rgba(59, 130, 246, 0.16));
  border: 1px solid rgba(34, 211, 238, 0.28);
  color: var(--cyan);
  box-shadow: 0 0 34px rgba(34, 211, 238, 0.2);
}

.logo-text {
  font-size: 1.18rem;
  background: linear-gradient(90deg, #67e8f9, #60a5fa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.nav-links a {
  padding: 10px 14px;
  border-radius: 12px;
  color: #cbd5e1;
  font-weight: 650;
  transition: 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(51, 65, 85, 0.7);
}

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 14px;
  color: #e2e8f0;
  background: rgba(15, 23, 42, 0.74);
  cursor: pointer;
}

.mobile-panel {
  display: none;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  padding: 14px 0 18px;
}

.mobile-panel.open {
  display: block;
}

.mobile-panel a {
  display: block;
  padding: 12px 18px;
  border-radius: 12px;
  color: #cbd5e1;
  font-weight: 650;
}

.mobile-panel a:hover,
.mobile-panel a.active {
  color: #fff;
  background: rgba(51, 65, 85, 0.72);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  display: grid;
  align-items: center;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 24%, rgba(34, 211, 238, 0.22), transparent 28rem),
    radial-gradient(circle at 80% 16%, rgba(236, 72, 153, 0.12), transparent 22rem),
    linear-gradient(180deg, rgba(2, 6, 23, 0.15), rgba(2, 6, 23, 0.88));
  pointer-events: none;
  z-index: 2;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.7s ease, transform 0.9s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
  filter: saturate(1.12) contrast(1.04);
}

.hero-bg.is-missing {
  opacity: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(2, 6, 23, 0.78) 42%, rgba(2, 6, 23, 0.32) 100%),
    radial-gradient(circle at 68% 42%, rgba(34, 211, 238, 0.18), transparent 30rem);
}

.hero-content {
  position: relative;
  z-index: 5;
  padding: 70px 0 58px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 46px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  border: 1px solid rgba(34, 211, 238, 0.26);
  border-radius: 999px;
  color: #a5f3fc;
  background: rgba(8, 145, 178, 0.13);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero h1,
.page-title {
  margin: 22px 0 18px;
  font-size: clamp(2.55rem, 7vw, 5.9rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

.gradient-text {
  background: linear-gradient(90deg, #f8fafc, #67e8f9 54%, #93c5fd);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 760px;
  color: #cbd5e1;
  font-size: clamp(1.05rem, 2.2vw, 1.33rem);
  line-height: 1.78;
  margin: 0 0 24px;
}

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

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.16);
  color: #dbeafe;
  font-size: 0.88rem;
  font-weight: 700;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.1);
  color: #a5f3fc;
  border: 1px solid rgba(34, 211, 238, 0.22);
  font-size: 0.82rem;
  font-weight: 700;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

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

.btn-primary {
  color: #00111a;
  background: linear-gradient(90deg, #22d3ee, #60a5fa);
  box-shadow: 0 18px 46px rgba(34, 211, 238, 0.22);
}

.btn-ghost {
  color: #e2e8f0;
  background: rgba(15, 23, 42, 0.64);
  border-color: rgba(148, 163, 184, 0.2);
}

.btn-ghost:hover {
  border-color: rgba(34, 211, 238, 0.4);
  background: rgba(15, 23, 42, 0.86);
}

.hero-side-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.72), rgba(15, 23, 42, 0.34));
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: var(--shadow);
}

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

.cover-frame {
  position: relative;
  overflow: hidden;
  display: block;
  background:
    radial-gradient(circle at 30% 10%, rgba(34, 211, 238, 0.32), transparent 18rem),
    linear-gradient(135deg, rgba(30, 41, 59, 0.98), rgba(2, 6, 23, 0.98));
}

.cover-frame::after {
  content: attr(data-title);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
  text-align: center;
  font-weight: 900;
  color: rgba(226, 232, 240, 0.84);
  letter-spacing: -0.02em;
  line-height: 1.25;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.cover-frame.missing-image::after {
  opacity: 1;
}

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

.cover-img.is-missing {
  opacity: 0;
}

.hero-poster .cover-img {
  position: absolute;
  inset: 0;
}

.hero-poster::before,
.card-cover::before,
.detail-poster::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 36%, rgba(2, 6, 23, 0.88) 100%);
  z-index: 1;
}

.hero-poster .poster-caption {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 3;
  padding: 22px;
}

.poster-caption h2 {
  margin: 0 0 10px;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.poster-caption p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.55;
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(226, 232, 240, 0.35);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.active {
  width: 30px;
  background: linear-gradient(90deg, #22d3ee, #60a5fa);
}

.section {
  padding: 54px 0;
}

.section-tight {
  padding: 36px 0;
}

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

.section-kicker {
  margin: 0 0 8px;
  color: var(--cyan);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.section-title {
  margin: 0;
  color: #f8fafc;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.section-desc {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 760px;
}

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

.stat-card,
.category-tile,
.movie-card,
.detail-panel,
.info-block,
.rank-item,
.filter-panel {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(2, 8, 23, 0.22);
}

.stat-card {
  padding: 22px;
}

.stat-value {
  display: block;
  margin-bottom: 4px;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #f8fafc;
}

.stat-label {
  color: var(--muted);
  font-size: 0.94rem;
}

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

.category-tile {
  position: relative;
  overflow: hidden;
  padding: 22px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.category-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(34, 211, 238, 0.14), transparent 12rem);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.category-tile:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background: rgba(15, 23, 42, 0.92);
}

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

.category-tile h3,
.category-tile p,
.category-tile span {
  position: relative;
  z-index: 1;
}

.category-tile h3 {
  margin: 0 0 10px;
  font-size: 1.22rem;
}

.category-tile p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.6;
}

.category-count {
  display: inline-flex;
  color: #a5f3fc;
  font-weight: 800;
}

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

.movie-card {
  overflow: hidden;
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  background: rgba(15, 23, 42, 0.94);
}

.card-cover {
  aspect-ratio: 2 / 3;
}

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

.card-body {
  padding: 15px;
}

.card-title {
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.35;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.7em;
}

.movie-card:hover .card-title {
  color: #67e8f9;
}

.card-desc {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.58;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.85em;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.card-meta span {
  padding: 4px 8px;
  border-radius: 999px;
  color: #cbd5e1;
  background: rgba(51, 65, 85, 0.58);
  font-size: 0.78rem;
  font-weight: 700;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 16px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.rank-item:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
}

.rank-num {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #00111a;
  font-weight: 950;
  background: linear-gradient(135deg, #22d3ee, #60a5fa);
}

.rank-title {
  margin: 0 0 6px;
  font-weight: 850;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rank-desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rank-score {
  color: #a5f3fc;
  font-weight: 850;
}

.page-hero {
  padding: 74px 0 34px;
  background:
    radial-gradient(circle at 18% 0%, rgba(34, 211, 238, 0.18), transparent 26rem),
    radial-gradient(circle at 88% 20%, rgba(139, 92, 246, 0.14), transparent 25rem);
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.page-title {
  max-width: 950px;
  margin-top: 14px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumbs a {
  color: #a5f3fc;
}

.filter-panel {
  position: sticky;
  top: 86px;
  z-index: 20;
  padding: 16px;
  margin-bottom: 24px;
  backdrop-filter: blur(16px);
}

.filter-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 12px;
}

.search-input,
.filter-select {
  width: 100%;
  min-height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(2, 6, 23, 0.48);
  color: #e2e8f0;
  padding: 0 14px;
  outline: none;
}

.search-input:focus,
.filter-select:focus {
  border-color: rgba(34, 211, 238, 0.55);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.08);
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.filter-chip {
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(15, 23, 42, 0.68);
  color: #cbd5e1;
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
  font-weight: 750;
}

.filter-chip.active,
.filter-chip:hover {
  color: #00111a;
  border-color: transparent;
  background: linear-gradient(90deg, #22d3ee, #60a5fa);
}

.result-line {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.no-results {
  display: none;
  padding: 32px;
  text-align: center;
  color: var(--muted);
  border: 1px dashed rgba(148, 163, 184, 0.24);
  border-radius: var(--radius);
}

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

.detail-poster {
  aspect-ratio: 2 / 3;
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.detail-panel {
  padding: 28px;
}

.detail-panel h1 {
  margin: 0 0 18px;
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.detail-lead {
  margin: 18px 0 0;
  color: #cbd5e1;
  font-size: 1.08rem;
  line-height: 1.85;
}

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(34, 211, 238, 0.24);
  background: #000;
  box-shadow: 0 24px 80px rgba(2, 8, 23, 0.52);
  aspect-ratio: 16 / 9;
}

.video-shell video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #000;
  cursor: pointer;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(2, 6, 23, 0.2), rgba(2, 6, 23, 0.72)),
    radial-gradient(circle at 50% 38%, rgba(34, 211, 238, 0.17), transparent 24rem);
  z-index: 2;
}

.play-action {
  width: 90px;
  height: 90px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: #00111a;
  background: linear-gradient(135deg, #22d3ee, #60a5fa);
  box-shadow: 0 18px 58px rgba(34, 211, 238, 0.34);
  cursor: pointer;
  font-size: 2rem;
  transition: transform 0.2s ease;
}

.play-action:hover {
  transform: scale(1.06);
}

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

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

.info-block {
  padding: 24px;
  margin-bottom: 20px;
}

.info-block h2,
.info-block h3 {
  margin: 0 0 14px;
  color: #fff;
  letter-spacing: -0.03em;
}

.info-block p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.9;
}

.side-list {
  display: grid;
  gap: 12px;
}

.side-link {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.5);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.side-link:hover {
  border-color: rgba(34, 211, 238, 0.38);
  background: rgba(15, 23, 42, 0.82);
}

.side-thumb {
  width: 54px;
  aspect-ratio: 2 / 3;
  border-radius: 12px;
}

.side-title {
  display: block;
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.side-meta {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.86rem;
}

.alpha-list {
  columns: 4;
  column-gap: 24px;
}

.alpha-list a {
  display: block;
  break-inside: avoid;
  margin: 0 0 10px;
  color: #cbd5e1;
  line-height: 1.4;
}

.alpha-list a:hover {
  color: #67e8f9;
}

.site-footer {
  margin-top: 60px;
  border-top: 1px solid rgba(148, 163, 184, 0.13);
  background: rgba(2, 6, 23, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 28px;
  padding: 36px 0;
}

.footer-grid p,
.footer-grid a {
  color: var(--muted);
  line-height: 1.7;
}

.footer-grid h3 {
  margin: 0 0 12px;
  color: #fff;
}

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

.copyright {
  padding: 18px 0 26px;
  color: var(--muted-2);
  border-top: 1px solid rgba(148, 163, 184, 0.09);
  font-size: 0.92rem;
}

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

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

  .hero-side-card {
    max-width: 440px;
  }

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

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

  .mobile-menu-button {
    display: inline-flex;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 54px 0 74px;
  }

  .hero-grid,
  .detail-layout,
  .footer-grid,
  .filter-row,
  .rank-grid {
    grid-template-columns: 1fr;
  }

  .hero-side-card,
  .detail-poster {
    max-width: 360px;
  }

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

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

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

  .alpha-list {
    columns: 2;
  }
}

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

  .page-shell {
    padding-top: 66px;
  }

  .header-inner {
    height: 66px;
  }

  .logo-text {
    font-size: 1rem;
  }

  .hero h1,
  .page-title {
    font-size: 2.55rem;
  }

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

  .card-body {
    padding: 12px;
  }

  .detail-panel,
  .info-block {
    padding: 20px;
  }

  .play-action {
    width: 72px;
    height: 72px;
  }
}
