:root {
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-500: #64748b;
  --amber-600: #d97706;
  --amber-500: #f59e0b;
  --amber-400: #fbbf24;
  --orange-600: #ea580c;
  --orange-500: #f97316;
  --text-main: #111827;
  --text-soft: #4b5563;
  --line: #e5e7eb;
  --card: #ffffff;
  --page-bg: #f8fafc;
  --radius-xl: 24px;
  --shadow-card: 0 16px 45px rgba(15, 23, 42, 0.08);
  --shadow-strong: 0 26px 70px rgba(15, 23, 42, 0.25);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--text-main);
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 46%, #f8fafc 100%);
}

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;
  color: #fff;
  background: linear-gradient(90deg, var(--slate-900), var(--slate-800), var(--slate-900));
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.28);
}

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

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

.logo-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
  box-shadow: 0 14px 28px rgba(245, 158, 11, 0.28);
  transform: translateZ(0);
  transition: transform 0.25s ease;
}

.logo:hover .logo-mark {
  transform: scale(1.08) rotate(-3deg);
}

.logo-title {
  display: block;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, var(--amber-400), var(--orange-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo-subtitle {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: #94a3b8;
}

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

.nav-link {
  padding: 10px 14px;
  border-radius: 12px;
  color: #cbd5e1;
  font-size: 15px;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: #fff;
  background: var(--amber-500);
  box-shadow: 0 12px 26px rgba(245, 158, 11, 0.28);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-search {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 230px;
  padding: 9px 12px;
  border-radius: 14px;
  background: rgba(51, 65, 85, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.18);
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.site-search:focus-within {
  border-color: rgba(245, 158, 11, 0.88);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.16);
  background: rgba(30, 41, 59, 0.95);
}

.site-search input {
  width: 100%;
  border: 0;
  outline: 0;
  color: #fff;
  background: transparent;
}

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

.search-icon {
  color: #94a3b8;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: rgba(51, 65, 85, 0.8);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}

.mobile-nav {
  display: none;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  background: var(--slate-800);
}

.mobile-nav-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 14px 0 18px;
  display: grid;
  gap: 8px;
}

.mobile-nav .nav-link {
  display: block;
}

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

.hero {
  position: relative;
  height: 560px;
  overflow: hidden;
  background: var(--slate-950);
}

.hero-slider {
  position: relative;
  height: 100%;
}

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

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  filter: saturate(1.05);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 24%, rgba(245, 158, 11, 0.34), transparent 30%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.93) 0%, rgba(15, 23, 42, 0.74) 42%, rgba(15, 23, 42, 0.28) 100%),
    linear-gradient(0deg, rgba(2, 6, 23, 0.9), rgba(2, 6, 23, 0.1));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 42px;
}

.hero-copy {
  max-width: 720px;
  color: #fff;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff7ed;
  background: rgba(245, 158, 11, 0.18);
  border: 1px solid rgba(251, 191, 36, 0.32);
  backdrop-filter: blur(12px);
}

.hero-title {
  margin: 0;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 950;
}

.hero-title strong {
  color: var(--amber-400);
}

.hero-movie {
  margin: 18px 0 0;
  font-size: clamp(26px, 4vw, 46px);
  line-height: 1.06;
  font-weight: 900;
}

.hero-desc {
  max-width: 680px;
  margin: 18px 0 0;
  color: #e2e8f0;
  font-size: 18px;
  line-height: 1.8;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.meta-pill,
.tag-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: rgba(15, 23, 42, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

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

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 15px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
  color: #fff;
  background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
  box-shadow: 0 18px 36px rgba(245, 158, 11, 0.3);
}

.secondary-btn {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(14px);
}

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

.hero-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.7s ease;
}

.hero-slide:hover .hero-card img {
  transform: scale(1.08);
}

.hero-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 12px;
  border-radius: 12px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  background: rgba(245, 158, 11, 0.92);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: rgba(2, 6, 23, 0.54);
  cursor: pointer;
  backdrop-filter: blur(10px);
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(2, 6, 23, 0.78);
  transform: translateY(-50%) scale(1.08);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

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

