:root {
  color-scheme: dark;
  --bg: #020617;
  --bg-soft: #0f172a;
  --bg-card: rgba(30, 41, 59, 0.62);
  --bg-card-strong: rgba(15, 23, 42, 0.92);
  --line: rgba(148, 163, 184, 0.18);
  --line-strong: rgba(148, 163, 184, 0.32);
  --text: #f8fafc;
  --muted: #94a3b8;
  --soft: #cbd5e1;
  --cyan: #22d3ee;
  --blue: #3b82f6;
  --purple: #8b5cf6;
  --orange: #f97316;
  --shadow: 0 24px 60px rgba(2, 6, 23, 0.48);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top left, rgba(34, 211, 238, 0.12), transparent 32rem), linear-gradient(180deg, #020617 0%, #0f172a 48%, #020617 100%);
}

body::selection {
  color: #020617;
  background: var(--cyan);
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.96), rgba(15, 23, 42, 0.95));
  border-bottom: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: 0 12px 40px rgba(2, 6, 23, 0.38);
}

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

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #05101f;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  border-radius: 999px;
  box-shadow: 0 0 28px rgba(34, 211, 238, 0.5);
  font-size: 13px;
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--soft);
  font-size: 15px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: #f8fafc;
  background: rgba(34, 211, 238, 0.12);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.75);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 10px;
}

main {
  padding-top: 66px;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 72px 0 54px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.34;
  pointer-events: none;
}

.orb-one {
  width: 320px;
  height: 320px;
  top: 8%;
  left: 10%;
  background: var(--cyan);
}

.orb-two {
  width: 420px;
  height: 420px;
  right: 7%;
  bottom: 4%;
  background: var(--blue);
}

.hero-inner,
.content-section,
.footer-inner,
.stats-strip,
.page-hero,
.detail-inner,
.player-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-copy {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 38px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 12px;
  font-weight: 800;
}

.hero-copy h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 70px);
  line-height: 1.05;
  letter-spacing: -0.06em;
  background: linear-gradient(90deg, #67e8f9, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy p,
.page-hero p {
  max-width: 760px;
  margin: 22px auto 0;
  color: var(--soft);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.8;
}

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

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

.btn-primary {
  color: #03111f;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 16px 36px rgba(34, 211, 238, 0.24);
}

.btn-ghost {
  color: var(--text);
  border: 1px solid var(--line-strong);
  background: rgba(15, 23, 42, 0.62);
}

.btn-primary:hover,
.btn-ghost:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(34, 211, 238, 0.18);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.hero-movie-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow: var(--shadow);
  border: 1px solid rgba(148, 163, 184, 0.18);
  transform: translateZ(0);
}

.hero-card-large {
  min-height: 430px;
}

.hero-movie-card img,
.detail-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-movie-card img {
  position: absolute;
  inset: 0;
  transition: transform 0.7s ease;
}

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

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.05), rgba(2, 6, 23, 0.9) 72%);
}

.hero-card-content {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px;
}

.hero-card-content h2 {
  margin: 12px 0 10px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.1;
}

.hero-card-content p {
  display: -webkit-box;
  margin: 0 0 18px;
  color: #dbeafe;
  line-height: 1.7;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.watch-link {
  color: var(--cyan);
  font-weight: 800;
}

.hero-search-card {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.72);
  box-shadow: var(--shadow);
}

.hero-search-card label {
  display: block;
  margin-bottom: 10px;
  color: var(--soft);
  font-weight: 700;
}

.search-box {
  position: relative;
  display: flex;
  align-items: center;
}

.search-box input {
  width: 100%;
  height: 48px;
  padding: 0 46px 0 16px;
  color: var(--text);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  outline: none;
  background: rgba(2, 6, 23, 0.65);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-box input:focus {
  border-color: rgba(34, 211, 238, 0.72);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.1);
}

.search-box span {
  position: absolute;
  right: 16px;
  color: var(--muted);
}

.quick-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.quick-tags a,
.tag-pill,
.movie-meta-line span,
.filter-pills button {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
}

.quick-tags a {
  padding: 8px 12px;
  color: var(--soft);
  background: rgba(30, 41, 59, 0.7);
  border: 1px solid var(--line);
}

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

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: -0.04em;
}

.section-more {
  color: var(--cyan);
  font-weight: 800;
}

.section-more span {
  font-size: 24px;
  vertical-align: -1px;
}

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

