:root {
  --rose-50: #fff1f2;
  --rose-100: #ffe4e6;
  --rose-200: #fecdd3;
  --rose-400: #fb7185;
  --rose-500: #f43f5e;
  --rose-600: #e11d48;
  --pink-50: #fdf2f8;
  --pink-100: #fce7f3;
  --pink-500: #ec4899;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --white: #ffffff;
  --shadow-soft: 0 20px 45px rgba(244, 63, 94, 0.12);
  --shadow-card: 0 16px 38px rgba(15, 23, 42, 0.08);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  background: linear-gradient(180deg, var(--slate-50), #ffffff 28rem);
  color: var(--slate-900);
}

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(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(226, 232, 240, 0.9), 0 12px 30px rgba(15, 23, 42, 0.04);
}

.header-inner {
  max-width: 1280px;
  height: 68px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: linear-gradient(135deg, var(--pink-500), var(--rose-500));
  box-shadow: 0 12px 24px rgba(244, 63, 94, 0.24);
  transition: transform 0.24s ease;
}

.brand:hover .brand-mark {
  transform: scale(1.08) rotate(3deg);
}

.brand-play {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid #ffffff;
}

.brand-name {
  font-weight: 800;
  font-size: 1.24rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
  background: linear-gradient(90deg, var(--pink-500), var(--rose-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 68px;
  color: var(--slate-600);
  font-size: 0.95rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

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

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

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

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 13px;
  background: var(--slate-100);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-button span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--slate-800);
}

.mobile-nav {
  display: none;
  padding: 0 24px 18px;
  border-top: 1px solid var(--slate-100);
}

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

.mobile-link {
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--slate-700);
  font-weight: 700;
}

.mobile-link.is-active,
.mobile-link:hover {
  color: var(--rose-600);
  background: var(--rose-50);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 660px;
  background: linear-gradient(135deg, #fff7f8, var(--pink-50) 48%, #ffffff);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 14%, rgba(244, 63, 94, 0.2), transparent 26rem),
    radial-gradient(circle at 82% 18%, rgba(236, 72, 153, 0.18), transparent 24rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0), #ffffff 95%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 24px 58px;
}

.hero-slider {
  position: relative;
}

.hero-slide {
  display: none;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.82fr);
  align-items: center;
  gap: 48px;
}

.hero-slide.is-active {
  display: grid;
  animation: fadeUp 0.42s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rose-600);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(244, 63, 94, 0.15);
  border-radius: 999px;
  padding: 7px 13px;
  font-size: 0.85rem;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(244, 63, 94, 0.08);
}

.hero-copy h1,
.page-hero h1,
.detail-info h1 {
  margin: 18px 0 18px;
  max-width: 760px;
  font-size: clamp(2.5rem, 6vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  color: var(--slate-900);
}

.hero-copy p,
.page-hero p,
.detail-info p {
  margin: 0;
  max-width: 760px;
  color: var(--slate-600);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.8;
}

.hero-tags,
.detail-tags,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.hero-tags span,
.detail-tags span,
.tag-list span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 5px 11px;
  color: var(--rose-600);
  background: var(--rose-50);
  font-size: 0.82rem;
  font-weight: 700;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 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: #ffffff;
  background: linear-gradient(90deg, var(--rose-500), var(--pink-500));
  box-shadow: 0 14px 30px rgba(244, 63, 94, 0.28);
}

.btn-soft {
  color: var(--rose-600);
  background: #ffffff;
  border: 1px solid var(--rose-200);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.btn-link {
  color: var(--rose-600);
  padding-inline: 8px;
}

.btn-white {
  color: var(--rose-600);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.hero-art {
  position: relative;
  display: block;
  width: min(100%, 430px);
  aspect-ratio: 3 / 4;
  justify-self: center;
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--rose-100), #ffffff);
  box-shadow: 0 32px 70px rgba(244, 63, 94, 0.22);
  transform: rotate(2deg);
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 35%, rgba(15, 23, 42, 0.56));
}

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

.hero-art:hover img {
  transform: scale(1.08);
}

.hero-play,
.poster-play,
.player-cover-icon {
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--rose-500);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.18);
}

.hero-play {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  width: 68px;
  height: 68px;
  font-size: 1.7rem;
}

.hero-dots {
  display: flex;
  gap: 10px;
  margin-top: 36px;
}

.hero-dot {
  width: 34px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--rose-200);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

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

.hero-search {
  margin: 42px auto 0;
  max-width: 780px;
  display: flex;
  gap: 12px;
  padding: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(244, 63, 94, 0.1);
}

.hero-search input {
  flex: 1;
  min-width: 0;
  height: 48px;
  border: 0;
  outline: none;
  padding: 0 18px;
  color: var(--slate-800);
  background: transparent;
}

