:root {
  --blue-900: #0f2f6d;
  --blue-800: #13418f;
  --blue-700: #1d4ed8;
  --blue-600: #2563eb;
  --cyan-500: #06b6d4;
  --emerald-500: #10b981;
  --yellow-400: #facc15;
  --red-500: #ef4444;
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --white: #ffffff;
  --shadow-md: 0 14px 35px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 24px 70px rgba(15, 23, 42, 0.22);
  --radius-lg: 18px;
  --radius-xl: 26px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--slate-900);
  background: #f8fafc;
  line-height: 1.65;
}

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

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

button,
input,
select {
  font: inherit;
}

main {
  min-height: 65vh;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  color: var(--white);
  background: linear-gradient(90deg, rgba(29, 78, 216, 0.96), rgba(6, 182, 212, 0.92));
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.2);
  background: linear-gradient(90deg, rgba(15, 47, 109, 0.98), rgba(14, 116, 144, 0.96));
}

.header-inner {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}

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

.logo-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  color: var(--blue-700);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
}

.logo-text {
  font-size: 20px;
}

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

.nav-link {
  position: relative;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 3px;
  border-radius: 999px;
  background: var(--white);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

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

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.16);
  cursor: pointer;
}

.mobile-menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 16px;
}

.mobile-nav.is-open {
  display: grid;
  gap: 8px;
}

.mobile-nav-link {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.mobile-nav-link.active {
  background: var(--white);
  color: var(--blue-700);
}

.hero-slider {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700), var(--cyan-500));
}

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

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

.hero-bg,
.detail-bg,
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg {
  opacity: 0.55;
  transform: scale(1.04);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 74% 50%, rgba(6, 182, 212, 0.36), transparent 34%), linear-gradient(90deg, rgba(2, 6, 23, 0.9), rgba(15, 47, 109, 0.65), rgba(2, 6, 23, 0.38));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 760px;
  padding-right: 360px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #bfdbfe;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--blue-600);
}

.hero-content h1 {
  margin: 0 0 22px;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.hero-content h1 span {
  display: block;
  margin-top: 12px;
  color: #bfdbfe;
  font-size: clamp(24px, 3.7vw, 42px);
  letter-spacing: -0.02em;
}

.hero-desc {
  max-width: 650px;
  margin: 0 0 24px;
  color: #dbeafe;
  font-size: clamp(18px, 2.2vw, 24px);
}

.hero-tags,
.detail-meta,
.detail-tags,
.tag-row,
.movie-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
}

.hero-tags span,
.detail-meta span,
.detail-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 700;
}

.hero-tags span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

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

.btn-light {
  color: var(--blue-700);
  background: var(--white);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.22);
}

.btn-ghost {
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.86);
}

.btn-ghost:hover {
  color: var(--blue-700);
  background: var(--white);
}

.hero-panel {
  position: absolute;
  right: max(24px, calc((100vw - var(--container)) / 2));
  bottom: 82px;
  z-index: 4;
  width: min(340px, calc(100% - 48px));
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
}

.hero-search {
  display: flex;
  overflow: hidden;
  border-radius: 999px;
  background: var(--white);
}

.hero-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  padding: 13px 16px;
  outline: none;
  color: var(--slate-900);
}

.hero-search button {
  border: 0;
  padding: 0 18px;
  color: var(--white);
  background: var(--blue-600);
  font-weight: 800;
  cursor: pointer;
}

.hero-panel-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.hero-panel-links a {
  padding: 10px 8px;
  border-radius: 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.16);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: rgba(15, 23, 42, 0.34);
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
  background: var(--blue-600);
  transform: translateY(-50%) scale(1.05);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

.hero-dots,
.featured-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
}

.hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  z-index: 5;
}

.hero-dot,
.featured-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.active,
.featured-dot.active {
  width: 34px;
  background: var(--white);
}

.section {
  padding: 78px 0;
}

.no-top {
  padding-top: 0;
}

.white-section {
  background: var(--white);
}

.soft-section {
  background: linear-gradient(135deg, #f0fdf4, #eff6ff 48%, #ecfeff);
}

.section-title {
  margin-bottom: 28px;
}

.section-title span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--blue-600);
  font-weight: 900;
  letter-spacing: 0.12em;
  font-size: 13px;
}

.section-title h2,
.section-title h1 {
  margin: 0;
  color: var(--slate-900);
  font-size: clamp(28px, 3.5vw, 38px);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.row-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

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

.featured-carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  background: var(--slate-950);
}

.featured-track {
  position: relative;
  min-height: 420px;
}

.featured-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.55s ease;
}

.featured-slide.active {
  opacity: 1;
  z-index: 2;
}

