:root {
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-850: #142033;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-300: #cbd5e1;
  --slate-100: #f1f5f9;
  --cyan-500: #06b6d4;
  --cyan-400: #22d3ee;
  --blue-500: #3b82f6;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--slate-900);
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 45%, #ecfeff 100%);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--white);
  background: linear-gradient(90deg, var(--slate-950), var(--slate-800), #083344);
  box-shadow: 0 12px 36px rgba(2, 6, 23, 0.32);
}

.nav-inner {
  width: min(1280px, calc(100% - 32px));
  height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--slate-950);
  background: linear-gradient(135deg, var(--cyan-400), var(--blue-500));
  font-weight: 900;
  box-shadow: 0 0 24px rgba(34, 211, 238, 0.42);
  transition: transform 0.3s ease;
}

.brand:hover .brand-mark {
  transform: rotate(90deg) scale(1.04);
}

.brand-mark.small {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  font-size: 15px;
}

.brand-text {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, var(--cyan-400), #93c5fd);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  font-size: 15px;
  color: #e2e8f0;
}

.nav-links a {
  transition: color 0.2s ease;
}

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

.nav-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-search input,
.mobile-search input {
  width: 210px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 999px;
  padding: 9px 16px;
  color: var(--white);
  background: rgba(30, 41, 59, 0.9);
  outline: none;
  transition: width 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.nav-search input:focus {
  width: 270px;
  border-color: var(--cyan-400);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.18);
}

.nav-search button,
.mobile-search button,
.filter-bar button {
  border: none;
  border-radius: 999px;
  padding: 9px 16px;
  color: var(--white);
  background: var(--cyan-500);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-search button:hover,
.mobile-search button:hover,
.filter-bar button:hover {
  background: #0891b2;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  margin: 4px auto;
  display: block;
  background: var(--white);
}

.mobile-panel {
  display: none;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  background: var(--slate-900);
}

.mobile-panel.is-open {
  display: block;
}

.mobile-panel nav,
.mobile-search {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}

.mobile-panel nav {
  padding: 14px 0 4px;
  display: grid;
  gap: 8px;
}

.mobile-panel a {
  padding: 9px 0;
  color: #e2e8f0;
}

.mobile-search {
  display: flex;
  gap: 10px;
  padding: 12px 0 18px;
}

.mobile-search input {
  flex: 1;
  width: auto;
}

.hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: var(--slate-950);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(0deg, #f8fafc, rgba(248, 250, 252, 0));
  pointer-events: none;
  z-index: 4;
}

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

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

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px) saturate(1.1);
  transform: scale(1.06);
  opacity: 0.45;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(34, 211, 238, 0.32), transparent 32%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.92), rgba(15, 23, 42, 0.74) 48%, rgba(8, 47, 73, 0.62));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(1280px, calc(100% - 32px));
  min-height: 640px;
  margin: 0 auto;
  padding: 82px 0 116px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 56px;
}

.hero-copy {
  max-width: 760px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan-400);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.detail-copy h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.hero h1 span {
  display: block;
  margin-top: 10px;
  color: var(--cyan-400);
}

.hero-desc {
  max-width: 720px;
  margin: 24px 0 0;
  color: #cbd5e1;
  font-size: 20px;
}

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

.hero-actions.center {
  justify-content: center;
}

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

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

.btn.primary {
  color: var(--white);
  background: var(--cyan-500);
  box-shadow: 0 18px 36px rgba(6, 182, 212, 0.32);
}

.btn.primary:hover {
  background: #0891b2;
  box-shadow: 0 22px 46px rgba(6, 182, 212, 0.44);
}

.btn.ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
}

.btn.line {
  color: var(--cyan-400);
  border: 1px solid rgba(34, 211, 238, 0.4);
  background: rgba(8, 47, 73, 0.22);
}

.hero-poster {
  position: relative;
  display: block;
  border-radius: 30px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--slate-800);
  box-shadow: 0 35px 90px rgba(2, 6, 23, 0.55);
  transform: rotate(2deg);
  transition: transform 0.35s ease;
}

.hero-poster:hover {
  transform: rotate(0deg) translateY(-8px);
}

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

.hero-poster span {
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(6, 182, 212, 0.92);
  font-weight: 900;
}

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

.hero-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
  width: 34px;
  background: var(--cyan-400);
}

.stats-band {
  width: min(1280px, calc(100% - 32px));
  margin: -52px auto 0;
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat-card {
  padding: 24px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.2);
}

.stat-card strong {
  display: block;
  color: var(--slate-900);
  font-size: 30px;
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 8px;
  color: var(--slate-500);
}

