:root {
  --yellow: #facc15;
  --yellow-dark: #ca8a04;
  --green: #86efac;
  --text: #1f2937;
  --muted: #667085;
  --paper: #ffffff;
  --soft: #fefce8;
  --dark: #0f172a;
  --line: rgba(31, 41, 55, 0.12);
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background: linear-gradient(135deg, #fefce8 0%, #ffffff 46%, #f0fdf4 100%);
  min-height: 100vh;
}

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

img {
  display: block;
  max-width: 100%;
  background: linear-gradient(135deg, #fde047, #bbf7d0);
}

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, #facc15 0%, #fde047 45%, #86efac 100%);
  box-shadow: 0 12px 28px rgba(202, 138, 4, 0.22);
}

.header-inner {
  width: min(1180px, calc(100% - 24px));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 900;
  color: #1f2937;
  white-space: nowrap;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ca8a04;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 22px rgba(255, 255, 255, 0.55);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-link {
  padding: 10px 16px;
  border-radius: 999px;
  color: rgba(31, 41, 55, 0.86);
  font-weight: 700;
  transition: 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(255, 255, 255, 0.84);
  color: #ca8a04;
  box-shadow: 0 10px 22px rgba(202, 138, 4, 0.12);
}

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

.header-search input,
.search-panel input,
.local-filter input,
.local-filter select {
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  outline: none;
  padding: 11px 16px;
  color: var(--text);
  min-width: 210px;
  transition: 0.25s ease;
}

.header-search input:focus,
.search-panel input:focus,
.local-filter input:focus,
.local-filter select:focus {
  background: #fff;
  border-color: #facc15;
  box-shadow: 0 0 0 5px rgba(250, 204, 21, 0.24);
}

.header-search button {
  border: 0;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  padding: 11px 16px;
  font-weight: 800;
  cursor: pointer;
}

.hero-shell {
  position: relative;
  height: min(720px, calc(100vh - 72px));
  min-height: 560px;
  overflow: hidden;
  background: #0f172a;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 28%, rgba(250, 204, 21, 0.32), transparent 28%),
    linear-gradient(90deg, rgba(15, 23, 42, 0.94), rgba(15, 23, 42, 0.68) 47%, rgba(15, 23, 42, 0.16)),
    linear-gradient(0deg, rgba(15, 23, 42, 0.76), rgba(15, 23, 42, 0.06));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 56px;
  align-items: center;
  color: #fff;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: max-content;
  padding: 8px 14px;
  margin: 0 0 18px;
  border-radius: 999px;
  background: #facc15;
  color: #1f2937;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.hero-copy h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(40px, 7vw, 78px);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: -0.06em;
  text-shadow: 0 16px 48px rgba(0, 0, 0, 0.36);
}

.hero-copy p,
.page-hero p {
  margin: 22px 0 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.75;
}

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

.hero-tags {
  margin: 24px 0 30px;
}

.hero-tags span,
.detail-tags span,
.detail-tags a,
.detail-tag-cloud span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.18);
  color: #ca8a04;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 800;
}

.hero-tags span {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.hero-actions,
.prev-next {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn.primary {
  background: #facc15;
  color: #111827;
  box-shadow: 0 18px 38px rgba(250, 204, 21, 0.32);
}

.btn.primary:hover,
.btn.mini:hover {
  transform: translateY(-2px) scale(1.02);
  background: #fde047;
}

.btn.ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(14px);
}

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

.btn.mini {
  min-height: 38px;
  padding: 0 16px;
  background: #fff;
  color: #ca8a04;
}

.hero-poster {
  position: relative;
  display: block;
  border-radius: 28px;
  overflow: hidden;
  min-height: 460px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.46);
  transform: rotate(2deg);
  transition: 0.35s ease;
}

.hero-poster:hover {
  transform: rotate(0deg) translateY(-8px);
}

.hero-poster img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.hero-poster span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.78);
  color: #fff;
  text-align: center;
  padding: 12px 16px;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.hero-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: 0.25s ease;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.36);
}

.hero-arrow.left {
  left: 22px;
}

.hero-arrow.right {
  right: 22px;
}

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

.hero-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  cursor: pointer;
  transition: 0.25s ease;
}

.hero-dot.active {
  width: 34px;
  background: #facc15;
}

