:root {
  --bg: #0b1120;
  --panel: rgba(17, 24, 39, 0.78);
  --panel-strong: #111827;
  --panel-soft: rgba(31, 41, 55, 0.78);
  --line: rgba(148, 163, 184, 0.18);
  --text: #f8fafc;
  --muted: #cbd5e1;
  --soft: #94a3b8;
  --sunset-300: #fbbf24;
  --sunset-400: #fb923c;
  --sunset-500: #f97316;
  --sunset-600: #ea580c;
  --twilight-400: #c084fc;
  --twilight-500: #a855f7;
  --twilight-700: #6d28d9;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(251, 146, 60, 0.16), transparent 30rem),
    radial-gradient(circle at top right, rgba(168, 85, 247, 0.18), transparent 34rem),
    linear-gradient(180deg, #0b1120 0%, #111827 42%, #0b1120 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(168, 85, 247, 0.22);
  background: rgba(17, 24, 39, 0.94);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 78px;
}

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

.brand-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #fff;
  background: linear-gradient(135deg, var(--sunset-400), var(--twilight-500));
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(251, 146, 60, 0.34);
  font-size: 13px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-size: clamp(19px, 2vw, 26px);
  background: linear-gradient(90deg, var(--sunset-400), var(--twilight-400), var(--sunset-300));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

.brand-tagline {
  margin-top: 4px;
  color: var(--soft);
  font-size: 12px;
  font-weight: 500;
}

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

.nav-link {
  color: var(--muted);
  font-weight: 650;
  transition: color 0.2s ease;
}

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

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px;
  background: rgba(31, 41, 55, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
}

.header-search input,
.mobile-search input,
.library-filter input,
.library-filter select {
  color: var(--text);
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.2);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input {
  width: 210px;
  border: 0;
  background: transparent;
  padding: 9px 4px 9px 14px;
}

.header-search input:focus,
.mobile-search input:focus,
.library-filter input:focus,
.library-filter select:focus {
  border-color: rgba(251, 146, 60, 0.8);
  box-shadow: 0 0 0 4px rgba(251, 146, 60, 0.12);
}

.header-search button,
.mobile-search button {
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, var(--sunset-500), var(--twilight-500));
  border-radius: 999px;
  padding: 9px 16px;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(31, 41, 55, 0.8);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
  border-radius: 99px;
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--line);
  padding: 16px;
  background: rgba(17, 24, 39, 0.98);
}

.mobile-panel.is-open {
  display: grid;
  gap: 12px;
}

.mobile-panel a {
  color: var(--muted);
  padding: 10px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}

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

.mobile-search input {
  min-width: 0;
  flex: 1;
  border-radius: 999px;
  padding: 10px 14px;
}

.hero-shell {
  width: min(1340px, calc(100% - 24px));
  margin: 24px auto 0;
}

.hero-category-bar {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 0 0 14px;
  scrollbar-width: none;
}

.hero-category-bar::-webkit-scrollbar,
.rail::-webkit-scrollbar {
  display: none;
}

.hero-category-bar a {
  flex: 0 0 auto;
  padding: 9px 16px;
  color: var(--muted);
  background: rgba(31, 41, 55, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 999px;
  transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.hero-category-bar a:hover {
  color: #fff;
  border-color: rgba(251, 146, 60, 0.65);
  transform: translateY(-2px);
}

.hero-stage {
  position: relative;
  min-height: clamp(520px, 62vw, 690px);
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 30px;
  background: var(--panel-strong);
  box-shadow: var(--shadow);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.62fr);
  gap: 38px;
  align-items: center;
  padding: clamp(32px, 6vw, 84px);
  opacity: 0;
  pointer-events: none;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sunset-300);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1,
.page-hero h1,
.detail-copy h1 {
  margin: 14px 0 18px;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-copy p,
.page-hero p,
.detail-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 20px);
}

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

.hero-tags span,
.tag-row span,
.quick-tags a {
  color: #fff;
  background: rgba(251, 146, 60, 0.15);
  border: 1px solid rgba(251, 146, 60, 0.28);
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 12px;
}

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

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

.btn.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--sunset-500), var(--twilight-500));
  box-shadow: 0 14px 32px rgba(168, 85, 247, 0.26);
}

