:root {
  --sky-50: #f0f9ff;
  --sky-100: #e0f2fe;
  --sky-500: #0ea5e9;
  --sky-600: #0284c7;
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --shadow-sm: 0 4px 10px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 14px 32px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 28px 70px rgba(15, 23, 42, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--gray-800);
  background: linear-gradient(180deg, #ffffff 0%, rgba(240, 249, 255, 0.65) 45%, rgba(255, 251, 235, 0.7) 100%);
  min-height: 100vh;
}

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(186, 230, 253, 0.6);
  background: linear-gradient(90deg, rgba(240, 249, 255, 0.94), rgba(255, 251, 235, 0.94), rgba(240, 249, 255, 0.94));
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(2, 132, 199, 0.12);
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #ffffff;
  font-weight: 900;
  font-size: 22px;
  background: linear-gradient(135deg, #38bdf8, #f59e0b);
  box-shadow: var(--shadow-sm);
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong,
.footer-brand strong {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, var(--sky-600), var(--amber-500));
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}

.brand-copy small {
  color: var(--gray-500);
  font-size: 12px;
  margin-top: 4px;
}

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

.nav-link {
  padding: 10px 14px;
  border-radius: 12px;
  color: var(--gray-700);
  font-weight: 700;
  transition: all 0.25s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--sky-700, #0369a1);
  background: linear-gradient(90deg, var(--sky-100), var(--amber-100));
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search input {
  width: 230px;
  border: 1px solid rgba(14, 165, 233, 0.28);
  border-radius: 999px;
  padding: 10px 16px;
  outline: none;
  background: rgba(255, 255, 255, 0.82);
}

.header-search input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--sky-500);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.18);
}

.header-search button,
.btn {
  border: 0;
  border-radius: 999px;
  padding: 11px 18px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.header-search button,
.btn.primary {
  color: #ffffff;
  background: linear-gradient(90deg, var(--sky-500), var(--amber-500));
  box-shadow: 0 12px 28px rgba(14, 165, 233, 0.25);
}

.btn.ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
}

.btn.light {
  color: var(--sky-600);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.header-search button:hover,
.btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-md);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  border-radius: 12px;
  background: rgba(224, 242, 254, 0.9);
  color: var(--gray-800);
  width: 44px;
  height: 44px;
  font-size: 24px;
}

.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: #020617;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s ease;
}

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

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

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.86), rgba(15, 23, 42, 0.55), rgba(15, 23, 42, 0.12));
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-copy {
  max-width: 720px;
  color: #ffffff;
  animation: fadeIn 0.6s ease both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 15px;
  margin-bottom: 18px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  background: linear-gradient(90deg, rgba(14, 165, 233, 0.86), rgba(245, 158, 11, 0.86));
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.hero h1,
.hero h2 {
  margin: 0 0 18px;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.05em;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.4);
}

.hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2.4vw, 22px);
  line-height: 1.7;
  max-width: 680px;
}

.hero-tags,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.hero-tags span,
.detail-meta span,
.detail-meta strong {
  border-radius: 999px;
  padding: 8px 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
}

.detail-meta strong {
  background: linear-gradient(90deg, var(--sky-500), var(--amber-500));
  border: 0;
}

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

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #ffffff;
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.hero-prev {
  left: 22px;
}

.hero-next {
  right: 22px;
}

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

.hero-dot {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.52);
  transition: all 0.25s ease;
}

.hero-dot.is-active {
  width: 36px;
  background: #ffffff;
}

.section-space {
  padding: 72px 0;
}

.wide-band {
  background: linear-gradient(90deg, rgba(224, 242, 254, 0.65), rgba(254, 243, 199, 0.7));
}

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

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

.section-line {
  width: 5px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--sky-500), var(--amber-500));
}

.section-head h2,
.page-hero h1,
.detail-head h1,
.detail-article h2,
.detail-side h2 {
  margin: 0;
  color: var(--gray-800);
  letter-spacing: -0.04em;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 38px);
}

