:root {
  color-scheme: dark;
  --bg: #020617;
  --bg-soft: #0f172a;
  --panel: rgba(15, 23, 42, 0.72);
  --panel-strong: rgba(15, 23, 42, 0.92);
  --line: rgba(168, 85, 247, 0.22);
  --text: #f8fafc;
  --muted: #94a3b8;
  --muted-strong: #cbd5e1;
  --purple: #a855f7;
  --pink: #ec4899;
  --blue: #38bdf8;
  --yellow: #facc15;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 20% 10%, rgba(168, 85, 247, 0.25), transparent 28rem),
    radial-gradient(circle at 80% 8%, rgba(236, 72, 153, 0.18), transparent 30rem),
    linear-gradient(135deg, #020617 0%, #0f172a 48%, #000000 100%);
  color: var(--text);
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.94), rgba(88, 28, 135, 0.92), rgba(15, 23, 42, 0.94));
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.header-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 {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  color: white;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  box-shadow: 0 0 26px rgba(168, 85, 247, 0.38);
}

.brand-name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #c084fc, #f472b6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  overflow: hidden;
}

.main-nav a,
.mobile-panel a {
  color: #dbe4f0;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 14px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover,
.mobile-panel a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 300px;
}

.header-search input,
.mobile-search input,
.wide-search input {
  width: 100%;
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 14px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
  padding: 11px 14px;
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-search input:focus,
.mobile-search input:focus,
.wide-search input:focus {
  border-color: rgba(192, 132, 252, 0.85);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.16);
  background: rgba(255, 255, 255, 0.12);
}

.header-search button,
.mobile-search button,
.wide-search button,
.primary-btn {
  border: 0;
  border-radius: 999px;
  padding: 11px 18px;
  color: white;
  font-weight: 700;
  background: linear-gradient(90deg, #9333ea, #db2777);
  box-shadow: 0 12px 30px rgba(168, 85, 247, 0.28);
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.header-search button:hover,
.mobile-search button:hover,
.wide-search button:hover,
.primary-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 18px 42px rgba(168, 85, 247, 0.38);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.mobile-panel {
  display: none;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 18px;
  border-top: 1px solid rgba(168, 85, 247, 0.2);
}

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

.mobile-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-top: 12px;
}

.hero {
  position: relative;
  height: 640px;
  overflow: hidden;
  background: #020617;
}

.hero-stage,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.85s ease;
}

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

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

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.14)),
    linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.48) 34%, transparent 70%);
}

.hero-copy {
  position: absolute;
  left: 50%;
  bottom: 74px;
  width: min(1280px, calc(100% - 32px));
  transform: translateX(-50%);
  max-width: 1280px;
}

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

.hero-tags,
.detail-tags,
.tag-line,
.meta-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.hero-tags span,
.detail-tags span,
.tag-line span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 6px 12px;
  color: #f8fafc;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  font-size: 13px;
}

.hero-tags span:first-child,
.detail-tags span:first-child {
  border-color: transparent;
  background: linear-gradient(90deg, #9333ea, #db2777);
}

.hero h1 {
  margin: 20px 0 14px;
  font-size: clamp(40px, 7vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 900;
  text-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}

.hero p {
  margin: 0 0 28px;
  max-width: 680px;
  color: #e2e8f0;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.75;
}

.hero-actions,
.intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.ghost-btn,
.text-btn,
.section-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(168, 85, 247, 0.35);
  border-radius: 999px;
  padding: 10px 18px;
  color: #d8b4fe;
  background: rgba(15, 23, 42, 0.62);
  transition: color 0.2s ease, border 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.ghost-btn:hover,
.text-btn:hover,
.section-link:hover {
  color: white;
  border-color: rgba(216, 180, 254, 0.82);
  background: rgba(168, 85, 247, 0.2);
  transform: translateY(-2px);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: white;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  font-size: 38px;
  line-height: 0;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.72);
  transform: translateY(-50%) scale(1.06);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

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

.hero-dot.is-active {
  width: 32px;
  background: #a855f7;
}

.content-wrap,
.page-shell {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}

.home-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 24px;
  padding: 56px 0 24px;
}

.intro-panel,
.intro-search,
.feature-card,
.filter-panel,
.detail-info,
.side-card,
.player-card,
.category-overview-card,
.category-tile {
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.58), rgba(15, 23, 42, 0.64));
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.intro-panel,
.intro-search {
  border-radius: var(--radius);
  padding: 30px;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
  color: #c084fc;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.intro-panel h2,
.page-hero h1,
.section-heading h2,
.feature-copy h2,
.detail-info h1 {
  margin: 0;
  color: white;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.intro-panel h2,
.page-hero h1 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.08;
}

.intro-panel p,
.page-hero p,
.section-heading p,
.feature-copy p,
.category-tile p,
.category-overview-body p,
.detail-info p,
.filter-panel p {
  color: var(--muted-strong);
  line-height: 1.8;
}

.intro-search h2 {
  margin: 0 0 20px;
}

.intro-search form,
.wide-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.content-section {
  padding: 48px 0;
}

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

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

.section-heading p {
  margin: 8px 0 0;
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(168, 85, 247, 0.16);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.52), rgba(15, 23, 42, 0.72));
  transition: border 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.movie-card:hover {
  border-color: rgba(168, 85, 247, 0.48);
  transform: translateY(-5px);
  box-shadow: 0 22px 54px rgba(168, 85, 247, 0.16);
  background: linear-gradient(135deg, rgba(51, 65, 85, 0.68), rgba(15, 23, 42, 0.82));
}

