* {
  box-sizing: border-box;
}

:root {
  --rose-50: #fff1f2;
  --rose-100: #ffe4e6;
  --rose-500: #f43f5e;
  --rose-600: #e11d48;
  --rose-700: #be123c;
  --pink-500: #ec4899;
  --red-600: #dc2626;
  --slate-950: #020617;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-900: #111827;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.10);
  --shadow-card: 0 10px 28px rgba(15, 23, 42, 0.10);
  --radius-xl: 22px;
  --radius-lg: 16px;
  color-scheme: light;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--gray-50);
  color: var(--gray-900);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.96), rgba(244, 63, 94, 0.96), rgba(236, 72, 153, 0.96));
  color: white;
  box-shadow: 0 10px 30px rgba(190, 18, 60, 0.24);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark,
.footer-logo span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 20px;
  letter-spacing: 0.02em;
}

.brand-copy small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 15px;
  white-space: nowrap;
}

.main-nav a,
.mobile-nav a {
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.main-nav a:hover,
.mobile-nav a:hover {
  color: white;
  transform: translateY(-1px);
}

.nav-hot {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.nav-toggle {
  display: none;
  color: white;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 8px 14px;
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.mobile-nav a {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  color: white;
  background: linear-gradient(135deg, var(--red-600), var(--rose-500) 54%, var(--pink-500));
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.26), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.04));
}

.hero-shell {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0 128px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
  gap: 44px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: currentColor;
  opacity: 0.78;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-main h1 {
  margin: 0;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.hero-lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2.4vw, 25px);
}

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

.primary-button,
.secondary-button,
.ghost-button,
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
  color: var(--rose-700);
  background: white;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.secondary-button,
.ghost-button {
  color: white;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(12px);
}

.outline-button {
  color: var(--rose-700);
  background: var(--rose-50);
  border: 1px solid var(--rose-100);
}

.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover,
.outline-button:hover {
  transform: translateY(-2px);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-pills span {
  padding: 10px 16px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
}

.hero-carousel {
  position: relative;
  min-height: 460px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 188px;
  gap: 20px;
  align-items: stretch;
  padding: 22px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.17);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 30px 80px rgba(73, 11, 30, 0.34);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateX(18px) scale(0.98);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

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

.hero-slide-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-slide-copy h2 {
  margin: 0 0 12px;
  font-size: 32px;
  line-height: 1.2;
}

.hero-slide-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.84);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.hero-tags span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.hero-poster {
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.26);
}

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

.hero-controls {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.hero-controls button {
  width: 42px;
  height: 42px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.20);
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 84px;
}

.search-section,
.section-shell,
.page-main > .breadcrumb {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.search-section {
  margin-top: -54px;
  position: relative;
  z-index: 5;
}

.search-card {
  border-radius: var(--radius-xl);
  background: white;
  box-shadow: var(--shadow-soft);
  padding: 22px;
}

.site-search-input,
.filter-input,
.filter-panel select {
  width: 100%;
  border: 2px solid var(--gray-200);
  border-radius: 16px;
  padding: 15px 16px;
  background: white;
  color: var(--gray-900);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-search-input:focus,
.filter-input:focus,
.filter-panel select:focus {
  border-color: var(--rose-500);
  box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.12);
}

.site-search-results {
  display: grid;
  gap: 10px;
  max-height: 440px;
  overflow: auto;
  margin-top: 16px;
}

.search-result-row {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  background: var(--gray-50);
}

.search-result-row img {
  width: 54px;
  height: 74px;
  border-radius: 10px;
  object-fit: cover;
}

.search-result-row strong,
.search-result-row small {
  display: block;
}

.search-result-row small {
  color: var(--gray-500);
}

.section-shell {
  padding: 56px 0;
}

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

.section-title-row.tight {
  margin-bottom: 18px;
}

.section-title-row h2,
.hot-panel h2,
.category-side h2,
.story-card h2 {
  margin: 0;
  color: var(--gray-900);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.18;
}

.section-title-row p {
  margin: 8px 0 0;
  color: var(--gray-600);
}

.section-title-row > a,
.text-link,
.card-meta a,
.hot-panel-head a {
  color: var(--rose-600);
  font-weight: 800;
}

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

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

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

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

.movie-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: white;
  box-shadow: var(--shadow-card);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.16);
}

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--gray-100);
}

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

