:root {
  --bg: #0f1117;
  --panel: #171b24;
  --panel-soft: #202635;
  --line: #2a3142;
  --text: #f8fafc;
  --muted: #a8b0c2;
  --muted-2: #7b8497;
  --gold: #facc15;
  --gold-2: #f59e0b;
  --orange: #fb923c;
  --red: #f43f5e;
  --blue: #38bdf8;
  --green: #34d399;
  --purple: #a78bfa;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --radius: 22px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 0%, rgba(250, 204, 21, 0.14), transparent 34rem),
    radial-gradient(circle at 85% 10%, rgba(59, 130, 246, 0.14), transparent 30rem),
    linear-gradient(135deg, #0b0d12 0%, #111827 42%, #0f1117 100%);
}

body.locked {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(15, 17, 23, 0.84);
  backdrop-filter: blur(18px);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  min-height: 74px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #171717;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  box-shadow: 0 12px 30px rgba(250, 204, 21, 0.22);
}

.brand-name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

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

.nav-link {
  padding: 10px 14px;
  border-radius: 14px;
  color: var(--muted);
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.07);
}

.nav-link:hover {
  transform: translateY(-1px);
}

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

.header-search input,
.mobile-search input,
.filter-input,
.search-hero-form input,
.filter-select {
  border: 1px solid rgba(148, 163, 184, 0.2);
  outline: none;
  color: var(--text);
  background: rgba(31, 41, 55, 0.82);
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-search input {
  width: 250px;
  padding: 11px 14px;
  border-radius: 14px;
}

.header-search input:focus,
.mobile-search input:focus,
.filter-input:focus,
.search-hero-form input:focus,
.filter-select:focus {
  border-color: rgba(250, 204, 21, 0.8);
  box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.12);
}

.header-search button,
.mobile-search button,
.search-hero-form button,
.primary-btn,
.secondary-btn,
.filter-button {
  border: 0;
  border-radius: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-search button,
.mobile-search button,
.search-hero-form button,
.primary-btn,
.filter-button.active {
  color: #141414;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  box-shadow: 0 14px 32px rgba(245, 158, 11, 0.18);
}

.header-search button {
  padding: 11px 16px;
}

.header-search button:hover,
.mobile-search button:hover,
.search-hero-form button:hover,
.primary-btn:hover,
.secondary-btn:hover,
.filter-button:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: var(--text);
}

.mobile-panel {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 22px 20px;
}

.mobile-search {
  display: flex;
  gap: 10px;
  margin: 8px 0 16px;
}

.mobile-search input {
  min-width: 0;
  flex: 1;
  border-radius: 14px;
  padding: 12px 14px;
}

.mobile-search button {
  padding: 0 16px;
}

.mobile-links,
.mobile-sub-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.mobile-links a,
.mobile-sub-link {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--muted);
  font-weight: 700;
}

.mobile-sub-links {
  margin-top: 10px;
}

.main-wrap,
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 22px;
}

.hero {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background: #07080d;
}

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

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

.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.05);
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 8, 13, 0.96) 0%, rgba(15, 17, 23, 0.84) 38%, rgba(15, 17, 23, 0.28) 70%, rgba(7, 8, 13, 0.62) 100%),
    linear-gradient(0deg, #0f1117 0%, transparent 36%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  min-height: 600px;
  margin: 0 auto;
  padding: 80px 22px 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  align-items: center;
  gap: 36px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(250, 204, 21, 0.12);
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.hero p {
  margin: 0;
  max-width: 620px;
  color: #d9dfeb;
  font-size: 18px;
  line-height: 1.82;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 30px;
}

.hero-meta span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #e5e7eb;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(10px);
}

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

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
}