.featured-slide a {
  position: relative;
  display: block;
  min-height: 420px;
  color: var(--white);
  overflow: hidden;
}

.featured-slide img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.featured-slide a:hover img {
  transform: scale(1.05);
}

.featured-slide a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.9), transparent 66%);
}

.featured-copy {
  position: absolute;
  left: 34px;
  right: 120px;
  bottom: 34px;
  z-index: 2;
}

.featured-copy h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
}

.featured-copy p {
  max-width: 760px;
  margin: 0 0 12px;
  color: #e2e8f0;
  font-size: 18px;
}

.featured-copy span {
  color: #bfdbfe;
  font-weight: 800;
}

.play-pulse {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(37, 99, 235, 0.82);
  box-shadow: 0 0 0 14px rgba(37, 99, 235, 0.18);
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}

.featured-slide a:hover .play-pulse {
  transform: translate(-50%, -50%) scale(1.08);
}

.featured-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  z-index: 4;
}

.scroll-cards {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(265px, 1fr);
  gap: 22px;
  overflow-x: auto;
  padding: 4px 2px 20px;
  scroll-snap-type: x proximity;
}

.scroll-cards .movie-card {
  min-width: 280px;
  scroll-snap-align: start;
}

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

.compact-grid {
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
}

.movie-card {
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.movie-card-link {
  display: block;
  height: 100%;
}

.poster-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-900), var(--cyan-500));
}

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

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

.type-badge,
.rank-badge,
.mini-rank {
  position: absolute;
  border-radius: 999px;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.type-badge {
  top: 12px;
  right: 12px;
  padding: 6px 10px;
  background: rgba(239, 68, 68, 0.92);
}

.rank-badge {
  left: 12px;
  top: 12px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, #f97316, #ef4444);
  box-shadow: 0 12px 26px rgba(239, 68, 68, 0.25);
}

.movie-card-body {
  padding: 16px;
}

.movie-card-body h2 {
  margin: 0 0 8px;
  color: var(--slate-900);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 900;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-card:hover h2 {
  color: var(--blue-600);
}

.movie-card-body p {
  height: 44px;
  margin: 0 0 12px;
  color: var(--slate-600);
  font-size: 14px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-meta {
  justify-content: space-between;
  margin-bottom: 12px;
  color: var(--slate-500);
  font-size: 12px;
  font-weight: 800;
}

.tag-row span,
.detail-tags span {
  color: var(--blue-700);
  background: #dbeafe;
}

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

.category-tile {
  position: relative;
  min-height: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.92), rgba(15, 47, 109, 0.34));
}

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

.category-tile div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
}

.category-tile h2 {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 900;
}

.category-tile p {
  margin: 0;
  color: #dbeafe;
  font-size: 14px;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
}

.rank-panel,
.side-card,
.content-card,
.filter-panel,
.category-overview-card {
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.rank-panel,
.side-card,
.content-card {
  padding: 24px;
}

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

.compact-card {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 16px;
  background: #f8fafc;
  transition: transform 0.2s ease, background 0.2s ease;
}

.compact-card:hover {
  transform: translateX(4px);
  background: #eff6ff;
}

.compact-card img {
  width: 64px;
  height: 82px;
  border-radius: 12px;
  object-fit: cover;
}

.compact-card h3 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.compact-card p {
  margin: 0;
  color: var(--slate-500);
  font-size: 12px;
  font-weight: 700;
}

.mini-rank {
  right: 10px;
  top: 10px;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  background: var(--blue-600);
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-900), var(--cyan-500));
}

.page-hero {
  padding: 86px 0;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  max-width: 820px;
  margin: 0 0 14px;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.page-hero p {
  max-width: 720px;
  margin: 0;
  color: #dbeafe;
  font-size: 18px;
}

.page-hero .eyebrow.dark {
  color: #bfdbfe;
}

.page-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.86), rgba(14, 116, 144, 0.62));
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 800;
}

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

.category-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.category-overview-card {
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-overview-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.category-thumb-stack {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 150px;
  overflow: hidden;
}

.category-thumb-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-overview-body {
  padding: 22px;
}

.category-overview-body h2 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 900;
}

.category-overview-body p {
  margin: 0 0 16px;
  color: var(--slate-600);
  font-size: 14px;
}

.category-overview-body span {
  color: var(--blue-600);
  font-weight: 900;
}

.filter-panel {
  margin-bottom: 30px;
  padding: 20px;
}

.filter-grid {
  display: grid;
  grid-template-columns: minmax(240px, 2fr) repeat(4, minmax(140px, 1fr));
  gap: 14px;
}

