:root {
  --blue-950: #172554;
  --blue-900: #1e3a8a;
  --blue-800: #1e40af;
  --blue-700: #1d4ed8;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --indigo-600: #4f46e5;
  --purple-700: #7e22ce;
  --pink-500: #ec4899;
  --amber-500: #f59e0b;
  --orange-600: #ea580c;
  --stone-950: #0c0a09;
  --stone-900: #1c1917;
  --stone-800: #292524;
  --stone-700: #44403c;
  --stone-600: #57534e;
  --stone-200: #e7e5e4;
  --stone-100: #f5f5f4;
  --white: #ffffff;
  --shadow: 0 20px 45px rgba(30, 58, 138, 0.18);
  --soft-shadow: 0 14px 30px rgba(15, 23, 42, 0.11);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--stone-800);
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 45%, #eff6ff 100%);
}

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

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, #eff6ff 0%, #eef2ff 52%, #faf5ff 100%);
  border-bottom: 2px solid #bfdbfe;
  box-shadow: 0 12px 30px rgba(30, 64, 175, 0.12);
}

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

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

.brand-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-600), var(--purple-700));
  box-shadow: 0 12px 28px rgba(79, 70, 229, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.brand:hover .brand-icon {
  transform: scale(1.08) rotate(-2deg);
  box-shadow: 0 16px 34px rgba(79, 70, 229, 0.35);
}

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

.brand-copy strong,
.footer-brand strong {
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, var(--blue-900), var(--purple-700));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-copy small,
.footer-brand small {
  margin-top: 4px;
  color: var(--blue-700);
  font-size: 0.76rem;
  font-weight: 700;
}

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

.nav-link {
  padding: 10px 14px;
  border-radius: 12px;
  color: var(--blue-950);
  font-weight: 800;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.nav-link:hover {
  color: var(--blue-800);
  background: #dbeafe;
}

.nav-link.is-active {
  color: var(--white);
  background: linear-gradient(90deg, var(--blue-600), var(--indigo-600));
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.28);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: rgba(219, 234, 254, 0.8);
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--blue-950);
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 14px;
  gap: 8px;
}

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

.quick-strip {
  border-top: 1px solid #dbeafe;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
}

.quick-strip-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px 0;
}

.quick-strip a {
  flex: 0 0 auto;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--blue-700);
  font-size: 0.9rem;
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease;
}

.quick-strip a:hover {
  color: var(--blue-950);
  background: #eff6ff;
}

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: #020617;
}

.hero-track,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.75s ease;
}

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

.hero-bg {
  position: absolute;
  inset: -5%;
  background-size: cover;
  background-position: center;
  filter: blur(24px) saturate(1.1);
  transform: scale(1.08);
  opacity: 0.42;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 25%, rgba(124, 58, 237, 0.42), transparent 32%),
    radial-gradient(circle at 22% 18%, rgba(37, 99, 235, 0.45), transparent 32%),
    linear-gradient(120deg, rgba(2, 6, 23, 0.95), rgba(30, 41, 59, 0.62) 48%, rgba(15, 23, 42, 0.92));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  min-height: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1180px;
  padding-right: min(52vw, 620px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 14px;
  border: 1px solid rgba(147, 197, 253, 0.34);
  border-radius: 999px;
  color: #bfdbfe;
  background: rgba(59, 130, 246, 0.16);
  backdrop-filter: blur(12px);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.eyebrow.dark {
  color: var(--blue-800);
  border-color: #bfdbfe;
  background: #eff6ff;
}

.hero h1 {
  margin: 0;
  max-width: 720px;
  color: transparent;
  background: linear-gradient(90deg, #dbeafe, #f5f3ff, #fce7f3);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.98;
  letter-spacing: -0.08em;
  font-weight: 950;
}

.hero p {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(219, 234, 254, 0.9);
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  line-height: 1.8;
}

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

.hero-tags {
  margin-top: 22px;
}

.hero-tags span,
.detail-facts span {
  padding: 8px 12px;
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-weight: 800;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border-radius: 14px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn.primary {
  color: var(--white);
  background: linear-gradient(90deg, var(--blue-500), var(--indigo-600));
  box-shadow: 0 16px 30px rgba(37, 99, 235, 0.32);
}

.btn.glass {
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.hero-cover {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: max(32px, calc((100vw - 1180px) / 2));
  width: min(33vw, 380px);
  aspect-ratio: 3 / 4;
  transform: translateY(-50%);
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.45);
}

.hero-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.hero-dot {
  width: 42px;
  height: 7px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.hero-dot.is-active {
  background: var(--white);
}

.home-search {
  position: relative;
  z-index: 5;
  width: min(1060px, calc(100% - 32px));
  margin: -45px auto 0;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.home-search-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
}

.home-search-box label,
.search-box {
  display: grid;
  gap: 6px;
}

.home-search-box span,
.search-box span {
  color: var(--stone-600);
  font-size: 0.8rem;
  font-weight: 900;
}

.home-search-box input,
.search-box input {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border: 2px solid #dbeafe;
  border-radius: 14px;
  color: var(--stone-800);
  background: #ffffff;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.home-search-box input:focus,
.search-box input:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.14);
}

.home-search-box button {
  align-self: end;
  min-height: 50px;
  padding: 0 24px;
  border: 0;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--amber-500), var(--orange-600));
  cursor: pointer;
  font-weight: 900;
}

.home-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.home-shortcuts a {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--blue-800);
  background: #eff6ff;
  font-size: 0.9rem;
  font-weight: 800;
}

