:root {
  --color-bg: #f8fafc;
  --color-paper: #ffffff;
  --color-text: #0f172a;
  --color-muted: #64748b;
  --color-line: #e2e8f0;
  --color-primary: #2563eb;
  --color-primary-2: #06b6d4;
  --color-deep: #0f172a;
  --shadow-soft: 0 16px 40px rgba(15, 23, 42, 0.10);
  --shadow-strong: 0 24px 70px rgba(15, 23, 42, 0.22);
  --radius-lg: 18px;
  --radius-xl: 28px;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(135deg, #eff6ff 0%, #ecfeff 45%, #f8fafc 100%);
  color: var(--color-text);
}

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(15, 23, 42, 0.98), rgba(30, 58, 138, 0.96), rgba(15, 23, 42, 0.98));
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.25);
  backdrop-filter: blur(16px);
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand-mark,
.footer-brand span {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #0f172a;
  background: linear-gradient(135deg, #60a5fa, #22d3ee);
  box-shadow: 0 10px 22px rgba(34, 211, 238, 0.35);
  font-size: 16px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #dbeafe;
  font-weight: 600;
}

.main-nav a,
.nav-dropdown > a {
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav .is-active,
.nav-dropdown:hover > a {
  color: #ffffff;
}

.nav-dropdown {
  position: relative;
  padding: 24px 0;
}

.dropdown-panel {
  position: absolute;
  top: 60px;
  left: 0;
  min-width: 180px;
  padding: 10px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--shadow-strong);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: all 0.2s ease;
}

.nav-dropdown:hover .dropdown-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: #334155;
  font-size: 14px;
}

.dropdown-panel a:hover {
  background: #eff6ff;
  color: var(--color-primary);
}

.header-search {
  margin-left: auto;
  position: relative;
  width: 290px;
}

.header-search input {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 999px;
  padding: 11px 44px 11px 18px;
  color: #ffffff;
  outline: none;
  background: rgba(15, 23, 42, 0.72);
}

.header-search input::placeholder {
  color: #94a3b8;
}

.header-search button {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.9);
  color: #ffffff;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 28px;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #0f172a;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 56px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease;
}

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

.hero-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-position: center;
  background-size: cover;
  opacity: 0.22;
  filter: saturate(1.1);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 25%, rgba(59, 130, 246, 0.45), transparent 32%),
    radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.32), transparent 28%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.94), rgba(30, 58, 138, 0.82), rgba(8, 145, 178, 0.74));
}

.hero::after,
.detail-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(0deg, #f8fafc, transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
}

.eyebrow {
  margin: 0 0 12px;
  color: #bfdbfe;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--color-primary);
}

.hero h1,
.page-hero h1,
.detail-info h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(38px, 7vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.hero h1 span {
  display: block;
  margin-top: 8px;
  color: transparent;
  background: linear-gradient(90deg, #60a5fa, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-desc {
  max-width: 680px;
  margin: 24px 0 0;
  color: #dbeafe;
  font-size: 19px;
  line-height: 1.75;
}

.hero-tags,
.detail-chips,
.tag-row,
.filter-tags,
.popular-searches,
.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags {
  margin-top: 24px;
}

.hero-tags span,
.detail-chips span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.12);
  color: #e0f2fe;
  font-size: 13px;
  font-weight: 700;
}

.tag-row span {
  background: #eff6ff;
  color: #2563eb;
  padding: 4px 8px;
  font-size: 12px;
}

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

.primary-btn,
.secondary-btn,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
  padding: 14px 26px;
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.34);
}

.secondary-btn {
  padding: 14px 26px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-2px) scale(1.02);
}

.hero-poster {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 30px;
  box-shadow: var(--shadow-strong);
  background: rgba(255, 255, 255, 0.08);
}

.hero-poster img {
  width: 100%;
  aspect-ratio: 3 / 4.1;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-poster:hover img {
  transform: scale(1.06);
}

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

.hero-dots button {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
}

.hero-dots button.is-active {
  width: 38px;
  background: #ffffff;
}

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

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

.section-head.compact {
  align-items: center;
  margin-bottom: 18px;
}

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

.text-link {
  color: var(--color-primary);
  font-weight: 800;
}

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

.movie-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-8px);
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: var(--shadow-soft);
}

.card-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  background: #e2e8f0;
  aspect-ratio: 16 / 10;
}

.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.card-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 34px;
  background: rgba(15, 23, 42, 0.38);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.movie-card:hover .card-play {
  opacity: 1;
}