.hero-dot.is-active {
  width: 32px;
  background: var(--amber-500);
}

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

.section-stack {
  padding: 56px 0 0;
  display: grid;
  gap: 64px;
}

.section-box {
  padding: 34px;
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(226, 232, 240, 0.85);
}

.section-box.tint {
  background: linear-gradient(135deg, #fffbeb, #fff7ed);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), var(--shadow-card);
}

.section-box.dark {
  color: #fff;
  background: linear-gradient(135deg, var(--slate-900), var(--slate-800));
  border-color: rgba(255, 255, 255, 0.1);
}

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

.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.section-title::before {
  content: "";
  width: 5px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--amber-500), var(--orange-600));
}

.section-lead {
  max-width: 720px;
  margin: 10px 0 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.dark .section-lead {
  color: #cbd5e1;
}

.section-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--amber-600);
  font-weight: 800;
}

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

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

.movie-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
  background: var(--card);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 158, 11, 0.44);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.16);
}

.poster-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--slate-900);
}

.poster-wrap.tall {
  aspect-ratio: 3 / 4;
}

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

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

.poster-fade {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.72), transparent 58%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

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

.play-bubble {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: var(--amber-500);
  box-shadow: 0 18px 35px rgba(245, 158, 11, 0.35);
  transform: scale(0.82);
  transition: transform 0.25s ease;
}

.movie-card:hover .play-bubble {
  transform: scale(1);
}

.poster-badge,
.poster-genre {
  position: absolute;
  top: 12px;
  padding: 6px 9px;
  border-radius: 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(10px);
}

.poster-badge {
  left: 12px;
}

.poster-genre {
  right: 12px;
}

.movie-info {
  padding: 16px;
}

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

.movie-type {
  padding: 4px 8px;
  border-radius: 8px;
  color: #92400e;
  background: linear-gradient(90deg, #fef3c7, #ffedd5);
  font-weight: 800;
}

.movie-title {
  margin: 0;
  min-height: 48px;
  color: var(--text-main);
  font-size: 17px;
  line-height: 1.42;
  font-weight: 900;
  transition: color 0.2s ease;
}

.movie-card:hover .movie-title {
  color: var(--amber-600);
}

.movie-line {
  margin: 10px 0 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.card-tag {
  padding: 4px 8px;
  border-radius: 999px;
  color: #78350f;
  background: #fffbeb;
  font-size: 12px;
  font-weight: 700;
}

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

.movie-card.horizontal {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  min-height: 170px;
}

.movie-card.horizontal .poster-wrap {
  height: 100%;
  aspect-ratio: auto;
}

.movie-card.horizontal .movie-title {
  min-height: auto;
  font-size: 20px;
}

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

.category-card {
  position: relative;
  overflow: hidden;
  min-height: 178px;
  padding: 22px;
  border-radius: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgba(251, 191, 36, 0.55), transparent 28%),
    linear-gradient(135deg, var(--slate-900), var(--slate-800));
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.16);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.category-card h3 {
  position: relative;
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 900;
}

.category-card p {
  position: relative;
  margin: 0;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.65;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 58px 96px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 12px;
  border-radius: 20px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease, transform 0.2s ease;
}

.rank-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.14);
}

.rank-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  color: var(--slate-950);
  background: linear-gradient(135deg, var(--amber-400), var(--orange-500));
  font-size: 19px;
  font-weight: 950;
}

.rank-poster {
  width: 96px;
  height: 62px;
  border-radius: 14px;
  object-fit: cover;
}

.rank-title {
  margin: 0;
  font-weight: 900;
  line-height: 1.35;
}

.rank-meta {
  margin: 6px 0 0;
  color: #cbd5e1;
  font-size: 13px;
}

.page-hero {
  padding: 58px 0 34px;
  background:
    radial-gradient(circle at 75% 16%, rgba(245, 158, 11, 0.28), transparent 32%),
    linear-gradient(135deg, var(--slate-950), var(--slate-800));
  color: #fff;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.page-hero p {
  max-width: 760px;
  margin: 16px 0 0;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.75;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  color: #cbd5e1;
  font-size: 14px;
}

