:root {
  --blue-900: #1e3a8a;
  --blue-800: #1e40af;
  --blue-700: #1d4ed8;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --blue-100: #dbeafe;
  --blue-50: #eff6ff;
  --green-600: #16a34a;
  --orange-600: #ea580c;
  --red-600: #dc2626;
  --gray-950: #020617;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 8px 20px rgba(15, 23, 42, 0.10);
  --shadow-xl: 0 24px 60px rgba(15, 23, 42, 0.18);
  --radius-lg: 18px;
  --radius-xl: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--gray-900);
  background: var(--gray-50);
  line-height: 1.65;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.78);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

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

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--gray-900);
  white-space: nowrap;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-600), var(--blue-900));
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.32);
}

.brand-text {
  font-size: 21px;
  letter-spacing: -0.03em;
}

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

.nav-link {
  font-size: 15px;
  font-weight: 650;
  color: var(--gray-700);
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue-600);
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.header-search input,
.mobile-search input {
  width: 160px;
  border: 0;
  outline: 0;
  padding: 9px 12px;
  color: var(--gray-700);
  background: transparent;
}

.header-search button,
.mobile-search button {
  border: 0;
  border-radius: 999px;
  padding: 9px 16px;
  color: var(--white);
  background: var(--blue-600);
  cursor: pointer;
  transition: background 0.2s ease;
}

.header-search button:hover,
.mobile-search button:hover {
  background: var(--blue-700);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: var(--blue-50);
  cursor: pointer;
}

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

.mobile-panel {
  display: none;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
}

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

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

.mobile-nav {
  display: grid;
  gap: 10px;
  padding: 18px 0;
}

.mobile-search {
  display: flex;
  padding: 0 0 18px;
}

.mobile-search input {
  flex: 1;
  border: 1px solid var(--gray-200);
  border-radius: 999px 0 0 999px;
  padding-left: 16px;
}

.mobile-search button {
  border-radius: 0 999px 999px 0;
}

main {
  min-height: 70vh;
}

.hero-section {
  position: relative;
  min-height: 650px;
  padding-top: 76px;
  overflow: hidden;
  background: linear-gradient(135deg, #172554 0%, #1e40af 52%, #2563eb 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.8) 0 2px, transparent 3px), radial-gradient(circle at 75% 35%, rgba(255,255,255,0.55) 0 2px, transparent 3px);
  background-size: 64px 64px, 92px 92px;
}

.hero-inner {
  position: relative;
  min-height: 574px;
  display: flex;
  align-items: center;
}

.hero-slide {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.72fr);
  align-items: center;
  gap: 52px;
  width: 100%;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  position: absolute;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--blue-100);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-copy h1 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.hero-copy h2 {
  margin: 0 0 18px;
  color: var(--blue-100);
  font-size: clamp(25px, 3.8vw, 43px);
  line-height: 1.18;
}

.hero-copy p {
  width: min(620px, 100%);
  margin: 0 0 28px;
  color: rgba(219, 234, 254, 0.96);
  font-size: 19px;
}

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

.primary-button,
.secondary-button,
.outline-button,
.watch-link,
.rank-action {
  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, color 0.2s ease;
}

.primary-button {
  padding: 12px 26px;
  color: var(--white);
  background: var(--blue-600);
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.28);
}

.hero-section .primary-button {
  color: var(--blue-900);
  background: var(--white);
}

.secondary-button {
  padding: 12px 24px;
  color: var(--white);
  background: rgba(29, 78, 216, 0.8);
  border: 2px solid rgba(255, 255, 255, 0.55);
}

.outline-button {
  padding: 12px 24px;
  color: var(--blue-700);
  background: var(--white);
  border: 1px solid var(--blue-100);
}

.primary-button:hover,
.secondary-button:hover,
.outline-button:hover,
.watch-link:hover,
.rank-action:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hero-poster {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 35px 80px rgba(2, 6, 23, 0.45);
  transform: rotate(2deg);
  background: rgba(255, 255, 255, 0.12);
}

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

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

.hero-poster span {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--white);
  font-weight: 800;
  background: rgba(37, 99, 235, 0.9);
}

.hero-controls {
  position: absolute;
  left: 0;
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-controls button {
  border: 0;
  cursor: pointer;
}

.hero-controls > button {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: var(--white);
  font-size: 28px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.18);
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.4);
}

.hero-dot.is-active {
  width: 28px;
  background: var(--white);
}