.card-badge {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  padding: 5px 10px;
  color: #ffffff;
  background: rgba(37, 99, 235, 0.9);
  font-size: 12px;
  font-weight: 800;
}

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

.bottom-left {
  left: 10px;
  bottom: 10px;
  background: rgba(15, 23, 42, 0.82);
}

.card-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
}

.card-info strong {
  display: -webkit-box;
  overflow: hidden;
  color: #0f172a;
  font-size: 17px;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-info em {
  display: -webkit-box;
  overflow: hidden;
  min-height: 42px;
  color: #64748b;
  font-size: 14px;
  font-style: normal;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #64748b;
  font-size: 13px;
}

.accent-section {
  width: 100%;
  max-width: none;
  padding-right: max(16px, calc((100% - 1180px) / 2));
  padding-left: max(16px, calc((100% - 1180px) / 2));
  background: linear-gradient(90deg, rgba(236, 253, 245, 0.92), rgba(236, 254, 255, 0.92));
}

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

.category-tile,
.category-card {
  min-height: 150px;
  padding: 24px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile:hover,
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.category-tile span,
.category-card strong {
  display: block;
  margin-bottom: 10px;
  color: #0f172a;
  font-size: 22px;
  font-weight: 900;
}

.category-tile em,
.category-card em {
  color: #64748b;
  font-style: normal;
  line-height: 1.6;
}

.category-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.category-card-images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 126px;
  overflow: hidden;
}

.category-card-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card-body {
  padding: 22px;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 32px;
}

.horizontal-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 310px;
  gap: 20px;
  overflow-x: auto;
  padding: 4px 4px 22px;
  scroll-snap-type: x proximity;
}

.horizontal-row .movie-card {
  scroll-snap-align: start;
}

.ranking-panel,
.prose-section,
.detail-article,
.detail-side,
.filter-panel {
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.ranking-panel {
  padding: 22px;
}

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

.rank-list.wide {
  margin-top: 32px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rank-item {
  display: grid;
  grid-template-columns: 42px 64px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 18px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.rank-item:hover {
  background: #eff6ff;
  transform: translateX(3px);
}

.rank-no {
  color: #2563eb;
  font-weight: 900;
}

.rank-item img {
  width: 64px;
  height: 46px;
  border-radius: 12px;
  object-fit: cover;
}

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

.rank-item strong {
  color: #0f172a;
  font-size: 15px;
}

.rank-item em {
  margin-top: 4px;
  color: #64748b;
  font-size: 12px;
  font-style: normal;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, #0f172a, #1e3a8a, #0891b2);
}

.page-hero {
  min-height: 320px;
  display: grid;
  place-items: center;
  padding: 72px 16px 86px;
  text-align: center;
}

.page-hero > div {
  position: relative;
  z-index: 2;
  width: min(920px, 100%);
}

.page-hero p:not(.eyebrow) {
  margin: 18px auto 0;
  max-width: 760px;
  color: #dbeafe;
  font-size: 18px;
  line-height: 1.75;
}

.search-hero {
  min-height: 410px;
}

.page-search {
  position: relative;
  display: flex;
  max-width: 760px;
  margin: 28px auto 0;
  padding: 6px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: var(--shadow-strong);
}

.page-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  padding: 16px 20px;
  outline: 0;
  color: #0f172a;
  background: transparent;
  font-size: 17px;
}

.page-search button {
  border: 0;
  border-radius: 999px;
  padding: 0 28px;
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  font-weight: 900;
  cursor: pointer;
}

.popular-searches {
  justify-content: center;
  margin-top: 18px;
}

.popular-searches button,
.filter-tags button {
  border: 0;
  border-radius: 999px;
  padding: 9px 14px;
  color: #2563eb;
  background: #eff6ff;
  font-weight: 800;
  cursor: pointer;
}

.popular-searches button {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
}

.filter-panel {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 18px;
  margin-bottom: 18px;
  padding: 18px;
}

.filter-panel label {
  display: grid;
  gap: 8px;
  color: #334155;
  font-weight: 800;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  padding: 12px 14px;
  outline: 0;
  background: #ffffff;
}

.filter-tags {
  margin: 0 0 24px;
}

.filter-tags button.is-active {
  color: #ffffff;
  background: #2563eb;
}

.search-status {
  margin-bottom: 22px;
  color: #475569;
  font-size: 18px;
  font-weight: 800;
}

.top-rank-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.top-rank-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  padding: 24px;
  border-radius: 28px;
  color: #ffffff;
  background: #0f172a;
  box-shadow: var(--shadow-soft);
}

.top-rank-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
  transition: transform 0.4s ease;
}