.movie-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 20px;
  background: var(--bg-card);
  box-shadow: 0 15px 42px rgba(2, 6, 23, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 211, 238, 0.32);
  background: rgba(30, 41, 59, 0.86);
  box-shadow: 0 24px 54px rgba(2, 6, 23, 0.42);
}

.poster-frame {
  position: relative;
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(2, 6, 23, 0.9));
}

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

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

.year-badge,
.rank-badge {
  position: absolute;
  top: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  background: rgba(2, 6, 23, 0.72);
}

.year-badge {
  right: 12px;
}

.rank-badge {
  left: 12px;
  color: #02111f;
  background: linear-gradient(135deg, #fde68a, #f97316);
}

.movie-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px;
}

.movie-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.movie-meta-line span {
  padding: 5px 9px;
  color: #a5f3fc;
  background: rgba(34, 211, 238, 0.1);
  font-size: 12px;
  font-weight: 700;
}

.movie-meta-line span + span {
  color: var(--soft);
  background: rgba(148, 163, 184, 0.12);
}

.movie-card h2 {
  display: -webkit-box;
  margin: 0 0 10px;
  color: #f8fafc;
  font-size: 18px;
  line-height: 1.35;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.2s ease;
}

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

.movie-card p {
  display: -webkit-box;
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.65;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

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

.tag-pill {
  padding: 5px 9px;
  color: #cffafe;
  background: rgba(34, 211, 238, 0.12);
  border: 1px solid rgba(34, 211, 238, 0.2);
  font-size: 12px;
}

.category-section {
  background: rgba(15, 23, 42, 0.36);
  border-block: 1px solid rgba(148, 163, 184, 0.12);
}

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

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

.category-card {
  position: relative;
  min-height: 170px;
  overflow: hidden;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.82), rgba(15, 23, 42, 0.94));
  border: 1px solid var(--line);
  box-shadow: 0 20px 52px rgba(2, 6, 23, 0.22);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: rgba(34, 211, 238, 0.36);
  box-shadow: 0 26px 60px rgba(2, 6, 23, 0.36);
}

.category-card strong,
.category-card em,
.category-card span:not(.category-glow) {
  position: relative;
  z-index: 1;
  display: block;
}

.category-card strong {
  margin-bottom: 10px;
  font-size: 21px;
}

.category-card em {
  min-height: 52px;
  margin-bottom: 16px;
  color: var(--muted);
  font-style: normal;
  line-height: 1.6;
}

.category-card span:not(.category-glow) {
  color: var(--cyan);
  font-weight: 800;
}

.category-glow {
  position: absolute;
  inset: -40% -20% auto auto;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.18);
  filter: blur(40px);
}

.two-column-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.panel-card,
.article-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.72);
  box-shadow: var(--shadow);
  padding: 26px;
}

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

.compact-row {
  display: grid;
  grid-template-columns: auto 112px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(30, 41, 59, 0.42);
  transition: background 0.2s ease, transform 0.2s ease;
}

.compact-row:hover {
  background: rgba(30, 41, 59, 0.82);
  transform: translateX(4px);
}

.compact-row img {
  width: 112px;
  height: 70px;
  object-fit: cover;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.8);
}

.compact-row-text {
  min-width: 0;
}

.compact-row strong,
.compact-row em {
  display: block;
}

.compact-row strong {
  overflow: hidden;
  color: #f8fafc;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.compact-row em {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.list-rank {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: #02111f;
  background: linear-gradient(135deg, #fef3c7, #fb923c);
  border-radius: 999px;
  font-weight: 900;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 58px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(90deg, rgba(8, 47, 73, 0.42), rgba(30, 41, 59, 0.62), rgba(88, 28, 135, 0.34));
}

.stats-strip div {
  text-align: center;
}

.stats-strip strong {
  display: block;
  color: #67e8f9;
  font-size: 34px;
  line-height: 1;
}

.stats-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.page-hero {
  position: relative;
  overflow: hidden;
  margin-top: 34px;
  padding: 64px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: radial-gradient(circle at 16% 20%, rgba(34, 211, 238, 0.18), transparent 28rem), linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.72));
  box-shadow: var(--shadow);
}

.compact-hero h1 {
  font-size: clamp(36px, 5vw, 58px);
}

.filter-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 380px) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-bottom: 26px;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.filter-pills button {
  min-height: 40px;
  padding: 0 14px;
  color: var(--soft);
  border: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.72);
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.filter-pills button:hover,
.filter-pills button.is-active {
  color: var(--text);
  border-color: rgba(34, 211, 238, 0.38);
  background: rgba(34, 211, 238, 0.13);
}

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