.breadcrumb a {
  color: #fde68a;
  font-weight: 800;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px 180px;
  gap: 14px;
  margin: 28px 0 0;
}

.filter-input,
.filter-select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(203, 213, 225, 0.78);
  border-radius: 16px;
  outline: 0;
  padding: 0 14px;
  color: var(--text-main);
  background: #fff;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.filter-input:focus,
.filter-select:focus {
  border-color: rgba(245, 158, 11, 0.95);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.14);
}

.content-pad {
  padding: 46px 0 70px;
}

.empty-state {
  display: none;
  margin: 26px 0 0;
  padding: 22px;
  border-radius: 18px;
  color: #78350f;
  background: #fffbeb;
  border: 1px solid #fde68a;
  font-weight: 800;
}

.empty-state.is-visible {
  display: block;
}

.detail-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 32px;
}

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #000;
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(15, 23, 42, 0.12);
}

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

.play-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  color: #fff;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.72), rgba(2, 6, 23, 0.28));
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.play-layer.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.play-layer .play-icon {
  width: 82px;
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding-left: 5px;
  background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
  box-shadow: 0 22px 55px rgba(245, 158, 11, 0.42);
  font-size: 36px;
}

.play-layer .play-text {
  font-size: 18px;
  font-weight: 900;
}

.detail-panel {
  margin-top: 26px;
  padding: 30px;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.detail-panel h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.detail-lead {
  margin: 16px 0 0;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.78;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.info-pill {
  padding: 8px 12px;
  border-radius: 999px;
  color: #92400e;
  background: #fffbeb;
  border: 1px solid #fde68a;
  font-size: 13px;
  font-weight: 800;
}

.article-block {
  margin-top: 30px;
}

.article-block h2 {
  margin: 0 0 12px;
  font-size: 24px;
}

.article-block p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.9;
}

.side-card {
  position: sticky;
  top: 100px;
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(226, 232, 240, 0.95);
}

.side-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: var(--slate-900);
}

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

.side-title {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 900;
}

.side-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
}

.side-list span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #e5e7eb;
  color: var(--text-soft);
  font-size: 14px;
}

.side-list b {
  color: var(--text-main);
}

.related-section {
  margin-top: 48px;
}

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

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

.footer-brand p,
.footer-col p {
  margin: 12px 0 0;
  color: #94a3b8;
  line-height: 1.75;
}

.footer-col h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 16px;
}

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

.footer-links a {
  color: #cbd5e1;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--amber-400);
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  padding: 18px 0 26px;
  color: #64748b;
  text-align: center;
  font-size: 14px;
}

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

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

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

  .hero {
    height: auto;
    min-height: 640px;
  }

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

  .hero-card {
    max-width: 360px;
  }

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

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

  .rank-list,
  .detail-wrap {
    grid-template-columns: 1fr;
  }

  .side-card {
    position: static;
  }
}

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

  .logo-title {
    font-size: 18px;
  }

  .logo-subtitle {
    display: none;
  }

  .hero {
    min-height: 600px;
  }

  .hero-content {
    gap: 24px;
    padding-top: 50px;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-movie {
    font-size: 28px;
  }

  .hero-desc {
    font-size: 16px;
  }

  .hero-card {
    display: none;
  }

  .hero-arrow {
    display: none;
  }

  .section-stack {
    padding-top: 38px;
    gap: 42px;
  }

  .section-box {
    padding: 24px;
    border-radius: 24px;
  }

  .section-head {
    display: block;
  }

  .movie-grid,
  .movie-grid.three,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .movie-card.horizontal {
    grid-template-columns: 116px minmax(0, 1fr);
    min-height: 132px;
  }

  .movie-card.horizontal .movie-title {
    font-size: 16px;
  }

  .movie-card.horizontal .movie-line,
  .movie-card.horizontal .tag-row {
    display: none;
  }

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

  .rank-item {
    grid-template-columns: 48px 78px minmax(0, 1fr);
    gap: 12px;
  }

  .rank-poster {
    width: 78px;
    height: 54px;
  }

  .detail-panel {
    padding: 22px;
  }

  .play-layer .play-icon {
    width: 66px;
    height: 66px;
    font-size: 30px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}