.btn.ghost {
  color: var(--text);
  background: rgba(15, 23, 42, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

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

.btn.full {
  width: 100%;
}

.hero-poster {
  justify-self: end;
  width: min(320px, 100%);
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(251, 146, 60, 0.22), rgba(168, 85, 247, 0.22));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.5);
  transform: rotate(2deg);
}

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

.hero-arrow {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #fff;
  background: rgba(0, 0, 0, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  cursor: pointer;
  transform: translateY(-50%);
  font-size: 34px;
  transition: background 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.7);
}

.hero-arrow.prev {
  left: 18px;
}

.hero-arrow.next {
  right: 18px;
}

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

.hero-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dots button.is-active {
  width: 32px;
  background: var(--sunset-400);
}

.content-section {
  margin-top: 64px;
}

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

.section-heading > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  background: linear-gradient(135deg, var(--sunset-500), var(--twilight-500));
  border-radius: 12px;
}

.section-heading h2,
.strip-title h3,
.side-panel h2,
.detail-main-card h2,
.detail-side-card h2,
.footer-grid h2 {
  margin: 0;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.15;
}

.section-more,
.strip-title a {
  color: var(--sunset-300);
  font-weight: 700;
}

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

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

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 20px;
  background: rgba(31, 41, 55, 0.54);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.movie-card:hover {
  border-color: rgba(251, 146, 60, 0.5);
  background: rgba(31, 41, 55, 0.86);
  transform: translateY(-6px);
}

.poster {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 10%, rgba(251, 146, 60, 0.28), transparent 34%),
    linear-gradient(135deg, rgba(31, 41, 55, 0.92), rgba(88, 28, 135, 0.52));
}

.poster img {
  transition: transform 0.35s ease, opacity 0.2s ease;
}

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

.poster-glow {
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
}

.poster-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 30px;
  opacity: 0;
  background: rgba(0, 0, 0, 0.32);
  transition: opacity 0.2s ease;
}

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

.poster-type {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.62);
  font-size: 12px;
  font-weight: 700;
}

.card-info {
  padding: 15px;
}

.card-meta,
.row-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--soft);
  font-size: 12px;
}

.card-info h2 {
  margin: 8px 0 8px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.35;
}

.card-info h2 a:hover,
.row-content h2 a:hover {
  color: var(--sunset-300);
}

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

.movie-card.compact .card-info p,
.movie-card.rail-card .card-info p {
  -webkit-line-clamp: 2;
}

.rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(210px, 260px);
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 12px;
  scrollbar-width: none;
}

.two-column-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

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

.movie-row {
  display: grid;
  grid-template-columns: 76px 58px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 18px;
  background: rgba(31, 41, 55, 0.5);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.movie-row:hover {
  border-color: rgba(251, 146, 60, 0.45);
  background: rgba(31, 41, 55, 0.88);
  transform: translateX(4px);
}

.row-poster {
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(251, 146, 60, 0.22), rgba(168, 85, 247, 0.22));
}

.rank-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: linear-gradient(135deg, var(--sunset-500), var(--twilight-500));
  border-radius: 14px;
  font-weight: 900;
}

.row-content h2 {
  margin: 0 0 6px;
  font-size: 18px;
}