.section {
  padding: 62px 0;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.section-title span {
  width: 9px;
  height: 40px;
  border-radius: 999px;
  background: linear-gradient(180deg, #facc15, #ca8a04);
}

.section-title h2 {
  margin: 0;
  flex: 1;
  color: #1f2937;
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 950;
  letter-spacing: -0.03em;
}

.section-title a {
  color: #ca8a04;
  font-weight: 900;
}

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

.category-card {
  position: relative;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  border-radius: 26px;
  overflow: hidden;
  color: #fff;
  box-shadow: var(--shadow);
  transition: 0.3s ease;
}

.category-card:hover {
  transform: translateY(-8px);
}

.category-card strong {
  position: relative;
  z-index: 2;
  font-size: 22px;
  font-weight: 950;
}

.category-card em {
  position: relative;
  z-index: 2;
  margin-top: 8px;
  font-style: normal;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  transition: 0.35s ease;
}

.category-card:hover img {
  transform: scale(1.08);
  opacity: 0.36;
}

.category-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.24));
}

.tone-red,
.category-card.tone-red {
  background: linear-gradient(135deg, #ef4444, #f97316);
}

.tone-blue,
.category-card.tone-blue {
  background: linear-gradient(135deg, #2563eb, #06b6d4);
}

.tone-green,
.category-card.tone-green {
  background: linear-gradient(135deg, #16a34a, #14b8a6);
}

.tone-purple,
.category-card.tone-purple {
  background: linear-gradient(135deg, #7c3aed, #c026d3);
}

.tone-orange,
.category-card.tone-orange {
  background: linear-gradient(135deg, #f97316, #ef4444);
}

.tone-gray,
.category-card.tone-gray {
  background: linear-gradient(135deg, #374151, #111827);
}

.tone-yellow,
.category-card.tone-yellow {
  background: linear-gradient(135deg, #eab308, #f59e0b);
}

.tone-rose,
.category-card.tone-rose {
  background: linear-gradient(135deg, #e11d48, #fb7185);
}

.tone-indigo,
.category-card.tone-indigo {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
}

.tone-teal,
.category-card.tone-teal {
  background: linear-gradient(135deg, #0d9488, #22c55e);
}

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

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

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

.movie-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.1);
  transition: 0.28s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.18);
}

.poster-wrap {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #111827;
}

.movie-card.compact {
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr);
}

.movie-card.compact .poster-wrap {
  aspect-ratio: auto;
  min-height: 180px;
}

.poster-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.42s ease;
}

.movie-card:hover .poster-wrap img {
  transform: scale(1.08);
}

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.62), transparent 54%);
  opacity: 0;
  transition: 0.28s ease;
}

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

.play-chip {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #facc15;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32);
  transform: translate(-50%, -50%) scale(0.76);
  opacity: 0;
  transition: 0.28s ease;
}

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

.rank-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  min-width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #111827;
  background: #facc15;
  font-weight: 950;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.26);
}

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

.movie-card h3 {
  margin: 10px 0 8px;
  font-size: 18px;
  line-height: 1.35;
}

.movie-card h3 a:hover {
  color: #ca8a04;
}

.movie-card p {
  margin: 0;
  min-height: 46px;
  color: #667085;
  font-size: 14px;
  line-height: 1.65;
}

.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  color: #667085;
  font-size: 13px;
}

.soft-band {
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.16), rgba(134, 239, 172, 0.2));
}

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

.ranking-card {
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 24px;
}

.ranking-card.full {
  width: 100%;
}

.ranking-card h2 {
  margin: 0 0 18px;
  font-size: 26px;
  font-weight: 950;
}

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

.ranking-row {
  display: grid;
  grid-template-columns: 42px 76px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 10px;
  border-radius: 18px;
  transition: 0.22s ease;
}

.ranking-row:hover {
  background: #fefce8;
}

.ranking-num {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f3f4f6;
  color: #64748b;
  font-weight: 950;
}