.section {
  padding: 74px 0;
}

.section.muted {
  background: linear-gradient(135deg, #f5f5f4, #eff6ff);
}

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

.section-head.centered {
  justify-content: center;
  text-align: center;
}

.section-head h2,
.page-hero h1,
.detail-intro h1,
.content-card h2,
.search-panel h2 {
  margin: 0;
  color: var(--stone-800);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.06em;
  font-weight: 950;
}

.section-head p {
  margin: 10px 0 0;
  color: var(--stone-600);
}

.section-link {
  color: var(--blue-700);
  font-weight: 900;
}

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

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

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

.movie-card {
  overflow: hidden;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 44px rgba(15, 23, 42, 0.16);
}

.movie-poster {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, #e0e7ff, #f5f3ff);
}

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

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

.movie-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.74));
}

.movie-badge,
.movie-score {
  position: absolute;
  z-index: 2;
  top: 12px;
  padding: 6px 9px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.movie-badge {
  left: 12px;
  background: rgba(37, 99, 235, 0.86);
}

.movie-score {
  right: 12px;
  background: rgba(245, 158, 11, 0.92);
}

.movie-info {
  padding: 16px;
}

.movie-info h3 {
  min-height: 2.8em;
  margin: 0 0 9px;
  color: var(--stone-800);
  font-size: 1.05rem;
  line-height: 1.35;
  font-weight: 900;
}

.movie-info h3 a:hover,
.rank-body h3 a:hover {
  color: var(--blue-700);
}

.movie-info p,
.rank-body p,
.content-card p,
.info-card p {
  color: var(--stone-600);
  line-height: 1.8;
}

.line-2 {
  display: -webkit-box;
  min-height: 3.4em;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-meta {
  margin-top: 12px;
  color: var(--stone-600);
  font-size: 0.82rem;
}

.movie-meta span {
  padding: 5px 8px;
  border-radius: 999px;
  background: #f5f5f4;
}

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

.category-tile {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border-radius: 24px;
  color: #ffffff;
  isolation: isolate;
  box-shadow: var(--soft-shadow);
}

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

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

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

.category-tile span,
.category-tile strong,
.category-tile small {
  position: absolute;
  left: 18px;
  right: 18px;
}

.category-tile span {
  bottom: 76px;
  font-size: 1.3rem;
  font-weight: 950;
}

.category-tile strong {
  top: 16px;
  right: auto;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.78);
}

.category-tile small {
  bottom: 20px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.two-col {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 30px;
  align-items: start;
}

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

.rank-list.compact .rank-item:nth-child(n+7) {
  display: none;
}

.rank-item {
  display: grid;
  grid-template-columns: 86px 48px 1fr;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.rank-poster {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 14px;
  background: #e0e7ff;
}

.rank-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rank-num {
  color: transparent;
  background: linear-gradient(135deg, var(--blue-600), var(--purple-700));
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 1.8rem;
  font-weight: 950;
}

.rank-body h3 {
  margin: 0 0 5px;
  font-size: 1.05rem;
  font-weight: 900;
}

.rank-body p {
  margin: 0;
}

.spotlight-card,
.search-panel,
.info-card,
.content-card,
.player-card {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--soft-shadow);
}

.spotlight-card {
  position: sticky;
  top: 132px;
  padding: 30px;
  border: 2px solid #bfdbfe;
}

.spotlight-card h2 {
  margin: 0 0 12px;
  font-size: 2.3rem;
  line-height: 1.1;
  letter-spacing: -0.06em;
}

.spotlight-stats {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 12px;
  margin: 24px 0;
  align-items: baseline;
}

.spotlight-stats strong {
  color: var(--blue-700);
  font-size: 1.9rem;
  font-weight: 950;
}

.page-hero {
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 20%, rgba(59, 130, 246, 0.44), transparent 34%),
    radial-gradient(circle at 88% 16%, rgba(126, 34, 206, 0.36), transparent 32%),
    linear-gradient(130deg, var(--blue-950), #312e81 52%, #111827);
  padding: 96px 0;
}

.page-hero.slim {
  padding: 70px 0;
}

.page-hero h1 {
  color: #ffffff;
}

.page-hero p {
  max-width: 760px;
  color: #dbeafe;
  font-size: 1.12rem;
  line-height: 1.8;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: #bfdbfe;
  font-size: 0.92rem;
}

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

.search-panel {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 460px);
  gap: 20px;
  align-items: center;
  margin-bottom: 24px;
  padding: 22px;
}

.search-panel h2 {
  font-size: 1.6rem;
}

.search-panel p {
  margin: 8px 0 0;
  color: var(--stone-600);
}

.result-count {
  margin-bottom: 22px;
  color: var(--blue-700);
  font-weight: 900;
}

.is-hidden {
  display: none !important;
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 22px;
  padding: 18px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
}

.category-cover-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  overflow: hidden;
  border-radius: 18px;
}

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

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