.hero-search button {
  min-width: 132px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 800;
  background: linear-gradient(90deg, var(--rose-500), var(--pink-500));
  cursor: pointer;
}

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

.hero-chips a {
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--slate-600);
  background: #ffffff;
  border: 1px solid var(--slate-200);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-chips a:hover {
  color: var(--rose-600);
  border-color: var(--rose-200);
  background: var(--rose-50);
}

.content-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 24px;
}

.content-section.compact {
  padding-top: 56px;
  padding-bottom: 56px;
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 8px 0 0;
  color: var(--slate-600);
  line-height: 1.7;
}

.section-more {
  flex: 0 0 auto;
  color: var(--rose-600);
  font-weight: 800;
}

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

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

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

.movie-card,
.mini-card,
.category-overview-card {
  background: #ffffff;
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.03);
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.movie-card:hover,
.mini-card:hover,
.category-overview-card:hover {
  transform: translateY(-6px);
  border-color: var(--rose-100);
  box-shadow: var(--shadow-card);
}

.poster,
.mini-poster,
.category-cover,
.detail-cover {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, var(--rose-100), #ffffff);
}

.poster {
  aspect-ratio: 3 / 4;
}

.poster-wide {
  width: 190px;
  aspect-ratio: 4 / 3;
  flex: 0 0 auto;
}

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

.movie-card:hover .poster img,
.mini-card:hover .mini-poster img,
.category-overview-card:hover .category-cover img {
  transform: scale(1.08);
}

.poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.58));
  opacity: 0;
  transition: opacity 0.24s ease;
}

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

.poster-year,
.rank-badge {
  position: absolute;
  z-index: 2;
  top: 12px;
  border-radius: 999px;
  padding: 5px 10px;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
}

.poster-year {
  right: 12px;
}

.rank-badge {
  left: 12px;
  background: linear-gradient(90deg, var(--rose-500), var(--pink-500));
}

.poster-play {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.88);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

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

.card-body {
  padding: 18px;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.card-meta span {
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--rose-600);
  background: var(--rose-50);
  font-size: 0.78rem;
  font-weight: 800;
}

.card-meta em {
  color: var(--slate-500);
  font-size: 0.8rem;
  font-style: normal;
}

.card-body h2,
.mini-card h2 {
  margin: 0;
  color: var(--slate-900);
  font-size: 1.05rem;
  line-height: 1.35;
}

.card-body h2 a:hover,
.mini-card h2 a:hover {
  color: var(--rose-500);
}

.card-body p {
  display: -webkit-box;
  margin: 10px 0 14px;
  min-height: 3.1em;
  color: var(--slate-600);
  font-size: 0.92rem;
  line-height: 1.65;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.tag-list {
  gap: 7px;
  margin-bottom: 16px;
}

.tag-list span {
  min-height: 24px;
  padding: 4px 8px;
  color: var(--slate-600);
  background: var(--slate-100);
  border-radius: 8px;
}

.card-bottom,
.card-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--slate-100);
  color: var(--slate-500);
  font-size: 0.84rem;
}

.card-bottom a {
  color: var(--rose-600);
  font-weight: 800;
}

.category-band {
  background: linear-gradient(90deg, var(--pink-50), var(--rose-50));
}

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

.category-card {
  display: grid;
  gap: 10px;
  min-height: 160px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid var(--rose-100);
  box-shadow: 0 12px 30px rgba(244, 63, 94, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.category-card span {
  font-size: 1.08rem;
  font-weight: 900;
  color: var(--slate-900);
}

.category-card em {
  color: var(--slate-600);
  font-size: 0.9rem;
  font-style: normal;
  line-height: 1.7;
}

.horizontal-grid,
.ranking-list {
  display: grid;
  gap: 18px;
}

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

.movie-card-horizontal {
  display: flex;
}

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

.mini-poster {
  aspect-ratio: 3 / 4;
}

.mini-poster span {
  position: absolute;
  right: 10px;
  top: 10px;
  padding: 4px 8px;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.7);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
}

.mini-card h2 {
  padding: 12px 12px 0;
  font-size: 0.95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mini-card p {
  margin: 5px 0 0;
  padding: 0 12px 14px;
  color: var(--slate-500);
  font-size: 0.8rem;
}

.cta-section {
  margin: 28px 24px;
  border-radius: 32px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--rose-500), var(--pink-500));
  box-shadow: var(--shadow-soft);
}

.cta-section > div {
  max-width: 880px;
  margin: 0 auto;
  padding: 62px 24px;
  text-align: center;
}

.cta-section h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.05em;
}

.cta-section p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
}

.page-hero {
  background: linear-gradient(135deg, var(--rose-50), var(--pink-50) 48%, #ffffff);
  border-bottom: 1px solid var(--slate-100);
}

.small-hero .content-section,
.category-hero .content-section,
.ranking-hero .content-section,
.search-hero .content-section {
  text-align: left;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--slate-500);
  font-size: 0.9rem;
}

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