.top-rank-card:hover img {
  transform: scale(1.06);
}

.top-rank-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.92), transparent 55%);
}

.top-rank-card strong,
.top-rank-card em,
.top-rank-card .rank-no {
  position: relative;
  z-index: 2;
}

.top-rank-card strong {
  margin-top: 120px;
  font-size: 24px;
  line-height: 1.25;
}

.top-rank-card em {
  margin-top: 10px;
  color: #dbeafe;
  font-style: normal;
  line-height: 1.55;
}

.rank-no.big {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  font-size: 20px;
}

.detail-hero {
  min-height: 560px;
}

.detail-backdrop {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0.2;
  filter: blur(2px) saturate(1.15);
}

.detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 28%, rgba(37, 99, 235, 0.5), transparent 35%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.97), rgba(30, 58, 138, 0.88), rgba(8, 145, 178, 0.78));
}

.detail-wrap {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  min-height: 560px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  align-items: center;
  gap: 44px;
  padding: 64px 0 90px;
}

.detail-cover {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: var(--shadow-strong);
}

.detail-cover img {
  width: 100%;
  aspect-ratio: 3 / 4.2;
  object-fit: cover;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  color: #bfdbfe;
  font-size: 14px;
}

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

.detail-one-line {
  max-width: 780px;
  color: #dbeafe;
  font-size: 19px;
  line-height: 1.75;
}

.detail-chips {
  margin: 24px 0 30px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #020617;
  box-shadow: var(--shadow-strong);
  aspect-ratio: 16 / 9;
}

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

.player-cover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  border: 0;
  color: #ffffff;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.18), rgba(2, 6, 23, 0.46));
  cursor: pointer;
}

.player-cover span {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  box-shadow: 0 18px 45px rgba(37, 99, 235, 0.45);
  font-size: 34px;
}

.player-cover strong {
  font-size: 20px;
}

.player-shell.is-playing .player-cover {
  display: none;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 26px;
  margin-top: 28px;
}

.detail-article,
.detail-side,
.prose-section {
  padding: 28px;
}

.detail-article h2,
.detail-side h2,
.prose-section h2 {
  margin: 0 0 14px;
  color: #0f172a;
  font-size: 25px;
}

.detail-article p,
.prose-section p {
  margin: 0 0 24px;
  color: #334155;
  font-size: 17px;
  line-height: 1.9;
}

.detail-side dl {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 12px;
  margin: 0;
}

.detail-side dt {
  color: #64748b;
  font-weight: 800;
}

.detail-side dd {
  margin: 0;
  color: #0f172a;
  line-height: 1.6;
}

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

.site-footer {
  margin-top: 50px;
  color: #cbd5e1;
  background: linear-gradient(180deg, #0f172a, #020617);
}

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

.site-footer h3 {
  margin: 0 0 16px;
  color: #ffffff;
}

.site-footer p {
  color: #94a3b8;
  line-height: 1.75;
}

.site-footer a:not(.footer-brand) {
  display: block;
  margin: 9px 0;
  color: #cbd5e1;
}

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

.footer-tags a {
  display: inline-flex !important;
  margin: 0;
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 1024px) {
  .header-search {
    display: none;
  }

  .hero-slide,
  .detail-wrap,
  .two-column,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .hero-slide {
    gap: 22px;
    padding: 70px 0 100px;
  }

  .hero-poster {
    max-width: 260px;
  }

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

  .rank-list.wide,
  .top-rank-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .brand {
    font-size: 20px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
  }

  .main-nav.is-open {
    display: flex;
  }

  .nav-dropdown {
    padding: 0;
  }

  .dropdown-panel {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 10px;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .hero {
    min-height: 760px;
  }

  .hero-slide {
    align-content: center;
  }

  .hero h1,
  .page-hero h1,
  .detail-info h1 {
    font-size: 38px;
  }

  .hero-desc,
  .detail-one-line,
  .page-hero p:not(.eyebrow) {
    font-size: 16px;
  }

  .section {
    padding: 44px 0;
  }

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

  .movie-grid,
  .category-grid,
  .category-overview-grid,
  .rank-list.wide,
  .top-rank-grid,
  .footer-grid,
  .filter-panel,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .horizontal-row {
    grid-auto-columns: 82%;
  }

  .detail-wrap {
    padding-top: 40px;
  }

  .detail-cover {
    width: min(250px, 80vw);
  }

  .page-search {
    border-radius: 24px;
    flex-direction: column;
  }

  .page-search button {
    min-height: 46px;
  }
}