.poster {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.9);
}

.poster img,
.category-cover img,
.rank-poster img,
.related-card img,
.feature-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.poster::after,
.category-cover::after,
.rank-poster::after,
.feature-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 62%);
}

.badge-year,
.badge-region {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  padding: 5px 9px;
  color: white;
  font-size: 12px;
  background: rgba(0, 0, 0, 0.66);
  backdrop-filter: blur(8px);
}

.badge-year {
  top: 10px;
  right: 10px;
}

.badge-region {
  left: 10px;
  bottom: 10px;
  background: rgba(147, 51, 234, 0.78);
}

.card-body {
  padding: 18px;
}

.meta-line {
  color: var(--muted);
  font-size: 12px;
}

.meta-line span + span::before {
  content: "•";
  margin-right: 8px;
  color: rgba(148, 163, 184, 0.65);
}

.movie-card h3,
.rank-body h2,
.category-overview-body h2 {
  margin: 10px 0 8px;
  color: white;
  line-height: 1.35;
}

.movie-card h3 {
  font-size: 18px;
}

.movie-card h3 a:hover,
.rank-body h2 a:hover,
.category-overview-body h2 a:hover {
  color: #c084fc;
}

.movie-card p,
.rank-body p {
  display: -webkit-box;
  margin: 0 0 14px;
  color: var(--muted-strong);
  font-size: 14px;
  line-height: 1.72;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tag-line span {
  border-color: rgba(56, 189, 248, 0.18);
  color: #bae6fd;
  background: rgba(14, 165, 233, 0.14);
  font-size: 12px;
  padding: 5px 9px;
}

.row-list {
  display: grid;
  gap: 18px;
}

.movie-card-row {
  display: grid;
  grid-template-columns: 250px 1fr;
}

.poster-row {
  height: 100%;
  aspect-ratio: auto;
}

.feature-band {
  padding: 38px 0;
}

.feature-card {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 32px;
  border-radius: 30px;
  padding: 26px;
  overflow: hidden;
}

.feature-poster {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 360px;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.feature-copy h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
}

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

.category-tile {
  border-radius: 22px;
  padding: 24px;
  transition: transform 0.25s ease, border 0.25s ease, box-shadow 0.25s ease;
}

.category-tile:hover {
  border-color: rgba(168, 85, 247, 0.52);
  transform: translateY(-4px);
  box-shadow: 0 18px 46px rgba(168, 85, 247, 0.14);
}

.category-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.9), rgba(236, 72, 153, 0.85));
}

.category-tile h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.mini-links a,
.channel-links a {
  border: 1px solid rgba(168, 85, 247, 0.22);
  border-radius: 999px;
  padding: 7px 10px;
  color: #d8b4fe;
  background: rgba(168, 85, 247, 0.08);
  font-size: 12px;
}

.page-shell {
  padding: 34px 0 72px;
}

.page-hero {
  margin-bottom: 34px;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: clamp(28px, 5vw, 58px);
  background:
    radial-gradient(circle at 20% 0%, rgba(168, 85, 247, 0.32), transparent 28rem),
    linear-gradient(135deg, rgba(30, 41, 59, 0.66), rgba(15, 23, 42, 0.82));
  box-shadow: var(--shadow);
}

.slim-hero {
  padding: 36px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

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

.channel-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.filter-panel {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 18px;
  align-items: start;
  margin: 0 0 30px;
  border-radius: 22px;
  padding: 24px;
}

.filter-panel h2 {
  margin: 0 0 8px;
}

.tag-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-filter button {
  border: 1px solid rgba(168, 85, 247, 0.22);
  border-radius: 999px;
  padding: 8px 13px;
  color: #dbe4f0;
  background: rgba(15, 23, 42, 0.55);
  transition: background 0.2s ease, border 0.2s ease, color 0.2s ease;
}

.tag-filter button:hover,
.tag-filter button.is-active {
  color: white;
  border-color: rgba(236, 72, 153, 0.55);
  background: linear-gradient(90deg, rgba(147, 51, 234, 0.86), rgba(219, 39, 119, 0.82));
}

.category-overview-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  border-radius: 24px;
  padding: 18px;
  overflow: hidden;
}

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

.category-overview-body h2 {
  font-size: 24px;
}

.category-overview-body ul {
  margin: 14px 0;
  padding: 0;
  list-style: none;
}

