:root {
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-850: #111827;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-500: #64748b;
  --blue-700: #1d4ed8;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --blue-100: #dbeafe;
  --amber-400: #fbbf24;
  --green-500: #22c55e;
  --surface: #ffffff;
  --page: #f8fafc;
  --text: #111827;
  --muted: #64748b;
  --border: #e5e7eb;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background: var(--page);
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  color: #fff;
  background: linear-gradient(90deg, var(--slate-900), var(--slate-800), var(--slate-900));
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.28);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--blue-600);
  color: #fff;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.35);
}

.brand-text strong,
.brand-text em {
  display: block;
}

.brand-text strong {
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.brand-text em {
  margin-top: 4px;
  color: #cbd5e1;
  font-size: 12px;
  font-style: normal;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-link {
  position: relative;
  color: #cbd5e1;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  transform: scaleX(0);
  background: var(--blue-500);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

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

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

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

.mobile-nav.open {
  display: block;
}

.mobile-nav-link {
  display: block;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 13px 0;
  color: #e2e8f0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.45), transparent 36%), linear-gradient(135deg, var(--slate-900), #172554 55%, var(--slate-900));
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image: linear-gradient(rgba(255,255,255,0.09) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.09) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, #000, transparent 86%);
}

.hero-shell {
  position: relative;
  z-index: 2;
  padding: 84px 0 58px;
}

.hero-slider {
  position: relative;
  min-height: 470px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  gap: 48px;
  align-items: center;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

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

.hero-kicker,
.section-kicker,
.detail-kicker,
.page-hero span,
.ranking-hero span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #bfdbfe;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 18px 0 18px;
  font-size: clamp(40px, 7vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.hero p {
  max-width: 700px;
  margin: 0;
  color: #dbeafe;
  font-size: clamp(17px, 2.3vw, 22px);
}

.hero-tags,
.detail-tags,
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

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

.hero-tags span,
.detail-tags span,
.card-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  color: #e0f2fe;
  background: rgba(37, 99, 235, 0.28);
  border: 1px solid rgba(191, 219, 254, 0.18);
  font-size: 12px;
  font-weight: 700;
}

.hero-actions,
.detail-head-copy .button-primary {
  margin-top: 30px;
}

.button-primary,
.button-ghost,
.section-more,
.hero-search button,
.back-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 0;
  border-radius: 12px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button-primary,
.hero-search button {
  color: #fff;
  background: var(--blue-600);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.35);
}

.button-primary:hover,
.hero-search button:hover {
  transform: translateY(-2px);
  background: var(--blue-700);
}

.button-ghost {
  margin-left: 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-poster {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
  transform: rotate(2deg);
}

.hero-poster::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(2, 6, 23, 0.82), transparent 62%);
}

.hero-poster img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.hero-poster span {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(37, 99, 235, 0.78);
  font-weight: 800;
}

.hero-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.hero-controls button {
  border: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.hero-controls > button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 28px;
}

.hero-dots {
  display: flex;
  gap: 9px;
}

.hero-dots button {
  width: 34px;
  height: 8px;
  border-radius: 999px;
  opacity: 0.42;
}

.hero-dots button.active {
  opacity: 1;
  background: var(--blue-500);
}

.hero-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  max-width: 760px;
  margin: 34px auto 0;
  padding: 8px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.hero-search input {
  min-height: 48px;
  border: 0;
  outline: 0;
  border-radius: 12px;
  padding: 0 16px;
  color: #fff;
  background: rgba(15, 23, 42, 0.68);
}

.hero-search input::placeholder {
  color: #cbd5e1;
}

.hero-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.hero-categories a {
  padding: 8px 12px;
  border-radius: 999px;
  color: #e2e8f0;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(148, 163, 184, 0.22);
}

.content-section {
  padding: 72px 0;
  background: #fff;
}

.light-section {
  background: var(--page);
}

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

.section-heading h2 {
  margin: 8px 0 8px;
  color: var(--slate-900);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.section-heading p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
}

.section-more {
  color: var(--blue-700);
  background: var(--blue-100);
}

.movie-grid {
  display: grid;
  gap: 22px;
}

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

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

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

.movie-card {
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #e2e8f0;
}

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

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 6, 23, 0.78), transparent 56%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

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

.play-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: #fff;
  background: rgba(37, 99, 235, 0.85);
  transform: translate(-50%, -50%) scale(0.82);
  opacity: 0;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

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

.badge {
  position: absolute;
  top: 10px;
  z-index: 2;
  padding: 5px 9px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  background: rgba(37, 99, 235, 0.88);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.2);
}

