:root {
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-200: #fde68a;
  --amber-300: #fcd34d;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --amber-800: #92400e;
  --amber-900: #78350f;
  --amber-950: #451a03;
  --text: #2f1b05;
  --muted: #8a5a16;
  --card: #ffffff;
  --soft: #fff7df;
  --line: rgba(146, 64, 14, 0.16);
  --shadow: 0 18px 45px rgba(120, 53, 15, 0.16);
  --shadow-strong: 0 26px 70px rgba(69, 26, 3, 0.24);
  font-family: "Inter", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(180deg, #fff8e1 0%, #fffaf0 36%, #ffffff 100%);
  min-height: 100vh;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(255, 251, 235, 0.94), rgba(254, 252, 232, 0.94), rgba(255, 251, 235, 0.94));
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 24px rgba(120, 53, 15, 0.12);
  border-bottom: 1px solid rgba(217, 119, 6, 0.12);
}

.header-inner {
  width: min(1240px, calc(100% - 32px));
  height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber-500), var(--amber-800));
  box-shadow: 0 10px 24px rgba(217, 119, 6, 0.3);
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text strong {
  color: var(--amber-900);
  font-size: 20px;
}

.brand-text small {
  margin-top: 3px;
  color: var(--amber-700);
  font-size: 12px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex: 1;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--amber-900);
  font-size: 14px;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
  background: var(--amber-600);
  transform: translateY(-1px);
}

.nav-link-muted {
  color: var(--amber-700);
  font-weight: 600;
}

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: var(--amber-100);
  cursor: pointer;
}

.mobile-menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--amber-900);
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto 14px;
  padding: 12px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

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

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

.mobile-link:hover {
  background: var(--amber-100);
}

.hero-carousel {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: radial-gradient(circle at top left, rgba(252, 211, 77, 0.38), transparent 34%), linear-gradient(135deg, var(--amber-950), var(--amber-800));
}

.hero-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  pointer-events: none;
}

.hero-glow-one {
  left: -80px;
  top: 110px;
  background: rgba(245, 158, 11, 0.6);
}

.hero-glow-two {
  right: 6%;
  bottom: -140px;
  background: rgba(254, 243, 199, 0.45);
}

.hero-stage {
  position: relative;
  width: min(1240px, calc(100% - 32px));
  min-height: 570px;
  margin: 0 auto;
  padding: 72px 0 30px;
}

.hero-slide {
  position: absolute;
  inset: 72px 0 30px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) 360px;
  gap: 46px;
  align-items: center;
  padding: 48px;
  border-radius: 34px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-strong);
  opacity: 0;
  transform: translateX(28px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(69, 26, 3, 0.12), rgba(69, 26, 3, 0.55));
  pointer-events: none;
}

.hero-copy,
.hero-poster {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: max-content;
  padding: 7px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(245, 158, 11, 0.9);
  box-shadow: 0 10px 24px rgba(245, 158, 11, 0.22);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 720px;
  margin: 20px 0 16px;
  color: #ffffff;
  font-size: clamp(38px, 7vw, 76px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.hero-copy p {
  max-width: 700px;
  margin: 0 0 22px;
  color: var(--amber-100);
  font-size: 18px;
  line-height: 1.8;
}

.hero-tags,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--amber-900);
  background: var(--amber-100);
  font-size: 12px;
  font-weight: 700;
}

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

.primary-button,
.ghost-button,
.section-action,
.footer-button,
.rank-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber-500), var(--amber-700));
  box-shadow: 0 12px 26px rgba(217, 119, 6, 0.28);
}

.primary-button:hover,
.rank-play:hover,
.footer-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(217, 119, 6, 0.32);
}

.primary-button.compact {
  min-height: 40px;
}

.ghost-button {
  color: var(--amber-100);
  border: 1px solid rgba(254, 243, 199, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.ghost-button.light {
  color: #ffffff;
}

.ghost-button:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.hero-poster {
  display: block;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--amber-700), var(--amber-950));
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.32);
  transform: rotate(2deg);
}

.hero-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.hero-poster span {
  position: absolute;
  right: 16px;
  top: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(69, 26, 3, 0.82);
  font-weight: 800;
}

