:root {
  --bg: #f9fafb;
  --surface: #ffffff;
  --ink: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --teal: #14b8a6;
  --teal-dark: #0f766e;
  --cyan: #0891b2;
  --soft-teal: #ecfdf5;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
  --shadow-soft: 0 10px 25px rgba(15, 23, 42, 0.08);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

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

.container.narrow {
  width: min(860px, calc(100% - 32px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(20, 184, 166, 0.28);
  transition: transform 0.25s ease;
}

.brand:hover .brand-icon,
.footer-brand:hover .brand-icon {
  transform: scale(1.08);
}

.brand-text,
.footer-brand span:last-child {
  display: grid;
  line-height: 1.15;
}

.brand-text strong,
.footer-brand strong {
  font-size: 20px;
  font-weight: 800;
}

.brand-text small,
.footer-brand small {
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
}

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

.nav-link,
.mobile-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  color: #374151;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--teal-dark);
  background: #f0fdfa;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #374151;
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: #ffffff;
  padding: 10px 16px 16px;
}

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

.hero {
  position: relative;
  height: min(720px, 70vh);
  min-height: 520px;
  overflow: hidden;
  background: #000000;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
}

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: radial-gradient(circle at 25% 20%, rgba(20, 184, 166, 0.45), transparent 34%), linear-gradient(135deg, #020617, #0f766e 55%, #0891b2);
}

.hero-image.is-missing,
.cover-img.is-missing,
.featured-card img.is-missing,
.top-rank-card img.is-missing,
.poster-card img.is-missing {
  opacity: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.1));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  color: #ffffff;
}

.hero-content h1 {
  max-width: 760px;
  margin: 18px 0 18px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.hero-content p {
  max-width: 680px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-pill,
.pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.hero-pill,
.pill.solid {
  color: #ffffff;
  background: var(--teal);
}

.pill.light {
  color: var(--teal-dark);
  background: #ccfbf1;
}

.hero-tags,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-tags {
  margin-bottom: 28px;
}

.hero-tags span {
  padding: 6px 12px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  color: #0f172a;
  background: #ffffff;
}

.btn.primary:hover {
  color: #ffffff;
  background: var(--teal);
}

.btn.glass {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(12px);
  transition: background 0.2s ease;
}

.hero-control:hover {
  background: rgba(255, 255, 255, 0.28);
}

.hero-control.prev {
  left: 24px;
}

.hero-control.next {
  right: 24px;
}

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

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

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

.featured-lift {
  position: relative;
  z-index: 10;
  margin-top: -76px;
}

.featured-card,
.top-rank-card {
  position: relative;
  display: block;
  min-height: 320px;
  overflow: hidden;
  background: radial-gradient(circle at 10% 20%, rgba(20, 184, 166, 0.32), transparent 35%), #020617;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.featured-card img,
.top-rank-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.featured-card:hover img,
.top-rank-card:hover img {
  transform: scale(1.05);
}

.featured-shade,
.top-rank-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.32), transparent);
}

.featured-copy,
.top-rank-copy {
  position: absolute;
  left: clamp(24px, 5vw, 56px);
  bottom: clamp(22px, 5vw, 48px);
  z-index: 2;
  display: grid;
  max-width: 680px;
  gap: 12px;
  color: #ffffff;
}

.featured-copy strong,
.top-rank-copy strong {
  font-size: clamp(28px, 5vw, 46px);
  line-height: 1.1;
}

.featured-copy em,
.top-rank-copy em {
  color: rgba(255, 255, 255, 0.88);
  font-style: normal;
  font-size: 18px;
}

.featured-copy span:last-child,
.top-rank-copy span:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.featured-play {
  position: absolute;
  right: clamp(24px, 6vw, 80px);
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  color: #0f172a;
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.28);
  transform: translateY(-50%);
}

.section {
  padding: 58px 0;
}

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

.section-heading.compact {
  margin-bottom: 22px;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading h2,
.center-title h2,
.page-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.section-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  color: var(--teal-dark);
  background: #f0fdfa;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.intro-search {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 34px;
  align-items: center;
}