.ranking-row:nth-child(1) .ranking-num,
.ranking-row:nth-child(2) .ranking-num,
.ranking-row:nth-child(3) .ranking-num {
  background: linear-gradient(135deg, #facc15, #f59e0b);
  color: #fff;
}

.ranking-row img {
  width: 76px;
  height: 54px;
  border-radius: 10px;
  object-fit: cover;
}

.ranking-text {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.ranking-text strong,
.related-card strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ranking-text em {
  color: #667085;
  font-size: 13px;
  font-style: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ranking-meta {
  color: #667085;
  font-size: 13px;
  white-space: nowrap;
}

.page-main {
  padding: 34px 0 70px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 34px;
  padding: 42px;
  border-radius: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 20%, rgba(250, 204, 21, 0.38), transparent 32%),
    linear-gradient(135deg, #111827, #374151);
  box-shadow: var(--shadow);
}

.page-hero.small-hero {
  min-height: 240px;
}

.category-hero:before,
.ranking-hero:before,
.small-hero:before {
  content: "";
  position: absolute;
  inset: auto -70px -90px auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.local-filter,
.search-panel {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.local-filter input,
.local-filter select,
.search-panel input {
  border-color: rgba(255, 255, 255, 0.42);
  min-width: 190px;
}

.flat-section {
  padding-top: 0;
}

.category-overview-list {
  display: grid;
  gap: 24px;
}

.category-overview-card {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 22px;
  border-radius: 30px;
  padding: 26px;
  color: #fff;
  box-shadow: var(--shadow);
}

.overview-heading h2 {
  margin: 0 0 10px;
  font-size: 30px;
}

.overview-heading p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.75;
}

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

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

.related-card {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  color: #1f2937;
  transition: 0.22s ease;
}

.related-card:hover {
  background: #fff;
  transform: translateY(-2px);
}

.related-card img {
  width: 86px;
  height: 64px;
  object-fit: cover;
  border-radius: 10px;
}

.related-card span {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.related-card em {
  color: #667085;
  font-style: normal;
  font-size: 13px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  color: #667085;
  font-size: 14px;
}

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

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

.detail-primary,
.detail-sidebar {
  display: grid;
  gap: 22px;
}

.player-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #000;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

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

.player-start {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  border: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.18));
  cursor: pointer;
  transition: 0.25s ease;
}

.player-start span {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  padding-left: 6px;
  border-radius: 50%;
  background: #facc15;
  color: #fff;
  font-size: 36px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
  transition: 0.25s ease;
}

.player-start:hover span {
  transform: scale(1.08);
  background: #fde047;
}

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

.detail-info-card,
.side-card {
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.09);
  padding: 26px;
}

.detail-info-card h1 {
  margin: 18px 0 12px;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: #667085;
  margin-bottom: 20px;
}

.detail-info-card h2,
.side-card h2 {
  margin: 26px 0 12px;
  font-size: 22px;
}

.detail-info-card p {
  color: #475467;
  line-height: 1.9;
  margin: 0 0 14px;
}

.detail-info-card .lead-text {
  color: #1f2937;
  font-size: 18px;
  line-height: 1.85;
}

.detail-tag-cloud {
  margin-top: 24px;
}

.prev-next {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  justify-content: space-between;
}

.prev-next a {
  max-width: 48%;
  padding: 12px 16px;
  border-radius: 16px;
  background: #fefce8;
  color: #92400e;
  font-weight: 800;
}

.side-poster {
  overflow: hidden;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

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

.search-result-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.search-result-head h2 {
  margin: 0;
  font-size: 30px;
}

.search-result-head p {
  color: #667085;
  margin: 0;
}

.site-footer {
  background: linear-gradient(135deg, #111827, #0f172a);
  color: #d1d5db;
  padding: 52px 0;
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 30px;
  align-items: center;
}

.footer-logo {
  display: inline-flex;
  margin-bottom: 12px;
  color: #facc15;
  font-size: 24px;
  font-weight: 950;
}

.site-footer p {
  max-width: 560px;
  margin: 0;
  color: #9ca3af;
  line-height: 1.8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.footer-links a {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #e5e7eb;
}

.footer-links a:hover {
  color: #111827;
  background: #facc15;
}

.is-hidden-card {
  display: none !important;
}

@media (max-width: 1080px) {
  .header-inner {
    height: auto;
    padding: 12px 0;
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }

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

  .hero-content,
  .split-layout,
  .detail-layout,
  .category-overview-card,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-poster {
    display: none;
  }

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

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

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

  .ranking-meta {
    display: none;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .brand {
    font-size: 20px;
  }

  .header-search {
    width: 100%;
  }

  .header-search input {
    flex: 1;
    min-width: 0;
  }

  .nav-link {
    padding: 9px 10px;
    font-size: 14px;
  }

  .hero-shell {
    height: 620px;
    min-height: 620px;
  }

  .hero-content {
    align-items: end;
    padding-bottom: 70px;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: 40px;
  }

  .hero-arrow {
    display: none;
  }

  .section {
    padding: 44px 0;
  }

  .category-grid,
  .movie-grid.four,
  .movie-grid.two,
  .overview-samples {
    grid-template-columns: 1fr;
  }

  .movie-card.compact {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .page-hero {
    padding: 28px;
    border-radius: 24px;
    align-items: flex-start;
    flex-direction: column;
  }

  .local-filter,
  .search-panel {
    width: 100%;
  }

  .local-filter input,
  .local-filter select,
  .search-panel input {
    width: 100%;
    min-width: 0;
  }

  .detail-info-card,
  .side-card {
    padding: 20px;
  }

  .prev-next a {
    max-width: 100%;
    width: 100%;
  }

  .player-start span {
    width: 72px;
    height: 72px;
    font-size: 30px;
  }
}