.hero-dots {
  position: relative;
  z-index: 5;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto 42px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.hero-dot {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 62px;
  padding: 8px;
  border: 1px solid rgba(254, 243, 199, 0.25);
  border-radius: 18px;
  color: var(--amber-100);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  text-align: left;
  overflow: hidden;
}

.hero-dot.active,
.hero-dot:hover {
  background: rgba(255, 255, 255, 0.18);
}

.hero-dot img {
  width: 42px;
  height: 46px;
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: 12px;
}

.hero-dot span {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
}

.home-search-band {
  width: min(1240px, calc(100% - 32px));
  margin: -22px auto 0;
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.home-search-band strong {
  color: var(--amber-900);
  font-size: 22px;
}

.home-search-band p {
  margin: 4px 0 0;
  color: var(--muted);
}

.content-section {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 62px 0;
}

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

.section-heading h2 {
  margin: 0;
  color: var(--amber-900);
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.03em;
}

.section-heading p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.section-action {
  color: var(--amber-900);
  background: var(--amber-100);
}

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

.category-tile {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 238px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, var(--soft));
  box-shadow: 0 10px 28px rgba(120, 53, 15, 0.09);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.category-thumbs {
  display: flex;
  align-items: center;
  min-height: 74px;
}

.category-thumbs img {
  width: 58px;
  height: 74px;
  margin-right: -16px;
  border: 3px solid #ffffff;
  border-radius: 16px;
  object-fit: cover;
  background: var(--amber-200);
  box-shadow: 0 8px 18px rgba(120, 53, 15, 0.16);
}

.category-tile h3 {
  margin: 0;
  color: var(--amber-900);
  font-size: 21px;
}

.category-tile p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.category-tile > span {
  align-self: end;
  color: var(--amber-700);
  font-size: 13px;
  font-weight: 800;
}

.filter-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 24px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 24px rgba(120, 53, 15, 0.08);
}

.filter-search {
  flex: 1;
  min-width: 240px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(217, 119, 6, 0.12);
}

.filter-search span {
  color: var(--amber-600);
  font-size: 20px;
  font-weight: 900;
}

.filter-search input {
  width: 100%;
  min-height: 46px;
  border: 0;
  outline: none;
  color: var(--text);
  background: transparent;
}

.filter-selects {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-selects select {
  min-height: 46px;
  padding: 0 36px 0 14px;
  border: 1px solid rgba(217, 119, 6, 0.15);
  border-radius: 16px;
  color: var(--amber-900);
  background: #ffffff;
  outline: none;
}

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

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

.movie-card {
  min-width: 0;
}

.poster-link {
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(120, 53, 15, 0.12);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.poster-link:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(120, 53, 15, 0.18);
}

.poster-frame {
  position: relative;
  margin: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: radial-gradient(circle at top, var(--amber-200), var(--amber-800));
}

.poster-frame img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.poster-link:hover .poster-frame img {
  transform: scale(1.08);
}

.poster-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 18px;
  color: #ffffff;
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.35;
  background: linear-gradient(135deg, var(--amber-700), var(--amber-950));
}

img.is-broken {
  opacity: 0;
}

.score-badge,
.play-chip {
  position: absolute;
  z-index: 4;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 900;
}

.score-badge {
  top: 10px;
  left: 10px;
  padding: 6px 9px;
  background: rgba(69, 26, 3, 0.82);
  font-size: 12px;
}

.play-chip {
  right: 10px;
  bottom: 10px;
  padding: 7px 11px;
  background: linear-gradient(135deg, var(--amber-500), var(--amber-700));
  box-shadow: 0 8px 18px rgba(69, 26, 3, 0.24);
  font-size: 12px;
}

.movie-card-body {
  display: grid;
  gap: 10px;
  padding: 15px;
}

.movie-card-body h3 {
  margin: 0;
  color: var(--amber-900);
  font-size: 17px;
  line-height: 1.35;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.movie-card-body p {
  margin: 0;
  color: var(--muted);
  min-height: 42px;
  font-size: 13px;
  line-height: 1.6;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--amber-700);
  font-size: 12px;
  font-weight: 700;
}

.meta-row span {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--amber-50);
}

.page-hero {
  width: min(1240px, calc(100% - 32px));
  margin: 34px auto 0;
  padding: 56px;
  border-radius: 34px;
  color: #ffffff;
  background: radial-gradient(circle at right top, rgba(252, 211, 77, 0.42), transparent 38%), linear-gradient(135deg, var(--amber-950), var(--amber-800));
  box-shadow: var(--shadow-strong);
}

.page-hero h1 {
  margin: 18px 0 12px;
  font-size: clamp(34px, 5vw, 58px);
  letter-spacing: -0.04em;
}

.page-hero p {
  max-width: 820px;
  margin: 0;
  color: var(--amber-100);
  font-size: 18px;
  line-height: 1.8;
}

.slim-hero {
  min-height: 260px;
}

.category-hero,
.ranking-hero {
  overflow: hidden;
}

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

.overview-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.overview-main {
  display: grid;
  gap: 10px;
  padding: 28px;
  background: linear-gradient(135deg, #ffffff, var(--amber-50));
}

.overview-main h2 {
  margin: 0;
  color: var(--amber-900);
  font-size: 28px;
}

.overview-main p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.overview-count {
  width: max-content;
  padding: 7px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--amber-600);
  font-weight: 900;
}

.overview-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px 28px 28px;
}

.overview-links a {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--amber-900);
  background: var(--amber-100);
  font-size: 13px;
  font-weight: 800;
}

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

.rank-card {
  display: grid;
  grid-template-columns: 56px 86px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(120, 53, 15, 0.09);
}