.badge-left {
  left: 10px;
}

.badge-right {
  right: 10px;
  background: rgba(15, 23, 42, 0.78);
}

.card-body {
  padding: 14px;
}

.card-body h3 {
  margin: 0 0 8px;
  color: var(--slate-900);
  font-size: 16px;
  line-height: 1.35;
}

.card-body h3 a:hover {
  color: var(--blue-700);
}

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

.card-meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
}

.card-tags span {
  min-height: 24px;
  color: var(--blue-700);
  background: var(--blue-100);
  border: 0;
}

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

.ranking-card {
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, var(--slate-900), var(--slate-950));
  color: #fff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.22);
}

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

.ranking-title span {
  padding: 5px 9px;
  border-radius: 999px;
  color: #fff;
  background: var(--blue-600);
  font-size: 12px;
  font-weight: 900;
}

.ranking-title h2 {
  flex: 1;
  margin: 0;
  font-size: 22px;
}

.ranking-title a {
  color: #bfdbfe;
  font-size: 13px;
  font-weight: 800;
}

.ranking-card ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rank-item a {
  display: grid;
  grid-template-columns: 36px 52px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 8px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  transition: background 0.2s ease, transform 0.2s ease;
}

.rank-item a:hover {
  background: rgba(59, 130, 246, 0.22);
  transform: translateX(3px);
}

.rank-number {
  color: var(--amber-400);
  font-weight: 900;
}

.rank-item img {
  width: 52px;
  height: 68px;
  border-radius: 10px;
  object-fit: cover;
}

.rank-copy {
  min-width: 0;
}

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

.rank-copy strong {
  font-size: 14px;
}

.rank-copy em {
  margin-top: 4px;
  color: #94a3b8;
  font-size: 12px;
  font-style: normal;
}

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

.category-tile {
  min-height: 190px;
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(135deg, #eff6ff, #fff);
  border: 1px solid #dbeafe;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.category-tile span,
.category-tile strong,
.category-tile em,
.category-tile em a {
  display: block;
}

.category-tile span {
  color: var(--blue-700);
  font-weight: 900;
  font-size: 20px;
}

.category-tile strong {
  margin: 12px 0;
  color: var(--slate-700);
  font-size: 14px;
}

.category-tile em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.category-tile em a {
  margin-top: 5px;
}

.page-hero,
.ranking-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, var(--slate-900), #172554, var(--slate-900));
}

.compact-hero .container {
  padding: 72px 0;
}

.page-hero h1,
.ranking-hero h1,
.detail-head-copy h1 {
  max-width: 880px;
  margin: 12px 0 12px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.page-hero p,
.ranking-hero p,
.detail-head-copy p {
  max-width: 760px;
  margin: 0;
  color: #dbeafe;
  font-size: 18px;
}

.category-hero-inner,
.ranking-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 42px;
  align-items: center;
  padding: 72px 0;
}

.category-hero-posters {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.category-hero-posters a {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

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

.category-hero-posters span {
  position: absolute;
  inset: auto 8px 8px;
  display: block;
  padding: 7px;
  border-radius: 10px;
  color: #fff;
  background: rgba(15, 23, 42, 0.72);
  font-size: 12px;
  font-weight: 800;
}

.filter-panel {
  margin-bottom: 28px;
  padding: 22px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.filter-row {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) repeat(3, minmax(150px, 190px));
  gap: 14px;
  align-items: end;
}

.filter-row label span {
  display: block;
  margin-bottom: 6px;
  color: var(--slate-700);
  font-size: 13px;
  font-weight: 800;
}

.filter-row input,
.filter-row select {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 0 12px;
  outline: 0;
  background: #fff;
}

.filter-row input:focus,
.filter-row select:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

.movie-card.is-hidden {
  display: none;
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 20px;
  padding: 18px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
}

.category-cover {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  border-radius: 18px;
}

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

.category-cover span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(37, 99, 235, 0.88);
  font-weight: 900;
}

.category-overview-card h2 {
  margin: 4px 0 8px;
  color: var(--slate-900);
}

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

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

.category-overview-card li a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  color: var(--slate-700);
  border-bottom: 1px solid #eef2f7;
}

.ranking-hero-inner {
  padding: 72px 0;
}

.ranking-hero-poster {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
}

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

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

.detail-hero {
  isolation: isolate;
}

.detail-backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
}

