* {
  box-sizing: border-box;
}

:root {
  --purple-950: #3b0764;
  --purple-900: #581c87;
  --purple-800: #6b21a8;
  --purple-700: #7e22ce;
  --purple-600: #9333ea;
  --purple-500: #a855f7;
  --purple-100: #f3e8ff;
  --pink-500: #ec4899;
  --pink-100: #fce7f3;
  --text: #1f2937;
  --muted: #6b7280;
  --line: #e5e7eb;
  --bg: #faf5ff;
  --card: #ffffff;
  --shadow: 0 22px 60px rgba(88, 28, 135, 0.16);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(180deg, #faf5ff 0%, #ffffff 42%, #fff7fb 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

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

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

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, var(--purple-700), var(--purple-500), var(--purple-700));
  color: #fff;
  box-shadow: 0 16px 35px rgba(88, 28, 135, 0.28);
}

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

.brand,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.25s ease;
}

.brand:hover .brand-mark {
  transform: scale(1.08);
}

.brand-mark span {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple-400, #c084fc), var(--purple-700));
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.4);
}

.brand-mark.small {
  width: 34px;
  height: 34px;
}

.brand-mark.small span {
  width: 24px;
  height: 24px;
}

.brand-name {
  font-size: 20px;
  white-space: nowrap;
}

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

.nav-link,
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  opacity: 0.94;
}

.nav-link:hover,
.nav-link.active,
.dropdown-toggle:hover {
  color: #f5d0fe;
}

.nav-dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 180px;
  padding: 8px;
  border-radius: 16px;
  background: #fff;
  color: #374151;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: all 0.2s ease;
}

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

.dropdown-panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
}

.dropdown-panel a:hover {
  background: var(--purple-100);
  color: var(--purple-700);
}

.header-search {
  display: flex;
  align-items: center;
  width: 286px;
  margin-left: 4px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  padding: 4px;
}

.header-search input,
.mobile-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 8px 12px;
  color: #111827;
}

.header-search button,
.mobile-search button {
  border: 0;
  border-radius: 999px;
  background: var(--purple-700);
  color: #fff;
  padding: 8px 14px;
  cursor: pointer;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.16);
  padding: 10px;
  cursor: pointer;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.mobile-panel {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 18px;
}

.mobile-panel.open {
  display: block;
}

.mobile-search {
  display: flex;
  margin: 8px 0 12px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
}

.mobile-link,
.mobile-category-links a {
  display: block;
  color: #fff;
  padding: 10px 0;
}

.mobile-category-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  margin-top: 8px;
  padding-top: 10px;
}

.hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: linear-gradient(120deg, var(--purple-900), var(--purple-600), var(--pink-500));
}

.hero-slider,
.hero-slide,
.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.65s ease;
}

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

.hero-bg {
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 74% 34%, rgba(255, 255, 255, 0.22), transparent 34%), linear-gradient(180deg, rgba(59, 7, 100, 0), rgba(59, 7, 100, 0.46));
}

.glow {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  filter: blur(40px);
}

.glow-a {
  width: 230px;
  height: 230px;
  left: 6%;
  top: 22%;
}

.glow-b {
  width: 310px;
  height: 310px;
  right: 8%;
  bottom: 8%;
}

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

.eyebrow,
.sub-hero span,
.section-title span,
.rank-hero-card span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  color: #fce7f3;
  padding: 7px 14px;
  font-size: 12px;
  letter-spacing: 0.16em;
  font-weight: 800;
}

.hero h1 {
  margin: 20px 0 12px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  max-width: 820px;
}

.hero h2 {
  margin: 0 0 18px;
  font-size: clamp(24px, 3vw, 40px);
}

.hero p {
  margin: 0;
  max-width: 720px;
  color: #f3e8ff;
  font-size: 19px;
  line-height: 1.9;
}

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

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

.hero-tags span,
.detail-meta span,
.badge-row span,
.tag-cloud span {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  padding: 7px 12px;
  font-size: 13px;
}

.primary-button,
.ghost-button,
.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  transition: all 0.2s ease;
}

.primary-button {
  min-height: 48px;
  padding: 0 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--purple-600), var(--pink-500));
  box-shadow: 0 14px 30px rgba(147, 51, 234, 0.32);
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(147, 51, 234, 0.42);
}

