:root {
  --rose-50: #fff1f2;
  --rose-100: #ffe4e6;
  --rose-500: #f43f5e;
  --rose-600: #e11d48;
  --pink-500: #ec4899;
  --amber-50: #fffbeb;
  --blue-50: #eff6ff;
  --cyan-500: #06b6d4;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --white: #ffffff;
  --shadow-sm: 0 6px 18px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 16px 40px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 24px 70px rgba(244, 63, 94, 0.18);
  --radius-lg: 18px;
  --radius-xl: 24px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--slate-900);
  background: var(--slate-50);
}

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

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

button,
input,
select {
  font: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 18px rgba(15, 23, 42, 0.08);
}

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

.site-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rose-500), var(--pink-500));
  color: var(--white);
  box-shadow: 0 10px 26px rgba(244, 63, 94, 0.32);
}

.logo-text {
  font-size: 24px;
  line-height: 1;
  color: transparent;
  background: linear-gradient(90deg, var(--rose-500), var(--pink-500));
  -webkit-background-clip: text;
  background-clip: text;
}

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

.nav-link {
  color: var(--slate-600);
  font-size: 15px;
  font-weight: 650;
  transition: color 180ms ease;
}

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

.top-search {
  position: relative;
  display: flex;
  align-items: center;
}

.top-search input {
  width: 230px;
  border: 1px solid var(--slate-200);
  border-radius: 999px;
  padding: 10px 42px 10px 16px;
  color: var(--slate-800);
  outline: none;
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.top-search input:focus,
.mobile-search input:focus,
.listing-search:focus,
.filter-select:focus,
.sort-select:focus {
  border-color: var(--rose-500);
  box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.12);
}

.top-search button {
  position: absolute;
  right: 6px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--rose-500), var(--pink-500));
  cursor: pointer;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: var(--slate-100);
  color: var(--slate-800);
  cursor: pointer;
}

.mobile-panel {
  border-top: 1px solid var(--slate-200);
  background: var(--white);
}

.mobile-panel-inner {
  padding: 16px 0 20px;
}

.mobile-panel nav {
  display: grid;
  gap: 12px;
}

.mobile-nav-link {
  display: block;
  padding: 10px 0;
  color: var(--slate-700);
  font-weight: 650;
}

.mobile-search {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.mobile-search input {
  flex: 1;
  border: 1px solid var(--slate-200);
  border-radius: 999px;
  padding: 11px 14px;
  outline: none;
}

.mobile-search button,
.primary-button,
.secondary-button,
.inline-button {
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 750;
}

.mobile-search button,
.primary-button {
  color: var(--white);
  background: linear-gradient(135deg, var(--rose-500), var(--pink-500));
  box-shadow: var(--shadow-lg);
}

.mobile-search button {
  padding: 10px 18px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.primary-button:hover,
.secondary-button:hover,
.movie-card:hover,
.category-card:hover {
  transform: translateY(-4px);
}

.secondary-button {
  background: rgba(255, 255, 255, 0.9);
  color: var(--slate-800);
  border: 1px solid var(--slate-200);
}

.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.17), transparent 28%),
    radial-gradient(circle at 20% 80%, rgba(251, 191, 36, 0.18), transparent 24%),
    linear-gradient(135deg, #fff1f2 0%, #fdf2f8 54%, #fffbeb 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.46;
  background-image:
    linear-gradient(rgba(244, 63, 94, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 63, 94, 0.08) 1px, transparent 1px);
  background-size: 52px 52px;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 130px;
  background: linear-gradient(to top, var(--slate-50), transparent);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  align-items: center;
  gap: 54px;
  min-height: 620px;
  padding: 46px 0 70px;
}

.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 9px 16px;
  border-radius: 999px;
  color: var(--slate-700);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
  font-size: 14px;
  font-weight: 700;
}

.hero h1 {
  margin: 24px 0 20px;
  font-size: clamp(42px, 6vw, 70px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(90deg, var(--rose-500), var(--pink-500));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-copy p {
  max-width: 660px;
  margin: 0 0 28px;
  color: var(--slate-600);
  font-size: 19px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.hero-search {
  display: flex;
  flex: 1;
  min-width: 260px;
  max-width: 460px;
  padding: 6px;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

.hero-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  padding: 0 16px;
  background: transparent;
  outline: none;
}

.hero-search button {
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  color: var(--white);
  background: linear-gradient(135deg, var(--rose-500), var(--pink-500));
  font-weight: 750;
  cursor: pointer;
}

.hero-stats {
  display: flex;
  gap: 26px;
  margin-top: 42px;
}

.hero-stat {
  position: relative;
  min-width: 96px;
}

.hero-stat strong {
  display: block;
  font-size: 32px;
  line-height: 1;
}

.hero-stat span {
  display: block;
  margin-top: 7px;
  color: var(--slate-500);
  font-size: 14px;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: end;
  overflow: hidden;
  padding: 28px;
  border-radius: 34px;
  opacity: 0;
  transform: scale(0.96) translateY(18px);
  pointer-events: none;
  background: var(--slate-900);
  box-shadow: 0 35px 90px rgba(15, 23, 42, 0.25);
  transition: opacity 420ms ease, transform 420ms ease;
}

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

.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.84;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.86), rgba(15, 23, 42, 0.18) 58%, rgba(15, 23, 42, 0.08));
}