.row-content p {
  display: -webkit-box;
  margin: 0 0 8px;
  overflow: hidden;
  color: var(--muted);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.row-button {
  padding: 10px 16px;
  border-radius: 999px;
  color: #fff;
  background: rgba(251, 146, 60, 0.16);
  border: 1px solid rgba(251, 146, 60, 0.3);
  font-weight: 800;
}

.side-panel,
.detail-main-card,
.detail-side-card,
.player-card {
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 24px;
  background: rgba(17, 24, 39, 0.74);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.side-panel {
  position: sticky;
  top: 104px;
  padding: 24px;
}

.side-panel p {
  color: var(--muted);
}

.quick-tags {
  margin-top: 18px;
}

.category-mosaic {
  display: grid;
  gap: 26px;
}

.category-strip {
  padding: 22px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 26px;
  background: rgba(15, 23, 42, 0.48);
}

.strip-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.page-hero,
.detail-hero {
  min-height: 360px;
  display: grid;
  align-items: center;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.compact-page-hero,
.ranking-hero {
  background:
    radial-gradient(circle at 20% 20%, rgba(251, 146, 60, 0.22), transparent 28rem),
    radial-gradient(circle at 80% 10%, rgba(168, 85, 247, 0.22), transparent 28rem),
    linear-gradient(135deg, #111827, #0f172a);
}

.page-hero h1 {
  max-width: 900px;
}

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

.category-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 26px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.category-card:hover {
  border-color: rgba(251, 146, 60, 0.58);
  transform: translateY(-6px);
}

.category-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #fff;
  background: linear-gradient(135deg, var(--sunset-500), var(--twilight-500));
  border-radius: 999px;
  margin-bottom: auto;
}

.category-card h2 {
  margin: 18px 0 8px;
  font-size: 28px;
}

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

.category-samples {
  display: grid;
  gap: 4px;
  color: var(--soft);
  font-size: 13px;
}

.library-filter {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 190px 190px;
  gap: 14px;
  align-items: end;
  margin-bottom: 24px;
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 22px;
  background: rgba(17, 24, 39, 0.7);
}

.library-filter label {
  display: grid;
  gap: 8px;
  color: var(--soft);
  font-size: 13px;
  font-weight: 700;
}

.library-filter input,
.library-filter select {
  width: 100%;
  border-radius: 14px;
  padding: 12px 14px;
}

.empty-state {
  color: var(--muted);
  border: 1px dashed rgba(251, 146, 60, 0.4);
  border-radius: 18px;
  padding: 20px;
  background: rgba(251, 146, 60, 0.08);
}

.detail-hero {
  padding: 52px 0;
}

.detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(240px, 340px) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.detail-cover {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  aspect-ratio: 2 / 3;
  background: linear-gradient(135deg, rgba(251, 146, 60, 0.25), rgba(168, 85, 247, 0.24));
  box-shadow: var(--shadow);
}

.detail-cover span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: #fff;
  background: linear-gradient(135deg, var(--sunset-500), var(--twilight-500));
  border-radius: 999px;
  font-size: 22px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--soft);
  margin-bottom: 18px;
}

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

.player-card {
  padding: 12px;
}

.player {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  background: #020617;
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #fff;
  border: 0;
  background:
    radial-gradient(circle at center, rgba(251, 146, 60, 0.18), transparent 28rem),
    rgba(2, 6, 23, 0.48);
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-ring {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  padding-left: 4px;
  color: #fff;
  background: linear-gradient(135deg, var(--sunset-500), var(--twilight-500));
  border-radius: 999px;
  box-shadow: 0 22px 50px rgba(168, 85, 247, 0.36);
  font-size: 30px;
}

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

.detail-main-card,
.detail-side-card {
  padding: 26px;
}

.detail-main-card p {
  color: var(--muted);
  font-size: 17px;
}

.detail-side-card dl {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
}

.detail-side-card dt {
  color: var(--soft);
  font-size: 13px;
}

.detail-side-card dd {
  margin: -8px 0 0;
  color: var(--text);
  font-weight: 700;
}

.site-footer {
  margin-top: 72px;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(17, 24, 39, 0.86);
}

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

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

.footer-grid a {
  display: block;
  margin-top: 9px;
}

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

.footer-bottom {
  padding: 18px 16px;
  text-align: center;
  color: var(--soft);
  border-top: 1px solid rgba(148, 163, 184, 0.1);
}

[hidden] {
  display: none !important;
}

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

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

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

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

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

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

  .brand-tagline {
    display: none;
  }

  .hero-stage {
    min-height: 620px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    align-content: center;
    padding: 28px;
  }

  .hero-poster {
    display: none;
  }

  .hero-arrow {
    width: 40px;
    height: 40px;
    font-size: 26px;
  }

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

  .two-column-section,
  .detail-layout,
  .detail-hero-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .side-panel {
    position: static;
  }

  .library-filter {
    grid-template-columns: 1fr;
  }
}

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

  .header-inner {
    min-height: 64px;
  }

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

  .hero-stage {
    min-height: 560px;
    border-radius: 22px;
  }

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

  .content-section {
    margin-top: 44px;
  }

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

  .movie-grid,
  .featured-grid,
  .library-grid,
  .compact-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .movie-row {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .row-rank,
  .row-button {
    display: none;
  }

  .row-content h2 {
    font-size: 16px;
  }

  .player {
    border-radius: 14px;
  }
}