.ghost-button {
  min-height: 48px;
  padding: 0 22px;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

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

.text-button {
  color: var(--purple-700);
  font-weight: 800;
}

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

.hero-poster {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 470px;
  box-shadow: 0 36px 75px rgba(30, 0, 70, 0.38);
  transform: rotate(2deg);
}

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

.hero-poster span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 74px;
  height: 74px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(147, 51, 234, 0.86);
  color: #fff;
  font-size: 30px;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.26);
}

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

.hero-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.hero-dot.active {
  width: 32px;
  background: #fff;
}

.hero-category-strip {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 32px));
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.hero-category-strip a {
  flex: 0 0 auto;
  padding: 10px 16px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.hero-recommend {
  position: relative;
  z-index: 5;
  margin-top: -38px;
}

.section-block {
  padding: 60px 0;
}

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

.section-title h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
  color: #1f2937;
}

.section-title span,
.sub-hero span,
.rank-hero-card span {
  background: var(--purple-100);
  color: var(--purple-700);
}

.section-title a {
  margin-left: auto;
  color: var(--purple-700);
  font-weight: 800;
}

.section-title.compact h2 {
  font-size: 24px;
}

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

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

.movie-card {
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(88, 28, 135, 0.12);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, #ede9fe, #fce7f3);
}

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

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.72));
  opacity: 0;
  transition: opacity 0.25s ease;
}

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

.play-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--purple-600);
  color: #fff;
  font-size: 24px;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.25s ease;
}

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

.corner-badge {
  position: absolute;
  left: 10px;
  top: 10px;
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(147, 51, 234, 0.9);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.card-body {
  padding: 16px;
}

.card-body h3 {
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.35;
  min-height: 46px;
}

.card-body h3 a:hover {
  color: var(--purple-700);
}

.meta-line {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.card-body p {
  margin: 12px 0;
  min-height: 64px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.badge-row span {
  background: var(--purple-100);
  color: var(--purple-700);
  font-size: 12px;
  padding: 6px 9px;
}

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

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

.category-tile {
  display: block;
  min-height: 145px;
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(135deg, #fff, #faf5ff);
  box-shadow: 0 12px 34px rgba(88, 28, 135, 0.1);
  transition: transform 0.2s ease;
}

.category-tile:hover {
  transform: translateY(-4px);
}

.category-tile span {
  display: block;
  font-size: 22px;
  font-weight: 900;
  color: var(--purple-800);
}

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

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

.ranking-card ol,
.ranking-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ranking-card li a {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.ranking-card li:last-child a {
  border-bottom: 0;
}

.ranking-card span,
.rank-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple-600), var(--pink-500));
  color: #fff;
  font-weight: 900;
}

.ranking-card strong {
  display: block;
}

.ranking-card em {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
}

.sub-hero {
  padding: 86px 0;
  color: #fff;
  background: radial-gradient(circle at 80% 30%, rgba(236, 72, 153, 0.44), transparent 32%), linear-gradient(120deg, var(--purple-900), var(--purple-600));
}

.sub-hero h1 {
  margin: 18px 0 12px;
  font-size: clamp(34px, 5vw, 58px);
}

.sub-hero p {
  max-width: 760px;
  margin: 0;
  color: #f3e8ff;
  font-size: 18px;
  line-height: 1.85;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.82);
}

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

.filter-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  margin-bottom: 28px;
  padding: 18px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(88, 28, 135, 0.1);
}

.filter-search input,
.filter-selects select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: 0;
  padding: 0 14px;
  background: #fff;
}

.filter-search input:focus,
.filter-selects select:focus {
  border-color: var(--purple-500);
  box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.16);
}

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

.filter-selects label {
  display: grid;
  gap: 6px;
  min-width: 140px;
  color: var(--muted);
  font-size: 13px;
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 185px 1fr;
  gap: 22px;
  padding: 22px;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(88, 28, 135, 0.1);
}

.category-overview-card h2 {
  margin: 0 0 10px;
  color: var(--purple-800);
}

.category-overview-card p {
  color: var(--muted);
  line-height: 1.7;
}

.category-poster-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.category-poster-stack img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 14px;
  background: linear-gradient(135deg, #ede9fe, #fce7f3);
}

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

.rank-hero-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 18px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(88, 28, 135, 0.1);
}

