:root {
  --bg: #020617;
  --panel: rgba(15, 23, 42, 0.76);
  --panel-strong: rgba(15, 23, 42, 0.94);
  --panel-soft: rgba(30, 41, 59, 0.68);
  --line: rgba(148, 163, 184, 0.18);
  --line-strong: rgba(34, 211, 238, 0.42);
  --text: #f8fafc;
  --muted: #94a3b8;
  --muted-2: #64748b;
  --cyan: #22d3ee;
  --cyan-strong: #06b6d4;
  --blue: #3b82f6;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 16% 10%, rgba(34, 211, 238, 0.13), transparent 28%),
    radial-gradient(circle at 82% 0%, rgba(59, 130, 246, 0.16), transparent 30%),
    linear-gradient(180deg, #020617 0%, #0f172a 44%, #020617 100%);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  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: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.94), rgba(15, 23, 42, 0.96));
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 0 28px rgba(34, 211, 238, 0.36);
  font-size: 15px;
}

.brand-text {
  display: grid;
  line-height: 1.2;
}

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

.brand-tagline {
  color: var(--muted);
  font-size: 12px;
  margin-top: 3px;
}

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

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

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 2px;
  border-radius: 999px;
  background: var(--cyan);
  transition: right 0.24s ease;
}

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

.nav-link:hover::after,
.nav-link.is-active::after {
  right: 0;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  color: #e2e8f0;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.mobile-panel {
  border-top: 1px solid var(--line);
  background: rgba(2, 6, 23, 0.98);
  padding: 14px 16px 20px;
}

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

.mobile-quick-links {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 14px;
}

.mobile-link,
.quick-category-link {
  color: #cbd5e1;
  background: rgba(15, 23, 42, 0.74);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 12px;
}

.mobile-link.is-active,
.mobile-link:hover,
.quick-category-link:hover {
  color: var(--cyan);
  border-color: var(--line-strong);
}

.hero-carousel {
  position: relative;
  min-height: 82vh;
  overflow: hidden;
  background: #020617;
}

.hero-stage {
  position: relative;
  min-height: 82vh;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.hero-slide::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(0deg, #020617, transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 82vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  align-items: center;
  gap: 56px;
  padding-top: 84px;
  padding-bottom: 56px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 14px;
  color: var(--cyan);
  background: rgba(8, 145, 178, 0.16);
  border: 1px solid rgba(34, 211, 238, 0.28);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

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

.hero-copy p {
  max-width: 680px;
  color: #cbd5e1;
  font-size: clamp(18px, 2vw, 23px);
  margin: 22px 0;
}

.hero-tags,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  color: #dbeafe;
  background: rgba(30, 41, 59, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 999px;
  padding: 5px 11px;
  font-size: 13px;
}

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

.primary-button,
.ghost-button,
.section-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.primary-button {
  color: #ffffff;
  background: linear-gradient(135deg, var(--cyan-strong), var(--blue));
  box-shadow: 0 18px 38px rgba(34, 211, 238, 0.26);
}

.ghost-button,
.section-more {
  color: #dbeafe;
  background: rgba(15, 23, 42, 0.62);
  border: 1px solid rgba(148, 163, 184, 0.24);
}

.primary-button:hover,
.ghost-button:hover,
.section-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(34, 211, 238, 0.2);
  border-color: var(--line-strong);
}

.hero-poster {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(34, 211, 238, 0.32);
  background: rgba(15, 23, 42, 0.8);
  box-shadow: var(--shadow), 0 0 80px rgba(34, 211, 238, 0.18);
}

.hero-poster img,
.poster-link img,
.category-tile img,
.rank-poster img,
.detail-poster img,
.player-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-poster span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 76px;
  height: 76px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(6, 182, 212, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.36);
  backdrop-filter: blur(12px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.3);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 52px;
  height: 52px;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  color: #ffffff;
  background: rgba(2, 6, 23, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  font-size: 38px;
  line-height: 1;
}

.hero-prev {
  left: 22px;
}

.hero-next {
  right: 22px;
}

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

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

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

.page-main {
  padding-top: 88px;
}

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

.search-panel {
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: center;
  gap: 24px;
  margin-top: -42px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.search-panel h2,
.section-heading h2,
.text-card h2,
.site-footer h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.search-panel p,
.section-heading p,
.page-hero p,
.category-overview-head p,
.text-card p,
.site-footer p {
  margin: 8px 0 0;
  color: var(--muted);
}

.site-search {
  display: flex;
  gap: 10px;
  padding: 8px;
  background: rgba(2, 6, 23, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.site-search input,
.filter-toolbar input,
.filter-toolbar select {
  width: 100%;
  color: #f8fafc;
  background: rgba(15, 23, 42, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.18);
  outline: 0;
}

.site-search input {
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 0 14px;
}

.site-search button {
  color: #ffffff;
  border: 0;
  border-radius: 999px;
  padding: 11px 20px;
  background: linear-gradient(135deg, var(--cyan-strong), var(--blue));
  font-weight: 800;
}

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

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

.category-tile {
  position: relative;
  min-height: 200px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel-soft);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
}

.category-tile img {
  position: absolute;
  inset: 0;
  opacity: 0.48;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

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

.category-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.94), rgba(2, 6, 23, 0.18));
}

.category-name,
.category-desc {
  position: absolute;
  left: 18px;
  right: 18px;
}

.category-name {
  bottom: 58px;
  font-size: 23px;
  font-weight: 900;
}

.category-desc {
  bottom: 20px;
  color: #cbd5e1;
  font-size: 14px;
}

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

.featured-grid,
.related-grid,
.small-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.movie-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.68);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  box-shadow: 0 20px 50px rgba(8, 145, 178, 0.16);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #0f172a;
}

