:root {
  color-scheme: light;
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --teal-700: #0f766e;
  --teal-600: #0d9488;
  --teal-500: #14b8a6;
  --teal-100: #ccfbf1;
  --cyan-600: #0891b2;
  --cyan-50: #ecfeff;
  --white: #ffffff;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
  --shadow-card: 0 12px 30px rgba(15, 23, 42, 0.10);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, var(--slate-50), var(--slate-100));
  color: var(--slate-900);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 23, 42, 0.96);
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.26);
  backdrop-filter: blur(18px);
}

.top-nav {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal-500), var(--cyan-600));
  box-shadow: 0 10px 26px rgba(20, 184, 166, 0.34);
}

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

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

.nav-link {
  color: var(--slate-200);
  font-weight: 650;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--teal-500);
}

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

.mobile-menu-button span {
  display: block;
  height: 2px;
  background: var(--slate-200);
  margin: 6px 0;
  border-radius: 999px;
}

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

.mobile-nav.is-open {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.mobile-nav-link {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--slate-200);
  background: rgba(255, 255, 255, 0.06);
}

.mobile-nav-link.is-active {
  color: var(--teal-100);
  background: rgba(20, 184, 166, 0.18);
}

.hero {
  position: relative;
  height: min(700px, calc(100vh - 72px));
  min-height: 580px;
  overflow: hidden;
  background: var(--slate-950);
}

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

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

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

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 28%, rgba(20, 184, 166, 0.38), transparent 32%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.90), rgba(2, 6, 23, 0.58) 45%, rgba(2, 6, 23, 0.25)),
    linear-gradient(0deg, rgba(2, 6, 23, 0.90), transparent 55%);
}

.hero-content {
  position: absolute;
  left: max(24px, calc((100% - 1200px) / 2));
  right: max(24px, calc((100% - 1200px) / 2));
  bottom: 82px;
  max-width: 780px;
  color: var(--white);
}

.hero-kicker,
.section-heading p,
.page-hero p,
.detail-kicker {
  margin: 0 0 10px;
  color: var(--teal-100);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1.05;
  font-weight: 900;
  text-shadow: 0 22px 56px rgba(0, 0, 0, 0.45);
}

.hero-content p:not(.hero-kicker) {
  margin: 22px 0 0;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
}

.hero-tags,
.card-tags,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-tags span,
.detail-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 14px;
  border-radius: 999px;
  color: var(--teal-100);
  background: rgba(20, 184, 166, 0.28);
  border: 1px solid rgba(153, 246, 228, 0.26);
  backdrop-filter: blur(12px);
  font-size: 14px;
  font-weight: 700;
}

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

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

.primary-button {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal-500), var(--cyan-600));
  box-shadow: 0 12px 28px rgba(20, 184, 166, 0.35);
}

.primary-button:hover,
.ghost-button:hover {
  transform: translateY(-2px);
}

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

.ghost-button.dark {
  color: var(--teal-700);
  border-color: rgba(13, 148, 136, 0.24);
  background: rgba(204, 251, 241, 0.42);
}

.primary-button.small {
  min-height: 38px;
  padding: 0 16px;
  border-radius: 12px;
  font-size: 14px;
}

.hero-control {
  position: absolute;
  top: 50%;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(15, 23, 42, 0.52);
  backdrop-filter: blur(12px);
  font-size: 38px;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-control:hover {
  background: rgba(20, 184, 166, 0.78);
  transform: translateY(-50%) scale(1.06);
}

.hero-prev {
  left: 24px;
  transform: translateY(-50%);
}

.hero-next {
  right: 24px;
  transform: translateY(-50%);
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  transition: width 0.25s ease, background 0.25s ease;
}

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

.quick-search,
.section-wrap,
.page-main,
.filter-panel,
.category-feature-row {
  width: min(1200px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.quick-search {
  margin-top: -42px;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr minmax(320px, 460px);
  gap: 22px;
  align-items: center;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.quick-search h2,
.section-heading h2,
.page-hero h1,
.content-block h2,
.side-card h2,
.category-overview-card h2,
.category-intro-card h2,
.mini-ranking h2 {
  margin: 0;
  color: var(--slate-900);
}

.quick-search p,
.section-heading span,
.page-hero span,
.category-overview-card p,
.category-intro-card p,
.side-card p {
  color: var(--slate-600);
}

.home-search-form {
  display: flex;
  gap: 12px;
}

.home-search-form input,
.filter-panel input,
.filter-panel select {
  width: 100%;
  border: 1px solid rgba(100, 116, 139, 0.22);
  border-radius: 14px;
  background: var(--white);
  color: var(--slate-900);
  outline: 0;
  padding: 13px 14px;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.home-search-form input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: rgba(20, 184, 166, 0.66);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.14);
}

.home-search-form button {
  border: 0;
  white-space: nowrap;
  color: var(--white);
  padding: 0 20px;
  border-radius: 14px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--teal-500), var(--cyan-600));
}

.section-wrap {
  padding: 74px 0 0;
}

.soft-block {
  padding: 46px;
  margin-top: 74px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(241, 245, 249, 0.95), rgba(236, 254, 255, 0.95));
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 26px;
}