.rank-hero-card img {
  width: 120px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 16px;
  background: linear-gradient(135deg, #ede9fe, #fce7f3);
}

.rank-hero-card h2 {
  margin: 12px 0;
  font-size: 22px;
}

.rank-hero-card p {
  color: var(--muted);
  line-height: 1.65;
}

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

.ranking-list li a {
  display: grid;
  grid-template-columns: 54px 62px 1fr;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(88, 28, 135, 0.08);
}

.ranking-list img {
  width: 62px;
  height: 82px;
  border-radius: 12px;
  object-fit: cover;
  background: linear-gradient(135deg, #ede9fe, #fce7f3);
}

.ranking-list strong,
.ranking-list em {
  grid-column: 3;
}

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

.detail-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
}

.detail-backdrop {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.detail-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(59, 7, 100, 0.24), rgba(59, 7, 100, 0.72));
}

.detail-head {
  position: relative;
  min-height: 520px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 42px;
  align-items: center;
  padding: 62px 0;
}

.detail-poster {
  display: block;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(20, 0, 40, 0.42);
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: linear-gradient(135deg, #ede9fe, #fce7f3);
}

.detail-info h1 {
  margin: 24px 0 14px;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.05;
}

.detail-info .lead {
  max-width: 780px;
  color: #f3e8ff;
  line-height: 1.85;
  font-size: 19px;
}

.detail-meta {
  margin: 22px 0;
}

.tag-cloud {
  margin-bottom: 28px;
}

.tag-cloud span {
  background: rgba(255, 255, 255, 0.16);
}

.player-section {
  margin-top: -52px;
  position: relative;
  z-index: 4;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #111827;
  box-shadow: 0 26px 70px rgba(30, 0, 60, 0.28);
}

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

.player-cover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.2), rgba(17, 24, 39, 0.54));
  cursor: pointer;
}

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

.player-cover span {
  width: 86px;
  height: 86px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--purple-600), var(--pink-500));
  font-size: 36px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 32px;
  padding: 54px 0 18px;
}

.detail-main,
.detail-side {
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(88, 28, 135, 0.1);
}

.detail-main {
  padding: 32px;
}

.detail-main h2,
.detail-side h2 {
  margin: 0 0 16px;
  color: var(--purple-900);
}

.detail-main p {
  color: #4b5563;
  line-height: 2;
  font-size: 17px;
}

.detail-side {
  align-self: start;
  padding: 26px;
}

.detail-side dl {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 14px;
  margin: 0;
}

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

.detail-side dd {
  margin: 0;
  font-weight: 700;
}

.detail-side a {
  color: var(--purple-700);
}

.site-footer {
  margin-top: 30px;
  color: #fff;
  background: linear-gradient(180deg, var(--purple-900), var(--purple-950));
}

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

.footer-inner h3 {
  margin: 0 0 16px;
}

.footer-inner ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-inner li {
  margin-bottom: 10px;
}

.footer-inner a,
.footer-inner p {
  color: #e9d5ff;
}

.footer-brand p,
.footer-tags {
  line-height: 1.75;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px;
  color: #e9d5ff;
  text-align: center;
}

[data-card].hidden {
  display: none !important;
}

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

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

  .hero-content {
    grid-template-columns: 1fr;
    padding: 72px 0 150px;
  }

  .hero-poster {
    display: none;
  }

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

  .split-layout,
  .detail-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .container,
  .header-inner,
  .mobile-panel,
  .footer-inner {
    width: min(100% - 24px, 1180px);
  }

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

  .hero {
    min-height: 620px;
  }

  .hero-content {
    min-height: 560px;
    padding-bottom: 150px;
  }

  .hero p,
  .sub-hero p,
  .detail-info .lead {
    font-size: 16px;
  }

  .hero-category-strip {
    border-radius: 24px;
  }

  .section-block {
    padding: 42px 0;
  }

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

  .section-title a {
    margin-left: 0;
  }

  .movie-grid,
  .mini-grid,
  .category-grid,
  .category-overview-grid,
  .rank-hero-grid,
  .ranking-list {
    grid-template-columns: 1fr;
  }

  .category-overview-card,
  .rank-hero-card {
    grid-template-columns: 1fr;
  }

  .category-poster-stack {
    grid-template-columns: repeat(4, 1fr);
  }

  .filter-panel {
    grid-template-columns: 1fr;
  }

  .filter-selects {
    flex-direction: column;
  }

  .ranking-list li a {
    grid-template-columns: 48px 58px 1fr;
  }

  .detail-head {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .detail-poster {
    width: 210px;
  }

  .player-section {
    margin-top: -28px;
  }

  .detail-main {
    padding: 24px;
  }
}