.hero-slide-content {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.hero-slide-content h2 {
  margin: 10px 0 10px;
  font-size: 30px;
  line-height: 1.2;
}

.hero-slide-content p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

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

.hero-badges span,
.detail-badges span {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  font-size: 13px;
  font-weight: 750;
}

.inline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--rose-500), var(--pink-500));
}

.slider-dots {
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 28px;
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.slider-dot.active {
  width: 28px;
  background: var(--white);
}

.section {
  padding: 76px 0;
}

.section.white {
  background: var(--white);
}

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

.section-title h2,
.listing-toolbar h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.15;
}

.section-title p,
.listing-toolbar p,
.page-hero p {
  margin: 0;
  color: var(--slate-600);
  line-height: 1.75;
}

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

.category-card {
  position: relative;
  display: flex;
  min-height: 196px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 24px;
  border-radius: var(--radius-xl);
  color: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.28), transparent 34%);
}

.category-card > * {
  position: relative;
  z-index: 1;
}

.category-icon {
  font-size: 36px;
}

.category-name {
  margin-top: 10px;
  font-size: 22px;
  font-weight: 850;
}

.category-desc {
  display: block;
  margin: 10px 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.6;
}

.category-count {
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 13px;
  font-weight: 800;
}

.category-samples {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.category-samples span {
  max-width: 100%;
  overflow: hidden;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gradient-rose-pink { background: linear-gradient(135deg, #fb7185, #ec4899); }
.gradient-orange-red { background: linear-gradient(135deg, #fb923c, #ef4444); }
.gradient-pink-purple { background: linear-gradient(135deg, #f472b6, #a855f7); }
.gradient-blue-cyan { background: linear-gradient(135deg, #60a5fa, #06b6d4); }
.gradient-violet-indigo { background: linear-gradient(135deg, #8b5cf6, #4f46e5); }
.gradient-amber-orange { background: linear-gradient(135deg, #f59e0b, #f97316); }
.gradient-emerald-teal { background: linear-gradient(135deg, #10b981, #14b8a6); }
.gradient-cyan-blue { background: linear-gradient(135deg, #22d3ee, #2563eb); }
.gradient-lime-green { background: linear-gradient(135deg, #84cc16, #22c55e); }
.gradient-slate-gray { background: linear-gradient(135deg, #64748b, #0f172a); }

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.76);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.movie-card:hover {
  border-color: rgba(244, 63, 94, 0.28);
  box-shadow: var(--shadow-md);
}

.movie-card-link {
  display: block;
  height: 100%;
}

.cover-frame {
  position: relative;
  height: 300px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(244, 63, 94, 0.24), transparent 34%),
    linear-gradient(135deg, var(--slate-800), var(--slate-900));
}

.movie-card.compact .cover-frame {
  height: 230px;
}

.cover-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease, opacity 200ms ease;
}

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

.cover-frame.is-missing img {
  display: none;
}

.cover-frame.is-missing::after {
  content: attr(data-title);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
  color: var(--white);
  font-size: 22px;
  font-weight: 850;
  line-height: 1.45;
  text-align: center;
}

.corner-badge,
.score-badge {
  position: absolute;
  top: 14px;
  z-index: 2;
  border-radius: 999px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.corner-badge {
  left: 14px;
  padding: 6px 10px;
  background: rgba(15, 23, 42, 0.62);
  backdrop-filter: blur(8px);
}

.score-badge {
  right: 14px;
  padding: 6px 9px;
  background: linear-gradient(135deg, var(--rose-500), var(--pink-500));
}

.play-hover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 50px;
  opacity: 0;
  background: rgba(15, 23, 42, 0.42);
  transition: opacity 220ms ease;
}

.movie-card:hover .play-hover {
  opacity: 1;
}

.movie-card-body {
  padding: 18px;
}

.movie-meta-line {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--slate-500);
  font-size: 12px;
  font-weight: 750;
}

.movie-meta-line span {
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--slate-100);
}

.movie-card h3 {
  min-height: 2.7em;
  margin: 0 0 9px;
  font-size: 18px;
  line-height: 1.35;
}

.movie-card p {
  min-height: 3.2em;
  margin: 0;
  color: var(--slate-600);
  font-size: 14px;
  line-height: 1.6;
}

.card-tags,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--rose-600);
  background: var(--rose-50);
  font-size: 12px;
  font-weight: 750;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 26px;
}

.ranking-panel,
.info-panel,
.content-card {
  border: 1px solid rgba(226, 232, 240, 0.78);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.ranking-panel,
.info-panel {
  padding: 22px;
}

.ranking-panel h2,
.info-panel h2,
.content-card h2 {
  margin: 0 0 18px;
  font-size: 22px;
}

.ranking-list {
  display: grid;
  gap: 10px;
}

.ranking-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 11px;
  border-radius: 14px;
  background: var(--slate-50);
  transition: background 180ms ease, transform 180ms ease;
}

.ranking-item:hover {
  transform: translateX(4px);
  background: var(--rose-50);
}

.ranking-number {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: var(--white);
  background: linear-gradient(135deg, var(--rose-500), var(--pink-500));
  font-size: 13px;
  font-weight: 900;
}

.ranking-title {
  overflow: hidden;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ranking-score {
  color: var(--rose-600);
  font-weight: 900;
}

.page-hero {
  padding: 62px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.22), transparent 26%),
    linear-gradient(135deg, var(--rose-500), var(--pink-500));
}

.page-hero .container {
  display: grid;
  gap: 12px;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 54px);
}

.page-hero p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--slate-500);
  font-size: 14px;
}

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

.listing-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  align-items: end;
  gap: 22px;
  margin-bottom: 24px;
  padding: 22px;
  border: 1px solid rgba(226, 232, 240, 0.82);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.toolbar-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 140px 130px 130px;
  gap: 10px;
}

.listing-search,
.filter-select,
.sort-select {
  width: 100%;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  padding: 12px 13px;
  color: var(--slate-800);
  background: var(--white);
  outline: none;
}

.no-results {
  display: none;
  padding: 34px;
  border-radius: var(--radius-xl);
  color: var(--slate-600);
  background: var(--white);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.no-results.visible {
  display: block;
}

.detail-page {
  padding: 34px 0 76px;
}

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

.player-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

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

.player-box video {
  width: 100%;
  height: 100%;
  background: #000000;
}

.player-start {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: var(--white);
  background: radial-gradient(circle at center, rgba(244, 63, 94, 0.32), rgba(15, 23, 42, 0.7));
  cursor: pointer;
}

.player-start span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rose-500), var(--pink-500));
  box-shadow: var(--shadow-lg);
  font-weight: 900;
}

.player-start.hidden {
  display: none;
}

.player-meta {
  padding: 24px;
}

.player-meta h1 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.2;
}

.player-meta p {
  margin: 0;
  color: var(--slate-600);
  line-height: 1.85;
}

.detail-badges span {
  color: var(--rose-600);
  background: var(--rose-50);
}

.poster-panel img,
.poster-panel .cover-frame {
  width: 100%;
  border-radius: var(--radius-lg);
}

.poster-panel .cover-frame {
  height: 430px;
}

.info-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.info-row {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 10px;
  color: var(--slate-700);
  line-height: 1.6;
}

.info-row strong {
  color: var(--slate-900);
}

.content-stack {
  display: grid;
  gap: 22px;
  margin-top: 28px;
}

.content-card {
  padding: 26px;
}

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

.related-section {
  margin-top: 34px;
}

.search-hero-form {
  display: flex;
  width: min(720px, 100%);
  padding: 7px;
  margin-top: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.search-hero-form input {
  flex: 1;
  min-width: 0;
  border: 0;
  padding: 0 16px;
  color: var(--white);
  background: transparent;
  outline: none;
}

.search-hero-form input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.search-hero-form button {
  border: 0;
  border-radius: 999px;
  padding: 12px 22px;
  color: var(--rose-600);
  background: var(--white);
  font-weight: 850;
  cursor: pointer;
}

.site-footer {
  color: #cbd5e1;
  background: linear-gradient(135deg, #111827, #1e293b);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 30px;
  padding: 48px 0;
}

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

.site-footer p {
  margin: 14px 0 0;
  color: #94a3b8;
  line-height: 1.75;
}

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

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

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

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-row span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  color: #94a3b8;
  font-size: 14px;
  text-align: center;
}

@media (max-width: 1080px) {
  .desktop-nav,
  .top-search {
    display: none;
  }

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

  .hero-inner,
  .split-layout,
  .detail-layout,
  .listing-toolbar {
    grid-template-columns: 1fr;
  }

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

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

  .toolbar-controls {
    grid-template-columns: 1fr 1fr;
  }
}

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

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

  .logo-text {
    font-size: 20px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;
    padding: 34px 0 54px;
  }

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

  .hero-copy p {
    font-size: 16px;
  }

  .hero-actions,
  .hero-search,
  .search-hero-form {
    width: 100%;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 18px;
  }

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

  .hero-slide {
    padding: 20px;
    border-radius: 24px;
  }

  .section {
    padding: 52px 0;
  }

  .section-header {
    display: grid;
  }

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

  .cover-frame,
  .movie-card.compact .cover-frame {
    height: 250px;
  }

  .toolbar-controls {
    grid-template-columns: 1fr;
  }

  .poster-panel .cover-frame {
    height: 360px;
  }

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

  .search-hero-form input {
    min-height: 44px;
  }
}