.category-overview-body h2 {
  margin: 8px 0;
  font-size: 1.45rem;
}

.category-overview-body p {
  color: var(--stone-600);
  line-height: 1.7;
}

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

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

.detail-bg {
  background-size: cover;
  background-position: center;
  filter: blur(24px);
  transform: scale(1.08);
  opacity: 0.38;
}

.detail-overlay {
  background:
    radial-gradient(circle at 75% 18%, rgba(126, 34, 206, 0.42), transparent 34%),
    linear-gradient(120deg, rgba(2, 6, 23, 0.96), rgba(30, 41, 59, 0.72));
}

.detail-grid {
  position: relative;
  z-index: 2;
  min-height: 600px;
  display: grid;
  grid-template-columns: minmax(220px, 340px) 1fr;
  align-items: center;
  gap: 44px;
  padding: 56px 0;
}

.detail-poster {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.4);
}

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

.detail-intro h1 {
  color: #ffffff;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
}

.detail-intro p {
  max-width: 760px;
  color: #dbeafe;
  font-size: 1.18rem;
  line-height: 1.8;
}

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

.detail-main,
.detail-side {
  display: grid;
  gap: 22px;
}

.detail-side {
  position: sticky;
  top: 132px;
}

.player-card,
.content-card,
.info-card {
  padding: 24px;
}

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

.video-shell video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000000;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  border: 0;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.1), rgba(2, 6, 23, 0.64));
  cursor: pointer;
}

.play-overlay span {
  width: 86px;
  height: 86px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-500), var(--indigo-600));
  box-shadow: 0 24px 45px rgba(37, 99, 235, 0.38);
  font-size: 2rem;
}

.play-overlay strong {
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}

.play-overlay.is-hidden {
  display: none;
}

.info-list {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px;
  margin: 0;
}

.info-list dt {
  color: var(--stone-600);
  font-weight: 900;
}

.info-list dd {
  margin: 0;
  color: var(--stone-800);
}

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

.tag-cloud a {
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--blue-800);
  background: #eff6ff;
  font-size: 0.9rem;
  font-weight: 800;
}

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

.info-card h2,
.content-card h2 {
  margin-bottom: 12px;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.site-footer {
  color: #bfdbfe;
  background: linear-gradient(135deg, #1c1917, #172554 55%, #1c1917);
  border-top: 4px solid var(--blue-700);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
  gap: 34px;
}

.footer-brand .brand-icon {
  width: 42px;
  height: 42px;
}

.footer-brand strong {
  color: #dbeafe;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
}

.footer-brand small {
  color: #93c5fd;
}

.site-footer p,
.site-footer li {
  color: #93c5fd;
  line-height: 1.8;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: #dbeafe;
  font-size: 1.05rem;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(147, 197, 253, 0.22);
}

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

  .menu-toggle {
    display: inline-flex;
  }

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

  .hero-content {
    padding-right: 0;
    padding-top: 92px;
    justify-content: flex-start;
  }

  .hero-cover {
    width: min(58vw, 280px);
    top: auto;
    right: 20px;
    bottom: 70px;
    transform: none;
    opacity: 0.82;
  }

  .movie-grid,
  .feature-grid,
  .related-grid,
  .category-grid,
  .info-grid,
  .category-overview-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .spotlight-card,
  .detail-side {
    position: static;
  }

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

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

  .brand-icon {
    width: 42px;
    height: 42px;
  }

  .brand-copy strong {
    font-size: 1.12rem;
  }

  .brand-copy small {
    font-size: 0.68rem;
  }

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

  .hero h1 {
    font-size: 3rem;
  }

  .hero-cover {
    width: 210px;
    right: 16px;
    bottom: 72px;
    border-radius: 22px;
  }

  .home-search-box {
    grid-template-columns: 1fr;
  }

  .movie-grid,
  .feature-grid,
  .related-grid,
  .category-grid,
  .info-grid,
  .category-overview-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-head,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .rank-item {
    grid-template-columns: 72px 38px 1fr;
    gap: 12px;
  }

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

  .detail-grid {
    gap: 24px;
  }

  .detail-poster {
    width: min(280px, 82vw);
  }

  .detail-intro h1 {
    font-size: 2.5rem;
  }
}