.secondary-btn {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.hero-panel {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  padding: 18px;
  background: rgba(17, 24, 39, 0.56);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-panel img {
  position: static;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 22px;
  object-fit: cover;
  filter: none;
}

.hero-panel-info {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
}

.hero-controls {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.hero-dot.active {
  width: 34px;
  background: var(--gold);
}

.section {
  padding-top: 66px;
  padding-bottom: 30px;
}

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

.section-head h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 38px);
  letter-spacing: -0.04em;
}

.section-more {
  padding: 11px 16px;
  border-radius: 14px;
  color: var(--gold);
  background: rgba(250, 204, 21, 0.1);
  font-weight: 800;
}

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

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

.movie-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: var(--radius);
  background: rgba(31, 41, 55, 0.78);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  transition: transform 0.24s ease, border 0.24s ease, box-shadow 0.24s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(250, 204, 21, 0.56);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.22), rgba(59, 130, 246, 0.18));
}

.poster-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.movie-card:hover .poster-link img {
  transform: scale(1.06);
}

.poster-link::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent);
}

.poster-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.18) 45%, transparent 58%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

.movie-card:hover .poster-shine {
  transform: translateX(120%);
}

.rank-badge {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #111827;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  font-size: 12px;
  font-weight: 900;
}

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

.movie-meta-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 700;
}

.movie-card h3 {
  margin: 8px 0 8px;
  min-height: 44px;
  font-size: 16px;
  line-height: 1.35;
}

.movie-card h3 a:hover {
  color: var(--gold);
}

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

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag-row span,
.detail-tags span {
  display: inline-flex;
  padding: 5px 8px;
  border-radius: 999px;
  color: #d8e0ec;
  background: rgba(148, 163, 184, 0.13);
  font-size: 12px;
  font-weight: 700;
}

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

.category-tile {
  position: relative;
  overflow: hidden;
  min-height: 170px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 24px;
  background: rgba(31, 41, 55, 0.78);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.category-tile::before {
  content: "";
  position: absolute;
  inset: -35% auto auto -20%;
  width: 210px;
  height: 210px;
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.26);
  filter: blur(6px);
}

.category-tile h3,
.category-tile p,
.category-tile span {
  position: relative;
  z-index: 2;
}

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

.category-tile p {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.7;
}

.category-tile span {
  display: inline-flex;
  color: var(--gold);
  font-weight: 900;
}

.rank-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 22px;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 44px 72px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 88px;
  padding: 10px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 18px;
  background: rgba(31, 41, 55, 0.72);
  transition: transform 0.2s ease, border 0.2s ease, background 0.2s ease;
}

.rank-item:hover {
  transform: translateX(4px);
  border-color: rgba(250, 204, 21, 0.5);
  background: rgba(31, 41, 55, 0.95);
}

.list-rank {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  color: #111827;
  background: var(--gold);
  font-weight: 900;
}

.rank-item img {
  width: 72px;
  height: 68px;
  object-fit: cover;
  border-radius: 14px;
}

.rank-info {
  min-width: 0;
}

.rank-info strong,
.rank-info em {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-info strong {
  margin-bottom: 6px;
  font-size: 16px;
}

.rank-info em {
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
}

.cta-band {
  margin: 62px auto 30px;
  max-width: 1200px;
  border-radius: 32px;
  padding: 42px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #151515;
  text-align: center;
}

.cta-band h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 5vw, 48px);
  letter-spacing: -0.05em;
}

.cta-band p {
  margin: 0 auto 24px;
  max-width: 680px;
  color: rgba(15, 23, 42, 0.78);
  font-weight: 700;
  line-height: 1.8;
}

.cta-band .secondary-btn {
  color: #111827;
  border-color: rgba(17, 24, 39, 0.18);
  background: rgba(255, 255, 255, 0.55);
}

.page-hero {
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  background:
    linear-gradient(135deg, rgba(31, 41, 55, 0.9), rgba(15, 17, 23, 0.7)),
    radial-gradient(circle at 70% 20%, rgba(250, 204, 21, 0.18), transparent 28rem);
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 22px 54px;
}

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

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

.page-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

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

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 0 0 24px;
  padding: 16px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 22px;
  background: rgba(31, 41, 55, 0.72);
}

.filter-input {
  min-width: 240px;
  flex: 1;
  padding: 13px 15px;
  border-radius: 14px;
}

.filter-select {
  padding: 13px 15px;
  border-radius: 14px;
}