.filter-grid label {
  display: grid;
  gap: 6px;
  color: var(--slate-700);
  font-weight: 800;
  font-size: 13px;
}

.filter-grid input,
.filter-grid select {
  width: 100%;
  height: 44px;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  padding: 0 13px;
  color: var(--slate-900);
  background: #f8fafc;
  outline: none;
}

.filter-grid input:focus,
.filter-grid select:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.filter-empty {
  display: none;
  margin: 24px 0 0;
  padding: 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  color: var(--slate-600);
  background: #f8fafc;
  font-weight: 800;
}

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

.detail-hero {
  padding: 42px 0 62px;
}

.detail-bg {
  opacity: 0.45;
}

.detail-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.93), rgba(15, 47, 109, 0.72), rgba(6, 182, 212, 0.32));
}

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

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr);
  gap: 34px;
  align-items: center;
}

.player-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--slate-950);
  box-shadow: var(--shadow-lg);
}

.video-shell {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--slate-950);
}

.movie-video {
  width: 100%;
  height: 100%;
  display: block;
  background: var(--slate-950);
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.2), rgba(2, 6, 23, 0.58));
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

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

.big-play {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: rgba(37, 99, 235, 0.92);
  box-shadow: 0 0 0 18px rgba(37, 99, 235, 0.18), 0 20px 45px rgba(2, 6, 23, 0.35);
  font-size: 42px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.big-play:hover,
.player-overlay:focus .big-play {
  transform: scale(1.08);
}

.detail-info h1 {
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.detail-one-line {
  margin: 0 0 22px;
  color: #dbeafe;
  font-size: 18px;
}

.detail-meta span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
}

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

.detail-content-section {
  padding-top: 54px;
}

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

.content-card h2,
.side-card h2 {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 900;
  color: var(--slate-900);
}

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

.content-card p {
  margin: 0;
  color: var(--slate-700);
  font-size: 17px;
  line-height: 1.9;
}

.content-card .lead-text {
  margin-bottom: 12px;
  color: var(--slate-900);
  font-weight: 800;
}

.light-tags {
  margin-top: 0;
}

.side-card,
.sticky-rank {
  position: sticky;
  top: 94px;
  align-self: start;
}

.rank-layout {
  align-items: start;
}

.site-footer {
  color: #cbd5e1;
  background: var(--slate-950);
}

.footer-inner {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 38px;
  padding: 54px 0;
}

.footer-logo .logo-mark {
  color: var(--slate-950);
}

.footer-brand p {
  max-width: 420px;
  margin: 18px 0 0;
  color: #94a3b8;
}

.footer-links h2 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
}

.footer-link-grid {
  display: grid;
  gap: 9px;
}

.footer-link-grid a {
  color: #94a3b8;
  transition: color 0.2s ease;
}

.footer-link-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  padding: 18px 0;
  text-align: center;
  color: #94a3b8;
  font-size: 14px;
}

@media (max-width: 1100px) {
  .hero-content {
    padding-right: 0;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -122px auto 72px;
    width: min(620px, calc(100% - 32px));
  }

  .two-column,
  .detail-content-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .side-card,
  .sticky-rank {
    position: static;
  }
}

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

  .mobile-menu-button {
    display: block;
  }

  .hero-slider,
  .hero-content {
    min-height: 560px;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .hero-content h1 span {
    font-size: 24px;
  }

  .hero-arrow {
    display: none;
  }

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

  .filter-search {
    grid-column: 1 / -1;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .container,
  .header-inner,
  .mobile-nav,
  .footer-inner {
    width: min(100% - 24px, var(--container));
  }

  .section {
    padding: 54px 0;
  }

  .logo-text {
    font-size: 18px;
  }

  .hero-slider,
  .hero-content {
    min-height: 640px;
  }

  .hero-content {
    justify-content: flex-start;
    padding-top: 76px;
  }

  .hero-panel {
    margin-top: -180px;
  }

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

  .hero-actions,
  .row-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .featured-track,
  .featured-slide a,
  .featured-slide img {
    min-height: 360px;
    height: 360px;
  }

  .featured-copy {
    left: 20px;
    right: 20px;
    bottom: 34px;
  }

  .play-pulse {
    width: 68px;
    height: 68px;
  }

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

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

  .movie-card-body h2 {
    font-size: 16px;
  }

  .movie-card-body p {
    height: 40px;
    font-size: 13px;
  }

  .tag-row {
    display: none;
  }

  .detail-hero {
    padding-top: 28px;
  }

  .big-play {
    width: 76px;
    height: 76px;
    font-size: 34px;
  }

  .content-card,
  .side-card,
  .rank-panel {
    padding: 18px;
  }
}