.intro-search h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.intro-search p,
.center-title p,
.page-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.quick-search,
.search-box {
  display: flex;
  gap: 10px;
  padding: 10px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.quick-search input,
.search-box input {
  flex: 1;
  min-width: 0;
  padding: 12px 14px;
  color: var(--ink);
  background: #f9fafb;
  border: 1px solid transparent;
  border-radius: 12px;
  outline: none;
}

.quick-search input:focus,
.search-box input:focus {
  border-color: var(--teal);
  background: #ffffff;
}

.quick-search button {
  padding: 0 18px;
  color: #ffffff;
  background: var(--teal);
  border: 0;
  border-radius: 12px;
  font-weight: 800;
  cursor: pointer;
}

.category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.category-strip a,
.filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  color: #374151;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.category-strip a:hover,
.filter-chip:hover,
.filter-chip.active {
  color: #ffffff;
  background: var(--teal);
  transform: translateY(-1px);
}

.category-strip.compact {
  margin-bottom: 30px;
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

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

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

.movie-card .card-link {
  display: block;
  height: 100%;
  overflow: hidden;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card .card-link:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.cover-frame {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: radial-gradient(circle at 20% 20%, rgba(20, 184, 166, 0.38), transparent 34%), linear-gradient(135deg, #111827, #0f766e);
}

.cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, opacity 0.2s ease;
}

.movie-card:hover .cover-img {
  transform: scale(1.1);
}

.cover-shade {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(0, 0, 0, 0.42);
  transition: opacity 0.25s ease;
}

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

.play-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: #111827;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.75);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.play-mark.big {
  width: 64px;
  height: 64px;
  font-size: 22px;
}

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

.type-badge,
.score-badge,
.rank-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  padding: 5px 9px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.72);
  border-radius: 9px;
  font-size: 12px;
  font-weight: 800;
}

.type-badge {
  right: 12px;
  top: 12px;
}

.score-badge {
  left: 12px;
  top: 12px;
  background: var(--teal);
}