.section-heading p,
.page-hero p {
  color: var(--teal-600);
}

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

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

.catalog-grid {
  padding-bottom: 72px;
}

.movie-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.16);
}

.card-poster {
  position: relative;
  height: 236px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--slate-800), var(--teal-700));
}

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

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

.card-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.70), transparent 55%);
  transition: opacity 0.25s ease;
}

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

.play-hover {
  position: absolute;
  inset: 0;
  z-index: 2;
  margin: auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(20, 184, 166, 0.90);
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card:hover .play-hover {
  opacity: 1;
  transform: scale(1);
}

.rank-badge,
.score-badge {
  position: absolute;
  z-index: 3;
  top: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(10px);
}

.rank-badge {
  left: 12px;
}

.score-badge {
  right: 12px;
  background: rgba(20, 184, 166, 0.82);
}

.card-body {
  padding: 16px;
}

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

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

.card-meta {
  color: var(--slate-500);
  font-size: 13px;
  font-weight: 650;
}

.card-tags {
  margin: 0 0 12px;
}

.card-tags span {
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--slate-700);
  background: var(--slate-100);
  font-size: 12px;
}

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

.category-card,
.category-overview-card,
.category-intro-card,
.mini-ranking,
.filter-panel,
.side-card,
.content-block,
.detail-player-card,
.detail-content {
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.category-card {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 18px;
  padding: 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.category-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  min-height: 128px;
}

.category-thumbs img {
  height: 128px;
  width: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.category-card h2,
.category-card p {
  margin: 0;
}

.category-card h2 {
  font-size: 22px;
  font-weight: 900;
}

.category-card p {
  margin-top: 8px;
  color: var(--slate-600);
}

.category-card span {
  display: inline-flex;
  margin-top: 14px;
  color: var(--teal-700);
  font-weight: 800;
}

.two-column-feature {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
  gap: 28px;
  align-items: start;
}

.ranking-panel {
  padding: 18px;
  border-radius: var(--radius-xl);
  background: var(--slate-900);
  box-shadow: var(--shadow-soft);
}

.ranking-panel a,
.mini-ranking a {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 13px 10px;
  border-radius: 14px;
  color: var(--slate-200);
  transition: background 0.2s ease, color 0.2s ease;
}

.ranking-panel a:hover,
.mini-ranking a:hover {
  background: rgba(20, 184, 166, 0.16);
  color: var(--white);
}

.ranking-panel span,
.mini-ranking span {
  color: var(--teal-500);
  font-weight: 900;
}

.ranking-panel strong,
.mini-ranking strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ranking-panel em,
.mini-ranking em {
  color: var(--slate-500);
  font-style: normal;
  font-size: 13px;
}

.ranking-panel .ranking-more {
  display: flex;
  justify-content: center;
  margin-top: 8px;
  color: var(--teal-100);
  background: rgba(20, 184, 166, 0.18);
}

.page-main {
  padding: 34px 0 0;
}

.page-hero {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px;
  margin-bottom: 34px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(20, 184, 166, 0.38), transparent 34%),
    linear-gradient(135deg, var(--slate-900), var(--slate-800));
  box-shadow: var(--shadow-soft);
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 950;
  line-height: 1.1;
}

.page-hero span {
  margin-top: 14px;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.category-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.category-intro-card,
.mini-ranking,
.filter-panel,
.side-card,
.content-block {
  padding: 24px;
}

.category-intro-card p {
  margin-bottom: 18px;
}

.mini-ranking h2 {
  margin-bottom: 12px;
}

.mini-ranking a {
  color: var(--slate-700);
}

.filter-panel {
  margin-bottom: 24px;
}

.filter-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.6fr) repeat(3, minmax(130px, 1fr));
  gap: 14px;
}

.filter-grid label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: var(--slate-700);
  font-weight: 800;
}

.filter-status {
  margin-top: 14px;
  color: var(--teal-700);
  font-weight: 850;
}

.hidden-by-filter {
  display: none !important;
}

.category-overview-grid {
  padding-bottom: 72px;
}

.category-overview-card {
  overflow: hidden;
}

.category-overview-media {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  height: 170px;
  background: var(--slate-800);
}

.category-overview-media img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

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

.category-overview-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0;
  color: var(--teal-700);
  font-weight: 800;
}