.movie-card:hover .poster-link img,
.category-tile:hover img,
.ranking-card:hover img {
  transform: scale(1.08);
}

.year-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  color: white;
  background: var(--rose-500);
  font-size: 12px;
  font-weight: 800;
}

.card-content {
  padding: 18px;
}

.card-badges,
.detail-badges,
.ranking-meta,
.page-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.card-badges span,
.detail-badges span,
.detail-badges a,
.ranking-meta span,
.page-stats span {
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--rose-50);
  color: var(--rose-700);
  font-size: 12px;
  font-weight: 800;
}

.card-content h3 {
  margin: 12px 0 8px;
  font-size: 18px;
  line-height: 1.32;
}

.card-content h3 a:hover {
  color: var(--rose-600);
}

.card-content p {
  display: -webkit-box;
  min-height: 44px;
  margin: 0 0 14px;
  overflow: hidden;
  color: var(--gray-600);
  font-size: 14px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--gray-500);
  font-size: 13px;
}

.movie-card-list {
  display: grid;
  grid-template-columns: 138px 1fr;
}

.movie-card-list .poster-link {
  aspect-ratio: auto;
  min-height: 100%;
}

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

.category-tile {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  color: white;
  background: var(--slate-950);
  box-shadow: var(--shadow-card);
}

.category-tile:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.12), rgba(2, 6, 23, 0.88));
}

.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.category-tile span,
.category-tile strong,
.category-tile em {
  position: relative;
  z-index: 2;
}

.category-tile span {
  font-size: 20px;
  font-weight: 900;
}

.category-tile strong {
  margin-top: 6px;
}

.category-tile em {
  display: -webkit-box;
  margin-top: 8px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-style: normal;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
}

.hot-panel,
.category-side,
.story-card,
.category-overview-card {
  border-radius: var(--radius-xl);
  background: white;
  box-shadow: var(--shadow-card);
}

.hot-panel {
  padding: 22px;
  align-self: start;
  position: sticky;
  top: 96px;
}

.hot-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.hot-panel h2 {
  font-size: 24px;
}

.compact-movie {
  display: grid;
  grid-template-columns: auto 54px 1fr;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 15px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.compact-movie:hover {
  background: var(--gray-50);
  transform: translateX(3px);
}

.compact-movie img {
  width: 54px;
  height: 72px;
  border-radius: 10px;
  object-fit: cover;
}

.compact-movie strong,
.compact-movie small {
  display: block;
}

.compact-movie strong {
  line-height: 1.35;
}

.compact-movie small {
  color: var(--gray-500);
  font-size: 12px;
}

.rank-num {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: white;
  background: var(--rose-500);
  font-size: 12px;
  font-weight: 900;
}

.page-main {
  min-height: 68vh;
}

.page-hero {
  color: white;
  background: linear-gradient(135deg, var(--red-600), var(--rose-500), var(--pink-500));
}

.page-hero.compact {
  padding: 64px 0;
}

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

.page-hero h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.08;
}

.page-hero p:not(.eyebrow) {
  max-width: 740px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.page-stats {
  margin-top: 22px;
}

.page-stats span {
  background: rgba(255, 255, 255, 0.16);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

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

.category-side {
  position: sticky;
  top: 96px;
  padding: 20px;
}

.category-side h2 {
  font-size: 22px;
  margin-bottom: 14px;
}

.category-side nav {
  display: grid;
  gap: 8px;
}

.side-link {
  display: block;
  padding: 11px 12px;
  border-radius: 12px;
  color: var(--gray-700);
  background: var(--gray-50);
}

.side-link:hover,
.side-link.is-current {
  color: var(--rose-700);
  background: var(--rose-50);
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 180px 180px auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
  padding: 18px;
  border-radius: var(--radius-xl);
  background: white;
  box-shadow: var(--shadow-card);
}

.filter-count {
  color: var(--gray-600);
  white-space: nowrap;
}

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

.category-overview-card {
  padding: 24px;
}

.category-overview-head span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 11px;
  border-radius: 999px;
  color: var(--rose-700);
  background: var(--rose-50);
  font-weight: 800;
}

.category-overview-head h2 {
  margin: 0 0 8px;
  font-size: 28px;
}

.category-overview-head p {
  margin: 0;
  color: var(--gray-600);
}

.category-overview-list {
  display: grid;
  gap: 6px;
  margin: 18px 0;
}

.ranking-layout {
  display: grid;
  gap: 18px;
}

.ranking-card {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 22px;
  padding: 18px;
  border-radius: var(--radius-xl);
  background: white;
  box-shadow: var(--shadow-card);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.ranking-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.16);
}

