:root {
  --canyon-950: #2c1810;
  --canyon-900: #3f2418;
  --canyon-800: #5f3525;
  --canyon-700: #7a4a34;
  --canyon-600: #9a6745;
  --canyon-500: #b8895a;
  --earth-900: #3b3228;
  --earth-800: #574839;
  --earth-700: #745f4a;
  --sand-50: #fbf8f0;
  --sand-100: #f6efdf;
  --forest-700: #4f654a;
  --forest-100: #e5eadf;
  --gold-500: #ffb41e;
  --gold-400: #ffc94a;
  --gold-100: #fff3c4;
  --ink: #27190f;
  --muted: #7e6958;
  --card: rgba(255, 255, 255, 0.92);
  --shadow: 0 18px 45px rgba(92, 57, 37, 0.15);
  --shadow-soft: 0 10px 24px rgba(92, 57, 37, 0.1);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(135deg, var(--sand-50), #ffffff 45%, #f7f0e5);
  min-height: 100vh;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
button,
input {
  font: inherit;
}
.site-container {
  width: min(1200px, calc(100% - 32px));
  margin-inline: auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: #fff;
  background: linear-gradient(90deg, var(--canyon-900), var(--earth-800));
  box-shadow: var(--shadow-soft);
}
.header-inner {
  height: 76px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 24px;
  white-space: nowrap;
}
.logo-mark {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  color: var(--canyon-900);
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  box-shadow: 0 10px 24px rgba(255, 180, 30, 0.28);
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}
.nav-link {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.25s ease, transform 0.25s ease;
}
.nav-link:hover,
.nav-link.active {
  color: var(--gold-400);
  transform: translateY(-1px);
}
.header-search,
.mobile-search,
.large-search,
.filter-box {
  display: flex;
  align-items: center;
  gap: 0;
}
.header-search input,
.mobile-search input,
.large-search input,
.filter-box input {
  border: 1px solid rgba(255, 255, 255, 0.22);
  outline: none;
}
.header-search input {
  width: 210px;
  height: 40px;
  padding: 0 42px 0 18px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}
.header-search input::placeholder,
.mobile-search input::placeholder {
  color: rgba(255, 255, 255, 0.68);
}
.header-search button {
  width: 38px;
  height: 38px;
  margin-left: -40px;
  border: 0;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  cursor: pointer;
  font-size: 22px;
}
.menu-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  width: 44px;
  height: 44px;
  cursor: pointer;
}
.mobile-nav {
  display: none;
  padding: 0 16px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.mobile-nav.open {
  display: block;
}
.mobile-nav-link {
  display: block;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}
.mobile-search input {
  flex: 1;
  min-width: 0;
  height: 42px;
  padding: 0 14px;
  color: #fff;
  border-radius: 12px 0 0 12px;
  background: rgba(255, 255, 255, 0.12);
}
.mobile-search button {
  height: 42px;
  border: 0;
  padding: 0 16px;
  border-radius: 0 12px 12px 0;
  background: var(--gold-500);
  color: var(--canyon-900);
  font-weight: 800;
}
.hero-carousel {
  position: relative;
  height: min(72vh, 640px);
  min-height: 520px;
  overflow: hidden;
  color: #fff;
  background: var(--canyon-950);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s ease;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.08);
  transform: scale(1.04);
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 42%, rgba(255, 201, 74, 0.16), transparent 32%),
    linear-gradient(90deg, rgba(31, 18, 12, 0.92) 0%, rgba(49, 29, 18, 0.72) 48%, rgba(0, 0, 0, 0.35) 100%),
    linear-gradient(0deg, rgba(44, 24, 16, 0.95), transparent 45%);
}
.hero-content {
  position: relative;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  align-items: center;
  gap: 54px;
  padding-top: 20px;
}
.hero-copy {
  max-width: 720px;
}
.hero-kicker,
.section-label {
  display: inline-flex;
  align-items: center;
  width: max-content;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--canyon-900);
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.08em;
}
.hero-copy h1 {
  margin: 20px 0 18px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.06em;
  text-shadow: 0 22px 40px rgba(0, 0, 0, 0.28);
}
.hero-copy p {
  margin: 0;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  line-height: 1.85;
}
.hero-tags,
.detail-tags,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero-tags {
  margin-top: 22px;
}
.hero-tags span,
.detail-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 700;
}
.tag-row span {
  color: var(--canyon-700);
  background: #f3eadc;
}
.detail-tags span {
  color: var(--canyon-700);
  background: var(--sand-100);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.primary-btn,
.ghost-btn,
.section-more,
.quick-links a,
.category-preview-head a,
.channel-preview-head a,
.filter-box button,
.large-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.primary-btn,
.large-search button,
.filter-box button {
  color: var(--canyon-900);
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  box-shadow: 0 14px 28px rgba(255, 180, 30, 0.24);
  border: 0;
  cursor: pointer;
}
.ghost-btn {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(10px);
}
.primary-btn:hover,
.ghost-btn:hover,
.section-more:hover,
.quick-links a:hover,
.channel-preview-head a:hover,
.filter-box button:hover,
.large-search button:hover {
  transform: translateY(-2px);
}
.hero-poster {
  position: relative;
  display: block;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  transform: rotate(2deg);
}
.hero-poster img {
  width: 100%;
  aspect-ratio: 3 / 4.2;
  object-fit: cover;
}
.hero-poster span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--canyon-900);
  background: rgba(255, 201, 74, 0.92);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
}
.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 4;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 18px;
}
.hero-dots {
  display: flex;
  gap: 8px;
}
.hero-dot,
.hero-arrow {
  border: 0;
  cursor: pointer;
}
.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.52);
  transition: width 0.25s ease, background 0.25s ease;
}
.hero-dot.active {
  width: 34px;
  background: var(--gold-500);
}
.hero-arrow {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  font-size: 30px;
  line-height: 1;
}
.quick-search-panel {
  position: relative;
  z-index: 6;
  margin-top: -36px;
  padding: 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.large-search input,
.filter-box input {
  flex: 1;
  min-width: 0;
  height: 54px;
  padding: 0 20px;
  border: 1px solid #e7d9c3;
  color: var(--ink);
  background: #fff;
  border-radius: 999px 0 0 999px;
}
.large-search button,
.filter-box button {
  height: 54px;
  border-radius: 0 999px 999px 0;
}
.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.quick-links a,
.section-more,
.channel-preview-head a {
  color: var(--canyon-800);
  background: var(--sand-100);
}
.content-section {
  margin-top: 62px;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}
.section-head h2 {
  margin: 12px 0 8px;
  color: var(--canyon-900);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}
.scroll-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 300px);
  gap: 22px;
  overflow-x: auto;
  padding: 8px 4px 18px;
  scroll-snap-type: x proximity;
}
.movie-grid,
.compact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.movie-grid-large {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.compact-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}
.movie-card {
  overflow: hidden;
  border: 1px solid rgba(184, 137, 90, 0.16);
  border-radius: 24px;
  background: var(--card);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  scroll-snap-align: start;
}
.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 180, 30, 0.56);
  box-shadow: var(--shadow);
}
.movie-card.is-hidden {
  display: none;
}
.poster-link,
.poster-frame {
  display: block;
}
.poster-frame {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--canyon-800), var(--earth-700));
  aspect-ratio: 2 / 2.9;
}
.poster-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.movie-card:hover .poster-frame img {
  transform: scale(1.06);
}
.poster-shade {
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.66), transparent);
}
.year-badge,
.play-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
}
.year-badge {
  left: 12px;
  top: 12px;
  min-width: 58px;
  height: 30px;
  padding: 0 10px;
  color: var(--canyon-900);
  background: rgba(255, 201, 74, 0.93);
}
.play-badge {
  right: 12px;
  bottom: 12px;
  width: 42px;
  height: 42px;
  color: #fff;
  background: rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(10px);
}
.movie-card-body {
  padding: 16px;
}
.movie-title {
  display: block;
  min-height: 46px;
  color: var(--canyon-900);
  font-weight: 900;
  font-size: 18px;
  line-height: 1.3;
}
.movie-meta {
  margin: 6px 0 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.movie-desc {
  min-height: 48px;
  margin: 0 0 12px;
  color: #5c493c;
  font-size: 14px;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.movie-card-compact .movie-card-body {
  padding: 12px;
}
.movie-card-compact .movie-title {
  font-size: 15px;
  min-height: 40px;
}
.movie-card-compact .movie-desc,
.movie-card-compact .tag-row {
  display: none;
}
.movie-card-compact .poster-frame {
  aspect-ratio: 2 / 2.75;
}
.category-zone {
  padding: 34px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(229, 234, 223, 0.88), rgba(245, 240, 232, 0.92));
  box-shadow: var(--shadow-soft);
}
.channel-stack {
  display: grid;
  gap: 32px;
}
.channel-preview {
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.68);
}
.channel-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}
.channel-preview h3 {
  margin: 0 0 8px;
  color: var(--forest-700);
  font-size: 24px;
}
.channel-preview p {
  margin: 0;
  color: var(--muted);
}
.rank-zone {
  padding-bottom: 20px;
}
.rank-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.rank-item {
  display: grid;
  grid-template-columns: 52px 74px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.rank-num {
  color: var(--gold-500);
  font-weight: 950;
  font-size: 26px;
}
.rank-item img {
  width: 74px;
  height: 92px;
  object-fit: cover;
  border-radius: 14px;
}
.rank-copy strong,
.rank-copy em {
  display: block;
}
.rank-copy strong {
  color: var(--canyon-900);
  font-size: 17px;
}
.rank-copy em {
  margin-top: 6px;
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
}
.page-main {
  padding: 42px 0 80px;
}
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 46px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 201, 74, 0.34), transparent 28%),
    linear-gradient(135deg, var(--canyon-900), var(--earth-800));
  color: #fff;
  box-shadow: var(--shadow);
}
.page-hero h1 {
  margin: 16px 0 12px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
}
.page-hero p {
  max-width: 800px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.85;
  font-size: 18px;
}
.category-hero .filter-box,
.simple-page-hero .filter-box {
  max-width: 780px;
  margin-top: 24px;
}
.category-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}
.category-overview-card a {
  display: grid;
  grid-template-columns: 210px 1fr;
  min-height: 190px;
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.category-overview-card a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.category-cover-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  background: var(--canyon-800);
}
.category-cover-row img {
  width: 100%;
  height: 100%;
  min-height: 92px;
  object-fit: cover;
}
.category-overview-copy {
  padding: 26px;
}
.category-overview-copy h2 {
  margin: 0 0 10px;
  color: var(--canyon-900);
  font-size: 28px;
}
.category-overview-copy p {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.8;
}
.category-overview-copy span {
  color: var(--canyon-700);
  font-weight: 900;
}
.wide-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 26px;
}
.wide-feature-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: 26px;
  color: #fff;
  background: var(--canyon-900);
  box-shadow: var(--shadow-soft);
}
.wide-feature-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transition: transform 0.4s ease;
}
.wide-feature-card:hover img {
  transform: scale(1.06);
}
.wide-feature-card span {
  position: absolute;
  inset: auto 0 0;
  padding: 50px 20px 20px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.75), transparent);
}
.wide-feature-card strong,
.wide-feature-card em {
  display: block;
}
.wide-feature-card strong {
  font-size: 22px;
  line-height: 1.3;
}
.wide-feature-card em {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
  line-height: 1.6;
}
.ranking-list-page {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}
.ranking-card a {
  display: grid;
  grid-template-columns: 72px 105px 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ranking-card a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.ranking-number {
  color: var(--gold-500);
  font-weight: 950;
  font-size: 34px;
}
.ranking-card img {
  width: 105px;
  height: 140px;
  object-fit: cover;
  border-radius: 18px;
}
.ranking-copy strong,
.ranking-copy em {
  display: block;
}
.ranking-copy strong {
  color: var(--canyon-900);
  font-size: 24px;
}
.ranking-copy em {
  margin-top: 6px;
  color: var(--muted);
  font-style: normal;
}
.ranking-copy p {
  margin: 12px 0 0;
  color: #5c493c;
  line-height: 1.8;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 28px 0 18px;
  color: var(--muted);
}
.breadcrumb a {
  color: var(--canyon-700);
  font-weight: 800;
}
.detail-main {
  padding-bottom: 82px;
}
.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}
.cinema-player {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #000;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}
.movie-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: #000;
}
.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  border: 0;
  color: #fff;
  cursor: pointer;
  background:
    radial-gradient(circle at center, rgba(255, 180, 30, 0.18), transparent 26%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.28));
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.player-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.player-play-icon {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--canyon-900);
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.32);
  font-size: 30px;
}
.player-overlay strong {
  max-width: min(680px, 88%);
  font-size: clamp(24px, 4vw, 46px);
  line-height: 1.2;
  text-align: center;
  text-shadow: 0 10px 22px rgba(0, 0, 0, 0.45);
}
.detail-article,
.info-card {
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.detail-article {
  margin-top: 24px;
  padding: 34px;
}
.detail-article h1 {
  margin: 0 0 12px;
  color: var(--canyon-900);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
}
.detail-one-line {
  margin: 0 0 18px;
  color: #5c493c;
  font-size: 18px;
  line-height: 1.8;
}
.detail-article h2 {
  margin: 28px 0 10px;
  color: var(--canyon-800);
  font-size: 24px;
}
.detail-article p {
  color: #4d3c31;
  line-height: 1.95;
  font-size: 16px;
}
.detail-sidebar {
  position: sticky;
  top: 96px;
}
.detail-poster {
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow);
  aspect-ratio: 2 / 2.9;
  object-fit: cover;
  background: var(--canyon-800);
}
.info-card {
  margin-top: 20px;
  padding: 24px;
}
.info-card h2 {
  margin: 0 0 18px;
  color: var(--canyon-900);
}
.info-card dl {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px 16px;
  margin: 0;
}
.info-card dt {
  color: var(--muted);
}
.info-card dd {
  margin: 0;
  color: var(--canyon-900);
  font-weight: 800;
}
.info-card a {
  color: var(--canyon-700);
}
.related-section {
  margin-top: 54px;
}
.site-footer {
  margin-top: 70px;
  color: rgba(255, 255, 255, 0.78);
  background: linear-gradient(135deg, var(--canyon-900), var(--earth-900));
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 34px;
  padding: 44px 0;
}
.footer-logo {
  color: #fff;
  margin-bottom: 16px;
}
.site-footer p {
  max-width: 520px;
  margin: 12px 0 0;
  line-height: 1.8;
}
.site-footer h2 {
  margin: 0 0 14px;
  color: var(--gold-400);
  font-size: 18px;
}
.footer-links {
  display: grid;
  gap: 10px;
}
.footer-links a:hover {
  color: var(--gold-400);
}
.footer-bottom {
  padding: 18px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
}
@media (max-width: 1180px) {
  .movie-grid-large,
  .movie-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .compact-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 960px) {
  .desktop-nav,
  .header-search {
    display: none;
  }
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }
  .header-inner {
    height: 68px;
  }
  .hero-carousel {
    min-height: 680px;
    height: auto;
  }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 54px 0 86px;
  }
  .hero-poster {
    width: min(320px, 74vw);
    margin-inline: auto;
    transform: none;
  }
  .movie-grid-large,
  .movie-grid,
  .compact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .category-overview-grid,
  .rank-list,
  .detail-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .detail-sidebar {
    position: static;
  }
  .detail-poster {
    max-width: 340px;
  }
  .wide-feature-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  .site-container {
    width: min(100% - 24px, 1200px);
  }
  .site-logo {
    font-size: 20px;
  }
  .logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 12px;
  }
  .hero-carousel {
    min-height: 640px;
  }
  .hero-copy h1 {
    font-size: 40px;
  }
  .hero-copy p {
    font-size: 16px;
  }
  .hero-actions {
    gap: 10px;
  }
  .primary-btn,
  .ghost-btn {
    flex: 1;
    min-width: 138px;
  }
  .quick-search-panel {
    margin-top: -22px;
    padding: 16px;
    border-radius: 22px;
  }
  .large-search,
  .filter-box {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .large-search input,
  .large-search button,
  .filter-box input,
  .filter-box button {
    width: 100%;
    border-radius: 16px;
  }
  .section-head {
    display: block;
  }
  .section-more {
    margin-top: 16px;
  }
  .movie-grid-large,
  .movie-grid,
  .compact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .movie-card-body {
    padding: 12px;
  }
  .movie-title {
    font-size: 15px;
  }
  .movie-desc,
  .tag-row {
    display: none;
  }
  .category-zone,
  .page-hero,
  .detail-article {
    padding: 22px;
    border-radius: 24px;
  }
  .category-overview-card a {
    grid-template-columns: 1fr;
  }
  .category-cover-row {
    height: 170px;
  }
  .ranking-card a {
    grid-template-columns: 48px 82px 1fr;
    gap: 12px;
    padding: 12px;
  }
  .ranking-number {
    font-size: 24px;
  }
  .ranking-card img {
    width: 82px;
    height: 108px;
    border-radius: 14px;
  }
  .ranking-copy p {
    display: none;
  }
  .ranking-copy strong {
    font-size: 17px;
  }
  .rank-item {
    grid-template-columns: 40px 62px 1fr;
  }
  .rank-item img {
    width: 62px;
    height: 78px;
  }
  .player-play-icon {
    width: 62px;
    height: 62px;
  }
}
@media (max-width: 460px) {
  .movie-grid-large,
  .movie-grid,
  .compact-grid {
    grid-template-columns: 1fr;
  }
  .scroll-row {
    grid-auto-columns: minmax(240px, 82vw);
  }
  .hero-controls {
    bottom: 18px;
  }
  .hero-arrow {
    display: none;
  }
}