.stats-section {
  padding: 34px 0;
  background: var(--gray-50);
}

.stats-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.stat-card {
  padding: 26px;
  text-align: center;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.stat-card strong {
  display: block;
  color: var(--blue-600);
  font-size: 32px;
  line-height: 1;
}

.stat-card span {
  color: var(--gray-600);
}

.content-section {
  padding: 72px 0;
}

.white-section {
  background: var(--white);
}

.soft-section {
  background: linear-gradient(135deg, var(--gray-50), var(--blue-50));
}

.blue-section {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
}

.section-title {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-title h2 {
  margin: 0 0 12px;
  color: inherit;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.section-title p {
  margin: 0;
  color: var(--gray-600);
  font-size: 18px;
}

.blue-section .section-title p {
  color: var(--blue-100);
}

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

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

.category-card {
  position: relative;
  min-height: 285px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-500), var(--blue-900));
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:nth-child(2n) {
  background: linear-gradient(135deg, #16a34a, #14532d);
}

.category-card:nth-child(3n) {
  background: linear-gradient(135deg, #ea580c, #7c2d12);
}

.category-card:nth-child(4n) {
  background: linear-gradient(135deg, #9333ea, #3b0764);
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.category-preview {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  opacity: 0.26;
}

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

.category-content {
  position: relative;
  min-height: 285px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(2, 6, 23, 0.65));
}

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

.category-content p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.88);
}

.category-content span {
  font-weight: 800;
}

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

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

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

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

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

.movie-poster {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--gray-100);
}

.list-grid .movie-poster,
.compact-card .movie-poster {
  aspect-ratio: 3 / 4;
}

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

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

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

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

.movie-card h3 {
  margin: 0 0 9px;
  color: var(--gray-900);
  font-size: 20px;
  line-height: 1.25;
}

.compact-card h3,
.list-grid .movie-card h3 {
  font-size: 17px;
}

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

.movie-card p {
  min-height: 52px;
  margin: 0 0 14px;
  color: var(--gray-600);
  font-size: 14px;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--gray-500);
  font-size: 13px;
}

.movie-meta span,
.movie-meta a {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--gray-100);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}

.tag-row span {
  display: inline-flex;
  padding: 4px 9px;
  border-radius: 999px;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 700;
  background: var(--blue-50);
}

.watch-link {
  width: 100%;
  margin-top: 16px;
  padding: 10px 18px;
  color: var(--blue-700);
  background: var(--blue-50);
}

.center-action {
  justify-content: center;
  margin-top: 36px;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  gap: 50px;
  align-items: center;
}

.split-layout .section-title {
  margin-left: 0;
  text-align: left;
}

.feature-list {
  display: grid;
  gap: 18px;
}

.feature-list div {
  padding: 20px;
  border-radius: var(--radius-lg);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
}

.feature-list strong {
  display: block;
  margin-bottom: 7px;
  color: var(--gray-900);
  font-size: 18px;
}

.feature-list p {
  margin: 0;
  color: var(--gray-600);
}

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

.square-poster-grid a {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.square-poster-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.square-poster-grid a:hover img {
  transform: scale(1.08);
}

.square-poster-grid span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 36px 14px 14px;
  color: var(--white);
  font-weight: 800;
  background: linear-gradient(180deg, transparent, rgba(2, 6, 23, 0.72));
}

.page-hero {
  padding: 142px 0 64px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-900), var(--blue-600));
}

.page-hero h1 {
  max-width: 860px;
  margin: 0 0 14px;
  font-size: clamp(36px, 6vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.page-hero p {
  max-width: 780px;
  margin: 0;
  color: var(--blue-100);
  font-size: 18px;
}

.filter-panel {
  margin-bottom: 34px;
  padding: 24px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(219, 234, 254, 0.9);
}

.filter-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.filter-heading h2 {
  margin: 0;
  font-size: 24px;
}

.filter-heading button {
  border: 0;
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--blue-700);
  font-weight: 800;
  background: var(--blue-50);
  cursor: pointer;
}

.filter-controls {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, minmax(140px, 1fr));
  gap: 14px;
}

.filter-controls label {
  display: grid;
  gap: 6px;
  color: var(--gray-600);
  font-size: 13px;
  font-weight: 800;
}

.filter-controls input,
.filter-controls select {
  width: 100%;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 12px 14px;
  color: var(--gray-800);
  background: var(--white);
  outline: none;
}