.ranking-poster {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 3 / 4;
}

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

.ranking-poster span {
  position: absolute;
  left: 10px;
  top: 10px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: white;
  background: var(--rose-500);
  font-weight: 900;
}

.ranking-copy h2 {
  margin: 12px 0 8px;
  font-size: 26px;
}

.ranking-copy p {
  margin: 0 0 16px;
  color: var(--gray-600);
}

.score-bar {
  width: 100%;
  height: 8px;
  overflow: hidden;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--gray-100);
}

.score-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--rose-500), var(--pink-500));
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 24px 0;
  color: var(--gray-600);
}

.breadcrumb a {
  color: var(--rose-600);
  font-weight: 800;
}

.detail-card {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 42px;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.84fr);
  overflow: hidden;
  border-radius: 28px;
  background: white;
  box-shadow: var(--shadow-soft);
}

.player-shell {
  position: relative;
  min-height: 430px;
  background: #000;
}

.movie-video {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: contain;
  background: #000;
}

.player-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  color: white;
  border: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.15), rgba(2, 6, 23, 0.78));
  cursor: pointer;
}

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

.play-icon {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--rose-600);
  box-shadow: 0 20px 40px rgba(244, 63, 94, 0.34);
  font-size: 36px;
  text-indent: 4px;
}

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

.detail-info {
  padding: 34px;
}

.detail-info h1 {
  margin: 18px 0 12px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.14;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--gray-600);
}

.detail-meta span + span:before {
  content: "·";
  margin-right: 10px;
  color: var(--gray-400);
}

.detail-one-line {
  margin: 22px 0;
  padding: 18px;
  border-left: 4px solid var(--rose-500);
  border-radius: 0 16px 16px 0;
  color: var(--gray-700);
  background: var(--rose-50);
  font-size: 17px;
}

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

.detail-tags span {
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--gray-700);
  background: var(--gray-100);
  font-size: 13px;
}

.detail-text {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  gap: 24px;
  padding-top: 0;
}

.story-card {
  padding: 26px;
}

.story-card h2 {
  margin-bottom: 14px;
  font-size: 26px;
}

.story-card p {
  margin: 0;
  color: var(--gray-700);
  font-size: 16px;
}

.site-footer {
  margin-top: 34px;
  color: #d1d5db;
  background: #111827;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 20px;
  font-weight: 900;
}

.footer-brand p {
  max-width: 420px;
  color: #9ca3af;
}

.footer-mini {
  font-size: 13px;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: white;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links a:hover {
  color: white;
}

[hidden] {
  display: none !important;
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 12px;
    font-size: 14px;
  }

  .hero-shell,
  .detail-card,
  .split-section,
  .detail-text,
  .category-layout {
    grid-template-columns: 1fr;
  }

  .hero-carousel,
  .hot-panel,
  .category-side {
    position: static;
  }

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

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

@media (max-width: 760px) {
  .nav-shell {
    min-height: 64px;
  }

  .main-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .mobile-nav.is-open {
    display: grid;
  }

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

  .hero {
    min-height: auto;
  }

  .hero-shell {
    padding: 64px 0 96px;
    gap: 28px;
  }

  .hero-slide {
    position: relative;
    display: block;
    min-height: auto;
  }

  .hero-slide:not(.is-active) {
    display: none;
  }

  .hero-poster {
    display: block;
    margin-top: 18px;
  }

  .hero-poster img {
    min-height: 280px;
  }

  .hero-controls {
    right: 16px;
    bottom: 16px;
  }

  .section-title-row,
  .hot-panel-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .four-cols,
  .three-cols,
  .latest-grid,
  .category-grid,
  .category-overview-grid,
  .footer-shell {
    grid-template-columns: 1fr;
  }

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

  .movie-card-list {
    grid-template-columns: 120px 1fr;
  }

  .ranking-card {
    grid-template-columns: 112px 1fr;
    gap: 14px;
  }

  .detail-info {
    padding: 24px;
  }

  .player-shell,
  .movie-video {
    min-height: 260px;
  }
}