.poster-link img {
  transition: transform 0.45s ease;
}

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

.play-float {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 52px;
  height: 52px;
  transform: translate(-50%, -50%) scale(0.86);
  display: grid;
  place-items: center;
  color: #ffffff;
  border-radius: 999px;
  background: rgba(6, 182, 212, 0.84);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.card-type {
  position: absolute;
  right: 10px;
  top: 10px;
  color: #cffafe;
  background: rgba(15, 23, 42, 0.76);
  border: 1px solid rgba(34, 211, 238, 0.28);
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 12px;
  font-weight: 800;
}

.card-body {
  padding: 14px;
}

.card-title {
  display: block;
  color: #ffffff;
  font-weight: 900;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card-title:hover,
.rank-info a:hover,
.footer-links a:hover,
.breadcrumb a:hover {
  color: var(--cyan);
}

.card-desc {
  display: -webkit-box;
  margin: 8px 0 12px;
  min-height: 42px;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted-2);
  font-size: 12px;
}

.card-meta span {
  white-space: nowrap;
}

.card-body .tag-row {
  margin-top: 12px;
  gap: 6px;
}

.card-body .tag-row span {
  min-height: 24px;
  padding: 3px 8px;
  font-size: 11px;
}

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

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

.rank-card {
  display: grid;
  grid-template-columns: auto 92px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.66);
  transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.rank-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: 0 16px 42px rgba(8, 145, 178, 0.14);
}

.rank-number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.9), rgba(59, 130, 246, 0.9));
  border-radius: 12px;
  font-weight: 900;
}

.rank-poster {
  display: block;
  height: 118px;
  overflow: hidden;
  border-radius: 14px;
  background: #0f172a;
}

.rank-info a {
  display: block;
  color: #ffffff;
  font-weight: 900;
  margin-bottom: 6px;
}

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

.page-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 42px;
  background:
    radial-gradient(circle at 8% 20%, rgba(34, 211, 238, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.7));
  box-shadow: var(--shadow);
}

.compact-hero {
  margin-top: 24px;
}

.category-overview-list {
  display: grid;
  gap: 24px;
  padding: 48px 0;
}