.section {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

.section.alt {
  width: 100%;
  padding-left: max(16px, calc((100% - 1280px) / 2));
  padding-right: max(16px, calc((100% - 1280px) / 2));
  background: linear-gradient(135deg, rgba(241, 245, 249, 0.78), rgba(236, 254, 255, 0.82));
}

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

.section-head.compact {
  margin-bottom: 24px;
}

.section-head h2,
.rank-title h2,
.footer-col h2,
.content-card h2 {
  margin: 0 0 8px;
  color: var(--slate-900);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.18;
  font-weight: 950;
  letter-spacing: -0.03em;
}

.section-head p {
  margin: 0;
  color: var(--slate-500);
}

.section-head a,
.rank-title a {
  color: #0891b2;
  font-weight: 900;
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.18);
}

.card-cover {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, var(--slate-800), #164e63);
}

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

.movie-card:hover .card-cover img {
  transform: scale(1.08);
  opacity: 0.9;
}

.card-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.1), rgba(2, 6, 23, 0.58));
  opacity: 0.72;
  transition: opacity 0.25s ease;
}

.movie-card:hover .card-cover::after {
  opacity: 0.45;
}

.card-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #0891b2;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(2, 6, 23, 0.34);
  transform: translate(-50%, -50%) scale(0.92);
  transition: transform 0.25s ease;
}

.movie-card:hover .card-play {
  transform: translate(-50%, -50%) scale(1.08);
}

.card-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 3;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(6, 182, 212, 0.94);
  font-size: 12px;
  font-weight: 900;
}

.card-body {
  padding: 18px;
}

.card-body h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 900;
}

.card-body h3 a:hover {
  color: #0891b2;
}

.card-meta,
.card-desc {
  margin: 0;
  color: var(--slate-500);
  font-size: 14px;
}

.card-desc {
  min-height: 44px;
  margin-top: 10px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

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

.tag-row span,
.detail-tags span {
  padding: 5px 9px;
  border-radius: 999px;
  color: #0e7490;
  background: #ecfeff;
  font-size: 12px;
  font-weight: 800;
}

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

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

.category-card {
  padding: 22px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 14px 42px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.14);
}

.category-main {
  min-height: 110px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 18px;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.28), transparent 34%),
    linear-gradient(135deg, var(--slate-900), #0e7490 58%, var(--blue-500));
}

.category-main span {
  font-size: 24px;
  font-weight: 950;
}

.category-main strong {
  margin-top: 6px;
  color: #cffafe;
}

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

.category-card ul {
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
  list-style: none;
}

.category-card li a {
  display: block;
  overflow: hidden;
  color: var(--slate-700);
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.category-card li a:hover {
  color: #0891b2;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: start;
}

.split-section.top-align {
  align-items: start;
}

.rank-panel {
  padding: 24px;
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.rank-panel.full {
  width: min(1280px, 100%);
  margin: 0 auto;
}

.sticky-rank {
  position: sticky;
  top: 92px;
}

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

.rank-title h2 {
  margin: 0;
  font-size: 24px;
}

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

.rank-list.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.rank-item {
  min-width: 0;
  padding: 10px;
  display: grid;
  grid-template-columns: 32px 64px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  border-radius: 16px;
  background: #f8fafc;
  transition: transform 0.2s ease, background 0.2s ease;
}

.rank-item:hover {
  transform: translateX(4px);
  background: #ecfeff;
}

.rank-num {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--cyan-500), var(--blue-500));
  font-weight: 950;
}

.rank-item img {
  width: 64px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  background: var(--slate-800);
}

.rank-info {
  min-width: 0;
  display: block;
}

.rank-info strong,
.rank-info em {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-info strong {
  font-size: 15px;
}

.rank-info em {
  color: var(--slate-500);
  font-size: 12px;
  font-style: normal;
}

.rank-score {
  color: #0891b2;
  font-weight: 950;
}

.page-main {
  min-height: 60vh;
}

.page-hero {
  padding: 92px 16px;
  color: var(--white);
  text-align: center;
  background:
    radial-gradient(circle at 15% 20%, rgba(34, 211, 238, 0.34), transparent 32%),
    linear-gradient(120deg, var(--slate-950), var(--slate-800), #164e63);
}

.page-hero.slim {
  padding: 78px 16px;
}

.page-hero p {
  max-width: 820px;
  margin: 18px auto 0;
  color: #cbd5e1;
  font-size: 18px;
}

.category-hero {
  position: relative;
  overflow: hidden;
}

.filter-bar {
  margin-bottom: 28px;
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 160px 160px 160px auto;
  gap: 12px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.filter-bar input,
.filter-bar select {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 14px;
  padding: 12px 14px;
  color: var(--slate-900);
  background: #f8fafc;
  outline: none;
}

.filter-bar input:focus,
.filter-bar select:focus {
  border-color: var(--cyan-500);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.14);
}

.empty-result {
  display: none;
  margin-bottom: 24px;
  padding: 18px;
  border-radius: 16px;
  color: var(--slate-600);
  background: #f8fafc;
  text-align: center;
}

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

.detail-main {
  background: #f8fafc;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  color: var(--white);
  background: var(--slate-950);
}

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

.detail-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: blur(4px) saturate(1.15);
  transform: scale(1.08);
}

.detail-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 25%, rgba(34, 211, 238, 0.3), transparent 30%),
    linear-gradient(100deg, rgba(2, 6, 23, 0.95), rgba(15, 23, 42, 0.84) 52%, rgba(14, 116, 144, 0.5));
}