.detail-hero-inner {
  padding: 36px 0 72px;
}

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

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

.detail-head-grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}

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

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

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

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

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

.player-block,
.detail-panel {
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.player-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
}

.movie-video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
}

.player-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  border: 0;
  color: #fff;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.22), rgba(2, 6, 23, 0.74));
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.play-circle {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-600);
  box-shadow: 0 18px 42px rgba(37, 99, 235, 0.35);
  font-size: 32px;
}

.play-text {
  font-size: 18px;
  font-weight: 900;
}

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

.player-block.is-loading .play-circle {
  animation: pulse 0.9s ease-in-out infinite alternate;
}

@keyframes pulse {
  from {
    transform: scale(0.94);
  }
  to {
    transform: scale(1.04);
  }
}

.detail-panel {
  padding: 26px;
}

.detail-panel h2 {
  margin: 0 0 14px;
  color: var(--slate-900);
  font-size: 24px;
}

.detail-panel p {
  margin: 0;
  color: #334155;
  font-size: 16px;
}

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

.detail-info-grid div {
  padding: 15px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.detail-info-grid span,
.detail-info-grid strong {
  display: block;
}

.detail-info-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.detail-info-grid strong {
  margin-top: 4px;
  color: var(--slate-900);
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding: 52px 0 36px;
}

.site-footer h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 18px;
}

.site-footer p {
  margin: 0;
  color: #94a3b8;
}

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

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
}

.back-top {
  color: #fff;
  background: var(--slate-800);
}

@media (max-width: 1120px) {
  .movie-grid-six {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

  .sticky-rank {
    position: static;
  }
}

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

  .menu-button {
    display: inline-grid;
    place-items: center;
  }

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

  .brand-text strong {
    font-size: 18px;
  }

  .brand-text em {
    display: none;
  }

  .hero-shell {
    padding: 56px 0 36px;
  }

  .hero-slider {
    min-height: 760px;
  }

  .hero-slide,
  .category-hero-inner,
  .ranking-hero-inner,
  .detail-head-grid {
    grid-template-columns: 1fr;
  }

  .hero-poster {
    min-height: 360px;
    transform: none;
  }

  .hero-poster img {
    min-height: 360px;
  }

  .hero-search,
  .filter-row {
    grid-template-columns: 1fr;
  }

  .button-ghost {
    margin-left: 0;
    margin-top: 12px;
  }

  .section-heading {
    display: block;
  }

  .section-more {
    margin-top: 16px;
  }

  .movie-grid-six,
  .movie-grid-five,
  .movie-grid-four,
  .category-grid,
  .category-overview-grid,
  .footer-grid,
  .detail-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .category-cover {
    min-height: 320px;
  }

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

  .category-hero-posters a {
    min-height: 180px;
  }
}

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

  .brand {
    min-width: 0;
  }

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

  .hero-slider {
    min-height: 700px;
  }

  .hero h1,
  .page-hero h1,
  .ranking-hero h1,
  .detail-head-copy h1 {
    font-size: 34px;
  }

  .hero-actions a,
  .hero-search button,
  .hero-search input {
    width: 100%;
  }

  .movie-grid-six,
  .movie-grid-five,
  .movie-grid-four,
  .category-grid,
  .category-overview-grid,
  .footer-grid,
  .detail-info-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    display: grid;
  }
}