.rank-number {
  color: var(--amber-600);
  font-size: 26px;
  font-weight: 900;
  text-align: center;
}

.rank-poster {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
  background: var(--amber-700);
}

.rank-poster img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rank-body h2 {
  margin: 0 0 8px;
  color: var(--amber-900);
  font-size: 20px;
}

.rank-body p {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.65;
}

.rank-play,
.footer-button {
  color: #ffffff;
  background: var(--amber-600);
}

.search-page-panel {
  padding-bottom: 24px;
}

.large-search {
  display: flex;
  gap: 12px;
  padding: 16px;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.large-search input {
  flex: 1;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  outline: none;
}

.large-search button {
  min-width: 110px;
  border: 0;
  border-radius: 18px;
  color: #ffffff;
  background: var(--amber-600);
  font-weight: 900;
  cursor: pointer;
}

.search-results {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.search-empty {
  grid-column: 1 / -1;
  padding: 28px;
  border-radius: 22px;
  color: var(--muted);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.detail-hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--amber-950);
}

.detail-backdrop {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.08);
}

.detail-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(69, 26, 3, 0.12), rgba(69, 26, 3, 0.92));
}

.detail-inner {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 38px 0 54px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--amber-100);
  font-weight: 700;
  margin-bottom: 28px;
}

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

.detail-grid {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 42px;
  align-items: end;
}

.detail-poster {
  position: relative;
  margin: 0;
  aspect-ratio: 3 / 4;
  border-radius: 30px;
  overflow: hidden;
  background: var(--amber-800);
  box-shadow: var(--shadow-strong);
}

.detail-poster img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-copy h1 {
  margin: 18px 0 14px;
  color: #ffffff;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.detail-one-line {
  max-width: 820px;
  margin: 0 0 18px;
  color: var(--amber-100);
  font-size: 19px;
  line-height: 1.75;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.detail-meta span {
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--amber-950);
  background: rgba(255, 251, 235, 0.86);
  font-size: 13px;
  font-weight: 900;
}

.large-tags span {
  background: rgba(254, 243, 199, 0.88);
}

.detail-section {
  padding-top: 36px;
  padding-bottom: 16px;
}

.player-card,
.article-card {
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.video-shell {
  position: relative;
  background: #120802;
}

.video-shell video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: #000000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  border: 0;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(69, 26, 3, 0.24), rgba(69, 26, 3, 0.72));
  cursor: pointer;
}

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

.play-circle {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  padding-left: 5px;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber-500), var(--amber-700));
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.35);
  font-size: 32px;
}

.player-overlay strong {
  font-size: 22px;
}

.player-info {
  padding: 24px;
}

.player-info h2,
.article-card h2 {
  margin: 0 0 10px;
  color: var(--amber-900);
}

.player-info p,
.article-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.article-card {
  padding: 28px;
  margin-bottom: 18px;
}

.site-footer {
  margin-top: 34px;
  color: var(--amber-50);
  background: linear-gradient(180deg, var(--amber-900), var(--amber-950));
}

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

.site-footer h2,
.site-footer h3 {
  margin: 0 0 14px;
  color: var(--amber-300);
}

.site-footer p {
  margin: 0 0 16px;
  color: var(--amber-100);
  line-height: 1.8;
}

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

.site-footer a {
  color: var(--amber-100);
}

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

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

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

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

  .hero-slide {
    grid-template-columns: 1fr;
  }

  .hero-poster {
    display: none;
  }

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

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

@media (max-width: 760px) {
  .header-inner {
    height: 64px;
  }

  .brand-text strong {
    font-size: 18px;
  }

  .hero-carousel {
    min-height: 650px;
  }

  .hero-stage {
    min-height: 500px;
    padding-top: 34px;
  }

  .hero-slide {
    inset: 34px 0 20px;
    padding: 26px;
    border-radius: 26px;
  }

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

  .hero-dots {
    grid-template-columns: 1fr;
    margin-bottom: 24px;
  }

  .hero-dot:nth-child(n+4) {
    display: none;
  }

  .home-search-band,
  .section-heading,
  .filter-panel,
  .large-search {
    align-items: stretch;
    flex-direction: column;
  }

  .filter-selects {
    width: 100%;
  }

  .filter-selects select {
    flex: 1;
    min-width: 145px;
  }

  .category-grid,
  .movie-grid,
  .compact-grid,
  .overview-grid,
  .search-results {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .page-hero {
    padding: 34px 24px;
    border-radius: 26px;
  }

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

  .detail-poster {
    width: min(280px, 78vw);
  }

  .rank-card {
    grid-template-columns: 42px 70px minmax(0, 1fr);
  }

  .rank-play {
    grid-column: 2 / 4;
  }

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

@media (max-width: 480px) {
  .category-grid,
  .movie-grid,
  .compact-grid,
  .search-results {
    grid-template-columns: 1fr;
  }

  .movie-card-body p {
    min-height: auto;
  }

  .detail-copy h1 {
    font-size: 36px;
  }
}