.rank-badge {
  left: 12px;
  top: 12px;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.card-body,
.large-body,
.horizontal-body {
  display: grid;
  gap: 9px;
  padding: 16px;
}

.card-title {
  display: -webkit-box;
  overflow: hidden;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.2s ease;
}

.movie-card:hover .card-title {
  color: var(--teal-dark);
}

.card-desc {
  display: -webkit-box;
  min-height: 42px;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: #6b7280;
  font-size: 13px;
}

.card-meta.split {
  justify-content: space-between;
}

.movie-card-large .card-title {
  font-size: 20px;
}

.movie-card-large .large-cover {
  aspect-ratio: 16 / 9;
}

.movie-card-horizontal .card-link {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 130px;
}

.horizontal-cover {
  height: 100%;
  aspect-ratio: auto;
}

.horizontal-list {
  display: grid;
  gap: 16px;
}

.white-band {
  background: #ffffff;
}

.recommend-band {
  background: linear-gradient(180deg, #f9fafb, #ffffff);
}

.center-title {
  max-width: 720px;
  margin: 0 auto 32px;
  text-align: center;
}

.page-hero {
  padding: 86px 0 70px;
  text-align: center;
}

.page-hero.soft {
  background: radial-gradient(circle at 50% 0%, rgba(20, 184, 166, 0.16), transparent 36%), #ffffff;
}

.page-hero.dark {
  color: #ffffff;
  background: radial-gradient(circle at 50% 0%, rgba(20, 184, 166, 0.35), transparent 38%), linear-gradient(135deg, #020617, #111827);
}

.page-hero.dark h1,
.page-hero.dark p {
  color: #ffffff;
}

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

.breadcrumb a {
  color: var(--teal-dark);
  font-weight: 800;
}

.breadcrumb.dark {
  justify-content: flex-start;
  color: rgba(255, 255, 255, 0.72);
}

.breadcrumb.dark a {
  color: #99f6e4;
}

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

.category-panel {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.category-panel-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.category-icon {
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  border-radius: 999px;
}

.category-panel-head strong {
  display: block;
  font-size: 22px;
  font-weight: 900;
}

.category-panel-head em {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-style: normal;
}

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

.top-rank-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 22px;
}

.top-rank-card:first-child {
  min-height: 420px;
}

.top-rank-num {
  position: absolute;
  right: 24px;
  top: 24px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: #ffffff;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  border-radius: 999px;
  font-size: 24px;
  font-weight: 900;
}

.search-toolbar {
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.search-box {
  align-items: center;
  box-shadow: none;
}

.search-box span {
  flex: 0 0 auto;
  color: var(--ink);
  font-weight: 900;
}

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

.filter-chip {
  cursor: pointer;
}

.search-empty {
  display: none;
  margin: 32px 0;
  padding: 22px;
  color: var(--muted);
  background: #ffffff;
  border: 1px dashed var(--line);
  border-radius: 18px;
  text-align: center;
}

.search-empty.visible {
  display: block;
}

.player-band {
  padding: 28px 0;
  background: #020617;
}

.player-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000000;
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.movie-player {
  width: 100%;
  height: 100%;
  background: #000000;
  object-fit: cover;
}

.player-action {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  color: #111827;
  background: rgba(255, 255, 255, 0.92);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.player-action.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.86);
}

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

.detail-main,
.detail-side {
  display: grid;
  gap: 22px;
}

.detail-card,
.side-box,
.poster-card {
  background: #ffffff;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.detail-card {
  padding: clamp(22px, 4vw, 36px);
}

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

.detail-card h2,
.side-box h2 {
  margin: 28px 0 12px;
  font-size: 24px;
  line-height: 1.25;
}

.detail-card p {
  margin: 0 0 18px;
  color: #374151;
  font-size: 17px;
}

.detail-card .lead {
  color: var(--teal-dark);
  font-size: 20px;
  font-weight: 800;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.tag-cloud span {
  display: inline-flex;
  padding: 7px 12px;
  color: #374151;
  background: #f3f4f6;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.poster-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 220px;
  background: linear-gradient(135deg, #111827, #0f766e);
}

.poster-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.poster-card span {
  display: block;
  padding: 16px;
  font-weight: 900;
}

.side-box {
  padding: 22px;
}

.side-box h2 {
  margin-top: 0;
}

.side-box dl {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 10px 12px;
  margin: 0;
}

.side-box dt {
  color: var(--muted);
}

.side-box dd {
  margin: 0;
  font-weight: 800;
}

.side-box a {
  color: var(--teal-dark);
}

.site-footer {
  margin-top: 70px;
  padding: 48px 0 0;
  background: linear-gradient(180deg, #f9fafb, #f3f4f6);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 1fr;
  gap: 34px;
}

.footer-grid p {
  max-width: 420px;
  color: var(--muted);
}

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

.footer-links {
  display: grid;
  gap: 8px;
}

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

.footer-links a {
  color: var(--muted);
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--teal-dark);
}

.footer-bottom {
  margin-top: 34px;
  padding: 18px 16px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 14px;
}

@media (max-width: 1100px) {
  .cards-grid.four,
  .cards-grid.six,
  .mini-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

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

  .menu-toggle {
    display: block;
  }

  .hero {
    height: 68vh;
    min-height: 500px;
  }

  .hero-content h1 {
    font-size: clamp(34px, 12vw, 54px);
  }

  .hero-control {
    display: none;
  }

  .featured-play {
    display: none;
  }

  .section-heading,
  .intro-search {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cards-grid.three,
  .cards-grid.four,
  .cards-grid.six,
  .mini-grid,
  .top-rank-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .top-rank-card:first-child {
    min-height: 320px;
  }
}

@media (max-width: 620px) {
  .container,
  .container.narrow {
    width: min(100% - 24px, 1180px);
  }

  .brand-text small {
    display: none;
  }

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

  .hero {
    min-height: 520px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.9));
  }

  .featured-card,
  .top-rank-card,
  .featured-card img,
  .top-rank-card img {
    min-height: 280px;
  }

  .section {
    padding: 42px 0;
  }

  .cards-grid.three,
  .cards-grid.four,
  .cards-grid.six,
  .mini-grid,
  .top-rank-grid,
  .footer-grid,
  .detail-side {
    grid-template-columns: 1fr;
  }

  .movie-card-horizontal .card-link {
    grid-template-columns: 132px 1fr;
  }

  .horizontal-body {
    padding: 12px;
  }

  .card-desc {
    min-height: auto;
  }

  .quick-search {
    display: grid;
  }

  .search-box {
    display: grid;
  }

  .footer-links.two-col {
    grid-template-columns: 1fr;
  }
}