.empty-state.is-visible {
  display: block;
}

.detail-hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: end;
  padding: 70px 0 46px;
}

.detail-bg {
  position: absolute;
  inset: 0;
  filter: blur(6px) saturate(1.08);
  transform: scale(1.04);
  opacity: 0.48;
}

.detail-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.62), rgba(2, 6, 23, 0.94));
}

.detail-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 34px;
  align-items: end;
}

.detail-poster {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 26px;
  box-shadow: var(--shadow);
  background: rgba(15, 23, 42, 0.8);
}

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a {
  color: #a5f3fc;
}

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

.detail-one-line {
  max-width: 780px;
  margin: 18px 0 18px;
  color: #dbeafe;
  font-size: 20px;
  line-height: 1.75;
}

.detail-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.detail-facts span {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--soft);
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.22);
}

.player-section {
  padding: 54px 0 12px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #000;
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

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

.player-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: #02111f;
  background: radial-gradient(circle, rgba(2, 6, 23, 0.25), rgba(2, 6, 23, 0.72));
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-orb {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 0 60px rgba(34, 211, 238, 0.55);
  font-size: 28px;
  font-weight: 900;
  transition: transform 0.25s ease;
}

.player-cover:hover .play-orb {
  transform: scale(1.08);
}

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

.article-card h2 {
  margin: 0 0 14px;
  font-size: 26px;
}

.article-card h2:not(:first-child) {
  margin-top: 28px;
}

.article-card p {
  margin: 0;
  color: var(--soft);
  line-height: 1.92;
  font-size: 16px;
}

.related-grid {
  display: grid;
  gap: 14px;
}

.movie-card.is-compact {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  border-radius: 16px;
}

.movie-card.is-compact .poster-frame {
  height: 100%;
  min-height: 112px;
  aspect-ratio: auto;
}

.movie-card.is-compact .movie-card-body {
  padding: 12px;
}

.movie-card.is-compact h2 {
  font-size: 15px;
}

.movie-card.is-compact p,
.movie-card.is-compact .tag-row,
.movie-card.is-compact .year-badge {
  display: none;
}

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

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  padding: 42px 0;
}

.footer-brand p {
  max-width: 430px;
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.footer-links h2 {
  margin: 0 0 14px;
  font-size: 17px;
}

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

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

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

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 28px;
  color: var(--muted);
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

[data-card].is-hidden {
  display: none;
}

@media (max-width: 1040px) {
  .hero-grid,
  .movie-grid,
  .category-grid,
  .large-category-grid,
  .detail-content,
  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-card-large {
    grid-column: 1 / -1;
  }

  .detail-inner {
    grid-template-columns: 240px minmax(0, 1fr);
  }

  .two-column-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-nav {
    height: 60px;
    width: min(100% - 24px, 1180px);
  }

  main {
    padding-top: 60px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 66px;
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-link {
    border-radius: 14px;
  }

  .hero-section {
    padding: 44px 0 34px;
  }

  .hero-copy {
    text-align: left;
  }

  .hero-copy p,
  .page-hero p {
    margin-left: 0;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-grid,
  .movie-grid,
  .category-grid,
  .large-category-grid,
  .detail-inner,
  .detail-content,
  .footer-inner,
  .stats-strip,
  .filter-toolbar {
    grid-template-columns: 1fr;
  }

  .hero-movie-card,
  .hero-card-large {
    min-height: 330px;
  }

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

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

  .filter-pills {
    justify-content: flex-start;
  }

  .page-hero {
    margin-top: 22px;
    padding: 34px 24px;
    border-radius: 24px;
  }

  .detail-hero {
    min-height: auto;
    padding: 40px 0 34px;
  }

  .detail-poster {
    max-width: 240px;
  }

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

  .player-section {
    padding-top: 34px;
  }

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

  .play-orb {
    width: 68px;
    height: 68px;
    font-size: 22px;
  }

  .movie-card.is-compact {
    grid-template-columns: 116px minmax(0, 1fr);
  }

  .compact-row {
    grid-template-columns: auto 90px minmax(0, 1fr);
  }

  .compact-row img {
    width: 90px;
    height: 58px;
  }
}

@media (max-width: 460px) {
  .hero-inner,
  .content-section,
  .footer-inner,
  .stats-strip,
  .page-hero,
  .detail-inner,
  .player-section {
    width: min(100% - 24px, 1180px);
  }

  .hero-card-content {
    padding: 20px;
  }

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

  .movie-card.is-compact .poster-frame {
    aspect-ratio: 16 / 10;
  }
}