.filter-panel {
  margin-bottom: 28px;
  padding: 18px;
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

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

.filter-fields label {
  display: grid;
  gap: 7px;
  color: var(--slate-600);
  font-size: 0.82rem;
  font-weight: 800;
}

.filter-fields input,
.filter-fields select {
  width: 100%;
  height: 46px;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  outline: none;
  padding: 0 13px;
  color: var(--slate-800);
  background: var(--slate-50);
}

.filter-fields input:focus,
.filter-fields select:focus {
  border-color: var(--rose-300, #fda4af);
  box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.1);
}

.empty-state {
  display: none;
  padding: 28px;
  text-align: center;
  color: var(--slate-500);
  background: var(--slate-50);
  border-radius: var(--radius-lg);
}

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

.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: 22px;
  padding: 18px;
}

.category-cover {
  aspect-ratio: 3 / 4;
  border-radius: 16px;
}

.category-overview-card h2 {
  margin: 4px 0 10px;
  font-size: 1.45rem;
}

.category-overview-card p {
  color: var(--slate-600);
  line-height: 1.75;
}

.overview-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.overview-links a {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--slate-600);
  background: var(--slate-100);
  font-size: 0.82rem;
  font-weight: 700;
}

.category-enter {
  color: var(--rose-600);
  font-weight: 900;
}

.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.ranking-mini {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.detail-hero {
  background:
    radial-gradient(circle at 80% 10%, rgba(236, 72, 153, 0.12), transparent 22rem),
    linear-gradient(135deg, var(--rose-50), #ffffff);
  border-bottom: 1px solid var(--slate-100);
}

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

.detail-cover {
  aspect-ratio: 3 / 4;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.detail-info h1 {
  font-size: clamp(2.35rem, 5vw, 4.4rem);
}

.detail-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 0;
}

.detail-meta div {
  padding: 14px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid var(--slate-100);
}

.detail-meta dt {
  color: var(--slate-500);
  font-size: 0.78rem;
  font-weight: 800;
}

.detail-meta dd {
  margin: 5px 0 0;
  color: var(--slate-900);
  font-weight: 900;
}

.player-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: var(--slate-900);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.2);
  aspect-ratio: 16 / 9;
}

.movie-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000000;
}

.player-cover {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  border: 0;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.1), rgba(15, 23, 42, 0.74));
  cursor: pointer;
}

.player-cover.is-hidden {
  display: none;
}

.player-cover-icon {
  width: 86px;
  height: 86px;
  font-size: 2rem;
}

.player-cover strong {
  max-width: 80%;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  line-height: 1.2;
  text-align: center;
}

.article-section {
  max-width: 960px;
}

.article-section h2 {
  margin: 0 0 14px;
  font-size: 1.75rem;
}

.article-section p {
  margin: 0 0 30px;
  color: var(--slate-700);
  font-size: 1.05rem;
  line-height: 2;
}

.site-footer {
  margin-top: 32px;
  background: linear-gradient(180deg, var(--slate-50), var(--slate-100));
  border-top: 1px solid var(--slate-200);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 52px 24px 28px;
}

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

.footer-brand p,
.site-footer p,
.site-footer li {
  color: var(--slate-600);
  line-height: 1.75;
}

.site-footer h2 {
  margin: 0 0 14px;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.site-footer a:hover {
  color: var(--rose-600);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--slate-200);
  font-size: 0.88rem;
}

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

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

  .hero-slide {
    grid-template-columns: 1fr 360px;
    gap: 28px;
  }

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

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

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

  .hero {
    min-height: auto;
  }

  .hero-slide,
  .detail-layout,
  .two-columns,
  .category-overview-card {
    grid-template-columns: 1fr;
  }

  .hero-art {
    width: min(82vw, 360px);
  }

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

  .hero-search {
    border-radius: 24px;
    flex-direction: column;
  }

  .hero-search button {
    width: 100%;
  }

  .grid-xl,
  .grid-lg,
  .mini-grid,
  .category-grid,
  .horizontal-grid,
  .category-overview-grid,
  .ranking-mini {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .movie-card-horizontal {
    display: grid;
  }

  .poster-wide {
    width: 100%;
    aspect-ratio: 16 / 10;
  }

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

  .detail-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .header-inner {
    padding: 0 16px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .content-section,
  .hero-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-copy h1,
  .page-hero h1,
  .detail-info h1 {
    font-size: 2.25rem;
    letter-spacing: -0.05em;
  }

  .grid-xl,
  .grid-lg,
  .mini-grid,
  .category-grid,
  .category-overview-grid,
  .ranking-mini {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: grid;
  }

  .detail-meta {
    grid-template-columns: 1fr;
  }

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

  .player-cover-icon {
    width: 68px;
    height: 68px;
  }
}