.spotlight-card {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 24px;
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

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

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

.spotlight-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.88), rgba(2, 6, 23, 0.08));
}

.spotlight-card span,
.spotlight-card h2,
.spotlight-card p {
  position: relative;
  z-index: 2;
}

.spotlight-card span {
  color: var(--teal-100);
  font-weight: 900;
}

.spotlight-card h2 {
  margin: 8px 0;
  font-size: 26px;
}

.spotlight-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

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

.movie-card-list {
  display: grid;
  grid-template-columns: 190px 1fr;
}

.movie-card-list .card-poster {
  height: 100%;
  min-height: 176px;
}

.detail-main {
  padding-bottom: 72px;
}

.breadcrumb {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
  color: var(--slate-600);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--teal-700);
  font-weight: 800;
}

.detail-player-card {
  overflow: hidden;
  margin-bottom: 28px;
  background: var(--slate-950);
}

.player-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--slate-950);
}

.player-wrap video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--slate-950);
}

.player-trigger {
  position: absolute;
  inset: 0;
  z-index: 4;
  border: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  color: var(--white);
  background:
    radial-gradient(circle at center, rgba(20, 184, 166, 0.30), transparent 34%),
    linear-gradient(0deg, rgba(2, 6, 23, 0.62), rgba(2, 6, 23, 0.18));
  cursor: pointer;
}

.player-trigger span {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-500), var(--cyan-600));
  box-shadow: 0 16px 36px rgba(20, 184, 166, 0.34);
  font-size: 30px;
}

.player-trigger strong {
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.64);
  backdrop-filter: blur(12px);
}

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

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

.detail-content {
  background: transparent;
  box-shadow: none;
}

.detail-head,
.content-block {
  margin-bottom: 24px;
}

.detail-head {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 26px;
  align-items: start;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.detail-cover {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  box-shadow: var(--shadow-card);
}

.detail-head h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  font-weight: 950;
}

.detail-one-line {
  color: var(--slate-600);
  font-size: 18px;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.detail-meta span {
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--slate-700);
  background: var(--slate-100);
  font-weight: 750;
}

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

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

.detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

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

.side-list a {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 12px;
  align-items: center;
}

.side-list img {
  width: 104px;
  height: 68px;
  object-fit: cover;
  border-radius: 12px;
}

.side-list strong,
.side-list em {
  display: block;
}

.side-list strong {
  color: var(--slate-900);
  line-height: 1.35;
}

.side-list em {
  color: var(--slate-500);
  font-style: normal;
  font-size: 13px;
  margin-top: 4px;
}

.accent-side {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal-600), var(--cyan-600));
}

.accent-side h2,
.accent-side p {
  color: var(--white);
}

.site-footer {
  margin-top: 78px;
  background: var(--slate-900);
  color: var(--slate-200);
}

.footer-inner {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 28px;
}

.footer-logo {
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
}

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

.site-footer p {
  color: var(--slate-500);
}

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

.site-footer a:hover {
  color: var(--teal-500);
}

.footer-bottom {
  border-top: 1px solid rgba(226, 232, 240, 0.10);
  padding: 18px;
  text-align: center;
  color: var(--slate-500);
}

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

  .quick-search,
  .two-column-feature,
  .category-feature-row,
  .detail-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .detail-sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

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

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

  .hero {
    min-height: 620px;
  }

  .hero-content {
    left: 20px;
    right: 20px;
    bottom: 76px;
  }

  .hero-control {
    display: none;
  }

  .quick-search,
  .home-search-form,
  .filter-grid,
  .category-card,
  .detail-head,
  .movie-card-list {
    grid-template-columns: 1fr;
  }

  .home-search-form {
    display: grid;
  }

  .movie-grid,
  .category-grid,
  .category-overview-grid,
  .spotlight-grid,
  .list-grid,
  .related-grid,
  .detail-sidebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-cover {
    max-width: 320px;
  }
}

@media (max-width: 560px) {
  .brand-text {
    font-size: 20px;
  }

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

  .hero-content p:not(.hero-kicker) {
    font-size: 16px;
  }

  .quick-search,
  .soft-block,
  .page-hero,
  .detail-head,
  .content-block,
  .side-card,
  .filter-panel {
    padding: 20px;
  }

  .movie-grid,
  .category-grid,
  .category-overview-grid,
  .spotlight-grid,
  .list-grid,
  .related-grid,
  .detail-sidebar {
    grid-template-columns: 1fr;
  }

  .card-poster {
    height: 220px;
  }

  .category-thumbs,
  .category-overview-media {
    height: auto;
  }

  .category-thumbs img,
  .category-overview-media img {
    height: 118px;
  }

  .side-list a {
    grid-template-columns: 92px 1fr;
  }
}