.category-overview-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.64);
}

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

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

.filter-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(180px, 0.7fr) minmax(140px, 0.5fr);
  gap: 14px;
  margin-bottom: 26px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.72);
}

.filter-toolbar label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.filter-toolbar input,
.filter-toolbar select {
  height: 46px;
  border-radius: 14px;
  padding: 0 14px;
}

.empty-state {
  margin: 28px 0 0;
  color: var(--muted);
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px;
  background: rgba(15, 23, 42, 0.6);
}

.large-rank {
  gap: 16px;
}

.movie-hero {
  position: relative;
  margin-top: -88px;
  padding-top: 124px;
  padding-bottom: 56px;
  background-size: cover;
  background-position: center;
}

.movie-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 30%;
  background: linear-gradient(0deg, #020617, transparent);
}

.movie-hero-inner {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
}

.detail-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 36px;
  align-items: end;
}

.detail-poster {
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border: 1px solid rgba(34, 211, 238, 0.32);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.86);
  box-shadow: var(--shadow);
}

.detail-copy h1 {
  max-width: 880px;
}

.detail-one-line {
  max-width: 850px;
  color: #dbeafe;
  font-size: 19px;
  margin: 18px 0;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.detail-meta span {
  color: #dbeafe;
  background: rgba(15, 23, 42, 0.76);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  padding: 6px 12px;
}

.detail-tags {
  margin-bottom: 26px;
}

.player-section {
  padding: 52px 0 30px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(34, 211, 238, 0.28);
  border-radius: 24px;
  background: #000000;
  box-shadow: var(--shadow), 0 0 65px rgba(34, 211, 238, 0.12);
}

.movie-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000000;
}

.player-cover {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: rgba(2, 6, 23, 0.78);
}

.player-cover.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-cover img {
  position: absolute;
  inset: 0;
  opacity: 0.44;
  filter: blur(2px) saturate(1.05);
}

.big-play {
  position: relative;
  z-index: 3;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.92), rgba(59, 130, 246, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
  font-size: 34px;
}

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

.text-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.68);
}

.text-card p {
  color: #cbd5e1;
  font-size: 16px;
}

.site-footer {
  margin-top: 40px;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.74), rgba(2, 6, 23, 0.98));
}

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

.footer-brand p {
  max-width: 540px;
}

.footer-links {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: var(--muted);
}

[hidden] {
  display: none !important;
}

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

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

  .hero-content {
    grid-template-columns: minmax(0, 1fr) minmax(230px, 300px);
    gap: 32px;
  }
}

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

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .brand-tagline {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
    align-items: end;
  }

  .hero-poster {
    display: none;
  }

  .hero-arrow {
    top: auto;
    bottom: 26px;
    width: 44px;
    height: 44px;
  }

  .hero-prev {
    left: 20px;
  }

  .hero-next {
    right: 20px;
  }

  .search-panel,
  .filter-toolbar,
  .detail-layout,
  .detail-content,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .detail-poster {
    width: min(270px, 76vw);
  }
}

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

  .header-inner {
    height: 62px;
  }

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

  .hero-carousel,
  .hero-stage,
  .hero-content {
    min-height: 76vh;
  }

  .hero-content {
    padding-top: 90px;
  }

  .hero-copy h1,
  .page-hero h1,
  .detail-copy h1 {
    font-size: clamp(32px, 11vw, 48px);
  }

  .hero-copy p,
  .detail-one-line {
    font-size: 16px;
  }

  .category-grid,
  .movie-grid,
  .featured-grid,
  .related-grid,
  .small-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .card-body {
    padding: 11px;
  }

  .rank-card {
    grid-template-columns: auto 74px minmax(0, 1fr);
    gap: 10px;
  }

  .rank-poster {
    height: 96px;
  }

  .page-hero {
    padding: 26px;
  }

  .movie-hero {
    padding-top: 102px;
  }

  .player-shell {
    border-radius: 18px;
  }

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