.section-head p {
  max-width: 520px;
  margin: 0;
  color: var(--gray-500);
  line-height: 1.7;
}

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

.movie-card {
  overflow: hidden;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.movie-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.poster {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, var(--sky-100), var(--amber-100));
}

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

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

.poster-glow {
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(180deg, transparent, rgba(2, 6, 23, 0.62));
}

.rank-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--sky-500), var(--amber-500));
  box-shadow: var(--shadow-sm);
}

.card-body {
  padding: 18px;
}

.card-meta {
  color: var(--sky-600);
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 8px;
}

.movie-card h2 {
  margin: 0 0 10px;
  color: var(--gray-900);
  font-size: 20px;
  line-height: 1.3;
}

.movie-card h2 a:hover,
.text-link:hover {
  color: var(--sky-600);
}

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

.tag-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  font-size: 13px;
  color: var(--gray-500);
}

.tag-row strong {
  color: #ffffff;
  border-radius: 999px;
  padding: 5px 10px;
  background: linear-gradient(90deg, var(--sky-500), var(--amber-500));
}

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

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

.movie-rail {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 6px 2px 18px;
  scroll-snap-type: x mandatory;
}

.rail-item {
  flex: 0 0 290px;
  scroll-snap-align: start;
}

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

.category-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 24px;
  border-radius: 28px;
  color: #ffffff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.12), rgba(15, 23, 42, 0.82));
}

.category-card span {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 10px;
}

.category-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.6;
}

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

.rank-row,
.top-list-row {
  display: grid;
  align-items: center;
  gap: 14px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.rank-row {
  grid-template-columns: 42px 58px 1fr auto;
  padding: 12px;
}

.rank-row:hover,
.top-list-row:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.rank-row span,
.top-list-row span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--sky-500), var(--amber-500));
}

.rank-row img {
  width: 58px;
  height: 76px;
  border-radius: 12px;
  object-fit: cover;
}

.rank-row strong,
.top-list-row strong {
  color: var(--gray-900);
}

.rank-row em,
.top-list-row em {
  color: var(--sky-600);
  font-style: normal;
  font-weight: 900;
}

.center-actions {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.callout-card {
  text-align: center;
  padding: clamp(38px, 7vw, 72px);
  border-radius: 36px;
  color: #ffffff;
  background: radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.35), transparent 28%), linear-gradient(90deg, var(--sky-500), var(--amber-500));
  box-shadow: var(--shadow-xl);
}

.callout-card h2 {
  margin: 0 0 14px;
  font-size: clamp(32px, 5vw, 52px);
}

.callout-card p {
  margin: 0 auto 28px;
  max-width: 650px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, #082f49, #92400e);
}

.small-hero {
  padding: 78px 0 84px;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20px 20px, rgba(255, 255, 255, 0.24) 2px, transparent 0);
  background-size: 42px 42px;
  opacity: 0.35;
}

.page-hero .container {
  position: relative;
}

.page-hero h1 {
  color: #ffffff;
  font-size: clamp(40px, 6vw, 68px);
  margin-bottom: 18px;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.8;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.82);
}

.breadcrumbs a:hover {
  color: #ffffff;
}

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

.overview-card {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 22px;
  align-items: center;
  padding: 22px;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.overview-thumbs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  overflow: hidden;
  border-radius: 22px;
}

.overview-thumbs img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.overview-card h2 {
  margin: 0 0 10px;
  color: var(--gray-900);
}

.overview-card p {
  margin: 0 0 16px;
  color: var(--gray-500);
  line-height: 1.7;
}

.text-link {
  color: var(--sky-600);
  font-weight: 900;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 150px 150px 150px;
  gap: 14px;
  margin-bottom: 28px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  border: 1px solid rgba(14, 165, 233, 0.28);
  border-radius: 16px;
  padding: 12px 14px;
  outline: none;
  background: #ffffff;
}