.filter-controls input:focus,
.filter-controls select:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.16);
}

[data-filter-card].is-hidden {
  display: none;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 84px 54px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 12px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.rank-cover {
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 14px;
  background: var(--gray-100);
}

.rank-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rank-number {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  font-weight: 900;
  background: var(--red-600);
}

.rank-body h3 {
  margin: 0 0 5px;
  font-size: 19px;
}

.rank-body h3 a:hover {
  color: var(--blue-600);
}

.rank-body p {
  margin: 0 0 8px;
  color: var(--gray-600);
}

.rank-action {
  padding: 9px 16px;
  color: var(--white);
  background: var(--blue-600);
}

.detail-wrap {
  padding: 116px 0 70px;
  background: linear-gradient(135deg, var(--gray-50), var(--blue-50));
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 24px;
  color: var(--gray-600);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--blue-700);
  font-weight: 800;
}

.detail-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 32px;
  padding: 28px;
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow-xl);
}

.detail-media {
  display: grid;
  gap: 18px;
}

.video-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 22px;
  background: var(--gray-950);
}

.movie-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: var(--gray-950);
}

.video-start {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 0;
  border-radius: 999px;
  padding: 14px 24px;
  color: var(--blue-900);
  font-weight: 900;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.video-start:hover {
  transform: translate(-50%, -50%) scale(1.04);
}

.video-start.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.detail-cover {
  display: block;
  max-width: 230px;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
}

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

.detail-badge {
  display: inline-flex;
  width: max-content;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--blue-700);
  font-weight: 800;
  background: var(--blue-50);
}

.detail-info h1 {
  margin: 0 0 16px;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.detail-one-line {
  margin: 0 0 22px;
  color: var(--gray-600);
  font-size: 20px;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 20px;
}

.detail-meta span,
.detail-meta a {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--gray-700);
  background: var(--gray-100);
  font-size: 14px;
  font-weight: 800;
}

.detail-tags {
  margin-bottom: 22px;
}

.wide-button {
  width: max-content;
}

.anchor-target {
  position: relative;
  top: -96px;
}

.detail-text {
  margin: 34px 0 0;
  padding: 34px;
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.detail-text h2 {
  margin: 0 0 12px;
  font-size: 28px;
}

.detail-text h2:not(:first-child) {
  margin-top: 28px;
}

.detail-text p {
  margin: 0;
  color: var(--gray-700);
  font-size: 17px;
}

.related-section {
  padding-bottom: 0;
}

.site-footer {
  color: var(--gray-300);
  background: var(--gray-900);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr repeat(2, minmax(160px, 0.7fr));
  gap: 38px;
  padding: 46px 0;
}

.footer-logo {
  color: var(--white);
}

.footer-brand p {
  max-width: 430px;
  color: var(--gray-300);
}

.footer-group {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-group h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 18px;
}

.footer-group a {
  color: var(--gray-300);
  font-size: 14px;
}

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

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--gray-300);
  font-size: 14px;
}

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

  .menu-toggle {
    display: inline-block;
  }

  .hero-slide,
  .detail-card,
  .split-layout {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: 760px;
  }

  .hero-inner {
    min-height: 684px;
  }

  .hero-poster {
    width: min(300px, 72vw);
    margin: 0 auto;
  }

  .hero-controls {
    bottom: 26px;
  }

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

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

@media (max-width: 760px) {
  .header-inner {
    height: 66px;
  }

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

  .hero-section {
    padding-top: 66px;
    min-height: 760px;
  }

  .hero-inner {
    min-height: 694px;
    align-items: flex-start;
    padding-top: 48px;
  }

  .hero-slide {
    gap: 28px;
  }

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

  .hero-controls {
    left: 50%;
    transform: translateX(-50%);
  }

  .stats-grid,
  .movie-grid,
  .list-grid,
  .compact-grid,
  .category-grid,
  .all-categories,
  .footer-inner,
  .filter-controls,
  .rank-item {
    grid-template-columns: 1fr;
  }

  .rank-item {
    align-items: start;
  }

  .rank-cover {
    width: 112px;
  }

  .rank-action {
    width: max-content;
  }

  .content-section {
    padding: 52px 0;
  }

  .page-hero {
    padding: 116px 0 46px;
  }

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

  .detail-card,
  .detail-text,
  .filter-panel {
    padding: 20px;
    border-radius: 22px;
  }

  .detail-cover {
    max-width: 180px;
  }
}