.category-overview-body li {
  margin: 6px 0;
  color: var(--muted-strong);
  font-size: 14px;
}

.category-overview-body li a:hover {
  color: #c084fc;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 70px 180px 1fr;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(168, 85, 247, 0.18);
  border-radius: 22px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.55), rgba(15, 23, 42, 0.74));
  transition: border 0.2s ease, transform 0.2s ease;
}

.rank-item:hover {
  border-color: rgba(168, 85, 247, 0.5);
  transform: translateY(-3px);
}

.rank-number {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  color: white;
  font-size: 22px;
  font-weight: 900;
  background: linear-gradient(135deg, #9333ea, #db2777);
}

.rank-poster {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 16 / 9;
}

.rank-body h2 {
  font-size: 24px;
}

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

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

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

.player-card {
  border-radius: 26px;
  padding: 12px;
}

.player-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #000;
  aspect-ratio: 16 / 9;
}

.player-wrap video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.player-cover {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  border: 0;
  color: white;
  background: radial-gradient(circle at center, rgba(168, 85, 247, 0.16), rgba(0, 0, 0, 0.48) 52%, rgba(0, 0, 0, 0.68));
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

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

.play-icon {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 999px;
  background: linear-gradient(135deg, #9333ea, #db2777);
  box-shadow: 0 18px 48px rgba(168, 85, 247, 0.44);
  font-size: 34px;
}

.detail-info {
  border-radius: 26px;
  padding: 28px;
}

.detail-info h1 {
  margin: 18px 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
}

.detail-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 24px;
}

.detail-stats div {
  border: 1px solid rgba(168, 85, 247, 0.13);
  border-radius: 18px;
  padding: 15px;
  background: rgba(2, 6, 23, 0.42);
}

.detail-stats strong {
  display: block;
  margin-bottom: 4px;
  color: #facc15;
  font-size: 18px;
}

.detail-stats span {
  color: var(--muted);
  font-size: 13px;
}

.detail-info section {
  border-top: 1px solid rgba(168, 85, 247, 0.17);
  padding-top: 22px;
  margin-top: 22px;
}

.detail-info h2,
.side-card h2 {
  margin: 0 0 14px;
  font-size: 24px;
}

.detail-info p {
  margin: 0 0 12px;
  text-align: justify;
}

.detail-side {
  min-width: 0;
}

.side-card {
  border-radius: 24px;
  padding: 20px;
}

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

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

.related-card {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 12px;
  align-items: center;
  border-radius: 14px;
  padding: 8px;
  color: white;
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.2s ease, transform 0.2s ease;
}

.related-card:hover {
  background: rgba(168, 85, 247, 0.16);
  transform: translateX(2px);
}

.related-card img {
  height: 68px;
  border-radius: 10px;
}

.related-card span {
  display: block;
  margin-bottom: 5px;
  font-weight: 700;
  line-height: 1.35;
}

.related-card small {
  color: var(--muted);
}

.wide-search {
  max-width: 760px;
  margin-top: 22px;
}

.search-empty {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 42px;
  color: var(--muted-strong);
  background: rgba(15, 23, 42, 0.55);
  text-align: center;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(0, 0, 0, 0.98));
}

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

.footer-brand p {
  max-width: 420px;
  color: var(--muted-strong);
  line-height: 1.8;
}

.footer-logo {
  margin-bottom: 16px;
}

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

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li {
  margin: 8px 0;
  color: var(--muted-strong);
}

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

.footer-bottom {
  border-top: 1px solid rgba(168, 85, 247, 0.15);
  padding: 18px;
  color: var(--muted);
  text-align: center;
}

.is-filter-hidden {
  display: none;
}

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

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

  .header-search {
    margin-left: auto;
  }

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

  .detail-layout,
  .home-intro,
  .feature-card {
    grid-template-columns: 1fr;
  }

  .detail-side {
    order: 2;
  }

  .sticky-card {
    position: static;
  }

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

@media (max-width: 780px) {
  .header-inner {
    height: auto;
    min-height: 66px;
    flex-wrap: wrap;
    gap: 12px;
    padding: 10px 0;
  }

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

  .header-search {
    display: none;
  }

  .mobile-panel.is-open {
    display: grid;
    gap: 6px;
  }

  .hero {
    height: 560px;
  }

  .hero-copy {
    bottom: 64px;
  }

  .hero-arrow {
    width: 40px;
    height: 40px;
    font-size: 30px;
  }

  .hero-prev {
    left: 12px;
  }

  .hero-next {
    right: 12px;
  }

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

  .movie-card-row,
  .category-overview-card,
  .rank-item {
    grid-template-columns: 1fr;
  }

  .poster-row {
    aspect-ratio: 16 / 9;
  }

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

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

  .related-card {
    grid-template-columns: 92px 1fr;
  }

  .intro-search form,
  .wide-search,
  .mobile-search {
    grid-template-columns: 1fr;
  }

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

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}