.filter-empty {
  display: none;
  margin: 18px 0 0;
  padding: 24px;
  border-radius: 20px;
  color: var(--gray-500);
  text-align: center;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

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

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

.top-list-row {
  grid-template-columns: 44px 1fr auto;
  padding: 16px;
}

.detail-hero {
  min-height: 560px;
  padding: 32px 0 66px;
}

.detail-bg,
.detail-overlay {
  position: absolute;
  inset: 0;
}

.detail-overlay {
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.9), rgba(15, 23, 42, 0.68), rgba(15, 23, 42, 0.42));
}

.detail-crumb,
.detail-head {
  position: relative;
  z-index: 2;
}

.detail-head {
  display: grid;
  grid-template-columns: 250px 1fr;
  align-items: center;
  gap: 34px;
  color: #ffffff;
}

.detail-poster {
  width: 250px;
  aspect-ratio: 3 / 4;
  border-radius: 30px;
  object-fit: cover;
  box-shadow: var(--shadow-xl);
}

.detail-head h1 {
  color: #ffffff;
  font-size: clamp(38px, 6vw, 64px);
  margin-bottom: 18px;
}

.detail-head p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.8;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-cloud a {
  padding: 8px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.player-section {
  margin-top: -56px;
  position: relative;
  z-index: 5;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: #020617;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 16 / 9;
}

.movie-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000000;
}

.player-cover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.12), rgba(2, 6, 23, 0.68));
}

.player-shell.is-playing .player-cover {
  opacity: 0;
  pointer-events: none;
}

.player-play {
  width: 88px;
  height: 88px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 6px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 34px;
  background: linear-gradient(135deg, var(--sky-500), var(--amber-500));
  box-shadow: var(--shadow-xl);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 26px;
  padding-top: 52px;
}

.detail-article,
.detail-side {
  border-radius: 30px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.detail-article {
  padding: clamp(24px, 4vw, 42px);
}

.detail-article h2 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 28px;
}

.detail-article p {
  margin: 0 0 28px;
  color: var(--gray-700);
  font-size: 17px;
  line-height: 2;
}

.detail-side {
  align-self: start;
  padding: 26px;
}

.detail-side h2 {
  font-size: 24px;
  margin-bottom: 18px;
}

.detail-side dl {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px 16px;
  margin: 0;
}

.detail-side dt {
  color: var(--gray-500);
}

.detail-side dd {
  margin: 0;
  color: var(--gray-900);
  font-weight: 800;
}

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

.site-footer {
  margin-top: 36px;
  border-top: 1px solid var(--gray-200);
  background: linear-gradient(180deg, #ffffff, var(--gray-100));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 38px;
  padding: 50px 0;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--gray-900);
  font-size: 18px;
}

.site-footer p {
  color: var(--gray-500);
  line-height: 1.8;
}

.footer-links {
  display: grid;
  gap: 10px;
  color: var(--gray-600, #4b5563);
}

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

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

.footer-bottom {
  padding: 18px 0 28px;
  text-align: center;
  color: var(--gray-500);
  border-top: 1px solid var(--gray-200);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

  .rank-panel,
  .top-list,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .detail-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .header-inner {
    min-height: 68px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-md);
  }

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

  .nav-link {
    padding: 13px 14px;
  }

  .hero {
    height: 560px;
  }

  .hero-arrow {
    display: none;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 12px;
  }

  .movie-grid,
  .category-grid,
  .overview-grid,
  .rank-panel,
  .top-list,
  .footer-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

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

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

  .detail-head {
    grid-template-columns: 1fr;
  }

  .detail-poster {
    width: 210px;
  }
}

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

  .brand-copy strong {
    font-size: 20px;
  }

  .hero {
    height: 520px;
  }

  .hero h1,
  .hero h2 {
    font-size: 38px;
  }

  .section-space {
    padding: 52px 0;
  }

  .movie-grid {
    gap: 18px;
  }

  .rail-item {
    flex-basis: 250px;
  }

  .detail-hero {
    min-height: auto;
  }

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

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