.detail-wrap {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 64px;
}

.breadcrumb {
  margin-bottom: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #cbd5e1;
  font-size: 14px;
}

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

.detail-layout {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}

.detail-cover {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 28px;
  object-fit: cover;
  background: var(--slate-800);
  box-shadow: 0 30px 80px rgba(2, 6, 23, 0.52);
}

.detail-copy h1 {
  font-size: clamp(34px, 5vw, 62px);
}

.detail-line {
  max-width: 820px;
  margin: 22px 0 0;
  color: #dbeafe;
  font-size: 20px;
}

.detail-tags span {
  color: #cffafe;
  background: rgba(6, 182, 212, 0.16);
  border: 1px solid rgba(34, 211, 238, 0.28);
}

.detail-section {
  padding-top: 48px;
  padding-bottom: 28px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #000000;
  box-shadow: 0 30px 90px rgba(2, 6, 23, 0.28);
}

.main-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.player-cover {
  position: absolute;
  inset: 0;
  z-index: 3;
  border: none;
  color: var(--white);
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.7), rgba(2, 6, 23, 0.25));
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.big-play {
  width: 86px;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #0891b2;
  background: rgba(255, 255, 255, 0.94);
  font-size: 34px;
  box-shadow: 0 18px 44px rgba(2, 6, 23, 0.46);
}

.player-cover strong {
  max-width: min(680px, 92%);
  font-size: clamp(18px, 3vw, 30px);
  text-align: center;
}

.player-message {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 4;
  display: none;
  padding: 10px 14px;
  border-radius: 12px;
  color: var(--white);
  background: rgba(15, 23, 42, 0.86);
  text-align: center;
}

.player-message.is-visible {
  display: block;
}

.detail-text {
  padding-top: 24px;
}

.content-card {
  padding: 34px;
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.content-card h2 {
  margin-top: 0;
  font-size: 28px;
}

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

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

.info-list {
  margin: 30px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.info-list div {
  padding: 16px;
  border-radius: 16px;
  background: #f8fafc;
}

.info-list dt {
  color: var(--slate-500);
  font-size: 13px;
}

.info-list dd {
  margin: 4px 0 0;
  color: var(--slate-900);
  font-weight: 900;
}

.site-footer {
  color: #cbd5e1;
  background: linear-gradient(180deg, var(--slate-900), var(--slate-950));
}

.footer-inner {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0 34px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) 1fr 1fr;
  gap: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 20px;
}

.footer-brand p {
  max-width: 520px;
  color: #94a3b8;
}

.footer-col h2 {
  color: var(--white);
  font-size: 18px;
}

.footer-col ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
  list-style: none;
}

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

.footer-bottom {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0 30px;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  color: #94a3b8;
  text-align: center;
}

@media (max-width: 1120px) {
  .nav-links,
  .nav-search {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-content,
  .detail-layout,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero-poster {
    display: none;
  }

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

  .sticky-rank {
    position: static;
  }

  .detail-cover {
    width: min(320px, 100%);
  }

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

@media (max-width: 760px) {
  .nav-inner {
    height: 62px;
  }

  .brand-text {
    font-size: 19px;
  }

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

  .hero-content {
    padding: 64px 0 96px;
  }

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

  .hero-desc,
  .detail-line {
    font-size: 17px;
  }

  .stats-band,
  .movie-grid,
  .compact-grid,
  .related-grid,
  .search-grid,
  .category-grid,
  .category-grid.wide,
  .rank-list.two-col,
  .info-list,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .stats-band {
    margin-top: -34px;
  }

  .section,
  .section.alt {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .section-head,
  .rank-title {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .content-card {
    padding: 24px;
  }
}