.filter-button {
  padding: 13px 17px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.search-hero-form {
  display: flex;
  gap: 12px;
  max-width: 780px;
  margin-top: 26px;
}

.search-hero-form input {
  min-width: 0;
  flex: 1;
  padding: 16px 18px;
  border-radius: 18px;
  font-size: 17px;
}

.search-hero-form button {
  padding: 0 26px;
}

.search-results {
  display: grid;
  gap: 16px;
}

.search-result-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 22px;
  padding: 14px;
  background: rgba(31, 41, 55, 0.72);
}

.search-result-item img {
  width: 120px;
  height: 160px;
  border-radius: 16px;
  object-fit: cover;
}

.search-result-item h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.search-result-item h3:hover {
  color: var(--gold);
}

.search-result-item p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.75;
}

.empty-state {
  padding: 44px;
  border: 1px dashed rgba(148, 163, 184, 0.24);
  border-radius: 24px;
  color: var(--muted);
  text-align: center;
}

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

.player-card,
.detail-card,
.side-card {
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 28px;
  background: rgba(31, 41, 55, 0.72);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.22);
}

.player-card {
  overflow: hidden;
}

.movie-player {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  border: 0;
  color: var(--text);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.62));
}

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

.play-orb {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 999px;
  color: #111827;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  box-shadow: 0 20px 50px rgba(245, 158, 11, 0.32);
}

.play-orb svg {
  width: 34px;
  height: 34px;
  margin-left: 4px;
  fill: currentColor;
}

.detail-card {
  margin-top: 22px;
  padding: 28px;
}

.detail-card h1 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.05em;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.detail-meta span {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(148, 163, 184, 0.1);
  font-weight: 700;
}

.detail-card h2 {
  margin: 28px 0 10px;
  font-size: 22px;
}

.detail-card p {
  margin: 0;
  color: #d7deeb;
  line-height: 1.9;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.side-card {
  padding: 18px;
}

.side-card img {
  width: 100%;
  border-radius: 22px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.side-card h2 {
  margin: 18px 0 12px;
  font-size: 20px;
}

.side-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

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

.related-item {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 12px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.related-item:hover {
  background: rgba(250, 204, 21, 0.1);
}

.related-item img {
  width: 86px;
  height: 58px;
  border-radius: 12px;
  object-fit: cover;
}

.related-item strong,
.related-item span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.related-item strong {
  margin-bottom: 6px;
}

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

.site-footer {
  margin-top: 72px;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(10, 12, 18, 0.82);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 46px 22px;
  display: grid;
  grid-template-columns: 1.3fr 0.75fr 1fr 0.95fr;
  gap: 34px;
}

.footer-brand p,
.footer-group p {
  color: var(--muted);
  line-height: 1.8;
}

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

.footer-group h2 {
  margin: 0 0 14px;
  font-size: 16px;
}

.footer-group a {
  display: block;
  margin: 9px 0;
  color: var(--muted);
}

.footer-group a:hover {
  color: var(--gold);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 22px 28px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted-2);
  border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.is-filtered-out {
  display: none !important;
}

@media (max-width: 1100px) {
  .movie-grid,
  .movie-grid.category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .detail-layout,
  .rank-panel {
    grid-template-columns: 1fr;
  }

  .side-card {
    order: -1;
  }

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

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

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding-top: 64px;
  }

  .hero-panel {
    display: none;
  }
}

@media (max-width: 720px) {
  .header-inner {
    min-height: 66px;
    padding: 0 16px;
  }

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

  .main-wrap,
  .section,
  .page-hero-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero,
  .hero-content {
    min-height: 560px;
  }

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

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

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

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

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

  .category-strip {
    grid-template-columns: 1fr;
  }

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

  .filter-bar,
  .search-hero-form {
    flex-direction: column;
    align-items: stretch;
  }

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

  .search-result-item {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .search-result-item img {
    width: 92px;
    height: 122px;
  }

  .detail-card,
  .side-card {
    padding: 18px;
    border-radius: 22px;
  }

  .play-orb {
    width: 68px;
    height: 68px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding: 34px 16px;
  }

  .footer-bottom {
    padding: 16px;
    flex-direction: column;
  }
}
