:root {
  color-scheme: dark;
  --bg: #020617;
  --panel: rgba(15, 23, 42, 0.86);
  --panel-soft: rgba(15, 23, 42, 0.58);
  --line: rgba(148, 163, 184, 0.18);
  --text: #ffffff;
  --muted: #94a3b8;
  --soft: #cbd5e1;
  --accent: #ef4444;
  --accent-2: #f97316;
  --accent-3: #22d3ee;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  --radius: 24px;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(239, 68, 68, 0.18), transparent 28rem),
    radial-gradient(circle at 80% 10%, rgba(34, 211, 238, 0.12), transparent 24rem),
    linear-gradient(180deg, #020617 0%, #0f172a 44%, #020617 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

body.is-menu-open {
  overflow: hidden;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 80;
  border-bottom: 1px solid var(--line);
  background: rgba(2, 6, 23, 0.84);
  backdrop-filter: blur(18px);
}

.header-inner {
  max-width: 1280px;
  height: 76px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 900;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 28px rgba(239, 68, 68, 0.35);
}

.brand-text {
  display: grid;
  line-height: 1.15;
}

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

.brand-text small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  min-width: 0;
}

.desktop-nav a,
.mobile-panel a,
.footer-links a {
  color: var(--soft);
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.desktop-nav a {
  font-size: 14px;
  white-space: nowrap;
}

.desktop-nav a:hover,
.mobile-panel a:hover,
.footer-links a:hover {
  color: #ffffff;
}

.header-search,
.mobile-search,
.page-search-form,
.filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-search input,
.mobile-search input,
.page-search-form input,
.filter-bar input {
  width: 210px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.8);
  color: var(--text);
  padding: 12px 16px;
  outline: none;
}

.header-search input:focus,
.mobile-search input:focus,
.page-search-form input:focus,
.filter-bar input:focus {
  border-color: rgba(239, 68, 68, 0.68);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12);
}

.header-search button,
.mobile-search button,
.page-search-form button,
.primary-btn,
.ghost-btn,
.section-link,
.text-link {
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.header-search button,
.mobile-search button,
.page-search-form button,
.primary-btn {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  padding: 12px 18px;
  box-shadow: 0 18px 32px rgba(239, 68, 68, 0.24);
}

.ghost-btn,
.section-link,
.text-link {
  color: #ffffff;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid var(--line);
  padding: 12px 18px;
}

.header-search button:hover,
.mobile-search button:hover,
.page-search-form button:hover,
.primary-btn:hover,
.ghost-btn:hover,
.section-link:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid var(--line);
  color: #ffffff;
  background: rgba(15, 23, 42, 0.8);
}

.mobile-panel {
  display: none;
  padding: 16px 24px 22px;
  border-top: 1px solid var(--line);
  background: rgba(2, 6, 23, 0.96);
}

.mobile-panel nav {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.mobile-panel a {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.66);
}

main {
  padding-top: 76px;
}

.hero-section {
  position: relative;
  min-height: 680px;
  overflow: hidden;
}

.hero-stage {
  position: relative;
  height: 610px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.65s ease;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(2, 6, 23, 0.72) 45%, rgba(2, 6, 23, 0.2) 100%),
    var(--slide-image) center / cover no-repeat;
}

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

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 6, 23, 0.05), rgba(2, 6, 23, 0.95)),
    radial-gradient(circle at 18% 50%, rgba(239, 68, 68, 0.24), transparent 28rem);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: 70px 24px 90px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: center;
  gap: 54px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow,
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fecaca;
  background: rgba(239, 68, 68, 0.13);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hero-copy h1,
.page-hero h1 {
  margin: 20px 0 18px;
  font-size: clamp(38px, 6vw, 78px);
  line-height: 0.95;
  font-weight: 950;
  letter-spacing: -0.07em;
}

.hero-line,
.page-hero p,
.detail-line {
  color: var(--soft);
  font-size: 18px;
  line-height: 1.75;
}

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

.hero-tags {
  margin-top: 24px;
}

.hero-tags span,
.tag-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #e2e8f0;
  background: rgba(15, 23, 42, 0.62);
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 700;
}

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

.hero-poster {
  position: relative;
  display: block;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.32), rgba(34, 211, 238, 0.18));
}

.hero-poster img,
.detail-cover img,
.poster-wrap img,
.feature-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-poster img {
  aspect-ratio: 2 / 3;
}

.hero-poster span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(239, 68, 68, 0.92);
  padding: 8px 14px;
  font-weight: 900;
}

.hero-control {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: #ffffff;
  background: rgba(15, 23, 42, 0.72);
  font-size: 32px;
  transform: translateY(-50%);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.38);
  transition: width 0.2s ease, background 0.2s ease;
}

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

.hero-search-panel {
  position: relative;
  z-index: 7;
  max-width: 1120px;
  margin: -56px auto 0;
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 520px);
  gap: 20px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.78);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.hero-search-panel strong {
  display: block;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.hero-search-panel span {
  color: var(--muted);
}

.hero-search-panel form {
  display: flex;
  gap: 10px;
}

.hero-search-panel input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.82);
  color: var(--text);
  padding: 14px 18px;
  outline: none;
}

.hero-search-panel button {
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  padding: 14px 20px;
  font-weight: 900;
}

.content-section,
.page-main .content-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 54px 24px;
}

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

.section-heading h2 {
  margin: 8px 0 8px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.section-heading p {
  color: var(--muted);
  max-width: 620px;
}

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

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.88), rgba(15, 23, 42, 0.54));
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.22);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-7px);
  border-color: rgba(239, 68, 68, 0.42);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
}

.poster-wrap {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.24), rgba(34, 211, 238, 0.12));
}

.poster-wrap img {
  transition: transform 0.45s ease, opacity 0.2s ease;
}

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

.poster-glow {
  position: absolute;
  inset: auto 0 0 0;
  height: 55%;
  background: linear-gradient(180deg, transparent, rgba(2, 6, 23, 0.88));
}

.play-chip,
.rank-badge {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 900;
}

.play-chip {
  right: 14px;
  bottom: 14px;
  background: rgba(239, 68, 68, 0.92);
  padding: 8px 13px;
}

.rank-badge {
  left: 14px;
  top: 14px;
  min-width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

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

.movie-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.movie-card h3 {
  margin: 10px 0 8px;
  font-size: 19px;
  line-height: 1.25;
  font-weight: 900;
}

.movie-card h3 a {
  color: #ffffff;
  text-decoration: none;
}

.movie-card p {
  display: -webkit-box;
  min-height: 48px;
  overflow: hidden;
  color: var(--soft);
  font-size: 14px;
  line-height: 1.7;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-card .tag-row {
  margin-top: 14px;
}

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

.rank-panel,
.detail-side-card,
.detail-article,
.category-overview-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-soft);
  box-shadow: var(--shadow);
}

.rank-panel {
  position: sticky;
  top: 98px;
  padding: 22px;
}

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

.rank-panel-head span {
  color: var(--accent-2);
  font-weight: 950;
  letter-spacing: 0.1em;
}

.rank-panel-head h2 {
  flex: 1;
  font-size: 24px;
  font-weight: 950;
}

.rank-panel-head a,
.rank-row,
.category-samples a {
  color: var(--soft);
  text-decoration: none;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(2, 6, 23, 0.34);
}

.rank-row:hover {
  background: rgba(239, 68, 68, 0.12);
}

.rank-row b {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #ffffff;
  background: rgba(239, 68, 68, 0.82);
}

.rank-row span {
  color: #ffffff;
  font-weight: 850;
}

.rank-row em {
  grid-column: 2;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

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

.category-card {
  min-height: 150px;
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  color: #ffffff;
  text-decoration: none;
  background:
    radial-gradient(circle at top right, rgba(239, 68, 68, 0.24), transparent 12rem),
    rgba(15, 23, 42, 0.72);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: rgba(239, 68, 68, 0.42);
}

.category-card span {
  font-size: 22px;
  font-weight: 950;
}

.category-card p,
.category-card em {
  color: var(--muted);
  font-style: normal;
}

.horizontal-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(270px, 1fr);
  gap: 22px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x proximity;
}

.horizontal-scroll .movie-card {
  scroll-snap-align: start;
}

.page-main {
  padding-top: 100px;
}

.page-hero {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 66px 24px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.compact-hero {
  min-height: 260px;
}

.category-hero {
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.94), rgba(2, 6, 23, 0.54)),
    var(--page-image) center / cover no-repeat;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  max-width: 780px;
  margin-top: 32px;
}

.feature-mini {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: #ffffff;
  text-decoration: none;
  background: rgba(15, 23, 42, 0.72);
}

.feature-mini span {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px 12px 10px;
  font-size: 13px;
  font-weight: 850;
  background: linear-gradient(180deg, transparent, rgba(2, 6, 23, 0.9));
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 20px;
  padding: 16px;
}

.category-cover {
  min-height: 170px;
  display: flex;
  align-items: end;
  padding: 18px;
  overflow: hidden;
  border-radius: 20px;
  color: #ffffff;
  text-decoration: none;
  background:
    linear-gradient(180deg, transparent, rgba(2, 6, 23, 0.9)),
    var(--category-image) center / cover no-repeat,
    linear-gradient(135deg, rgba(239, 68, 68, 0.32), rgba(34, 211, 238, 0.18));
}

.category-cover span,
.category-overview-card h2 {
  font-size: 24px;
  font-weight: 950;
}

.category-overview-card h2 a {
  color: #ffffff;
  text-decoration: none;
}

.category-overview-card p {
  margin: 8px 0 14px;
  color: var(--soft);
  line-height: 1.7;
}

.category-samples {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.category-samples a {
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.34);
  padding: 7px 10px;
  font-size: 12px;
}

.filter-bar {
  justify-content: center;
  margin-bottom: 28px;
}

.filter-bar input,
.wide-filter input {
  width: min(100%, 560px);
}

.page-search-form {
  max-width: 650px;
  margin-top: 26px;
}

.page-search-form input {
  flex: 1;
  width: auto;
}

.empty-state {
  display: none;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  color: var(--muted);
  text-align: center;
  background: rgba(15, 23, 42, 0.62);
}

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

.breadcrumb {
  max-width: 1280px;
  margin: 0 auto 22px;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
}

.breadcrumb a {
  color: var(--soft);
  text-decoration: none;
}

.breadcrumb em {
  color: #ffffff;
  font-style: normal;
}

.detail-main {
  padding-top: 112px;
}

.detail-hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 42px;
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}

.detail-cover {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.28), rgba(34, 211, 238, 0.12));
  box-shadow: var(--shadow);
}

.detail-cover img {
  aspect-ratio: 2 / 3;
}

.detail-info h1 {
  margin: 18px 0;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.06em;
}

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

.detail-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.detail-meta li,
.detail-side-card li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.62);
  padding: 12px 14px;
}

.detail-meta span,
.detail-side-card span {
  color: var(--muted);
}

.detail-meta b,
.detail-side-card b {
  color: #ffffff;
  text-align: right;
}

.player-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 24px 48px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  background: #000000;
  box-shadow: var(--shadow);
}

.player-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.player-start {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  border: 0;
  color: #ffffff;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.18), rgba(2, 6, 23, 0.72));
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.player-start span {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 45px rgba(239, 68, 68, 0.48);
  font-size: 30px;
}

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

.player-shell.is-playing .player-start {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.detail-text-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 24px;
  align-items: start;
}

.detail-article,
.detail-side-card {
  padding: 26px;
}

.detail-article h2,
.detail-side-card h2 {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 950;
}

.detail-article p {
  margin-bottom: 24px;
  color: var(--soft);
  font-size: 16px;
  line-height: 2;
}

.detail-side-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

img.is-missing {
  opacity: 0;
}

.site-footer {
  margin-top: 48px;
  border-top: 1px solid var(--line);
  background: rgba(2, 6, 23, 0.84);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 42px 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 30px;
}

.footer-brand {
  font-size: 24px;
}

.site-footer p,
.site-footer h2 {
  margin-top: 14px;
}

.site-footer p {
  color: var(--muted);
  line-height: 1.8;
}

.site-footer h2 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 950;
}

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

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

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .header-search {
    margin-left: auto;
  }

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

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

  .split-section,
  .detail-text-section {
    grid-template-columns: 1fr;
  }

  .rank-panel {
    position: relative;
    top: 0;
  }

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

@media (max-width: 860px) {
  .header-inner {
    height: 68px;
    padding: 0 16px;
  }

  .brand-text small,
  .header-search {
    display: none;
  }

  main {
    padding-top: 68px;
  }

  .hero-stage {
    height: 640px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 48px 18px 100px;
  }

  .hero-poster {
    max-width: 220px;
    transform: none;
  }

  .hero-control {
    display: none;
  }

  .hero-search-panel {
    grid-template-columns: 1fr;
    margin: -48px 16px 0;
  }

  .hero-search-panel form {
    display: grid;
  }

  .section-heading {
    display: grid;
  }

  .four-cols,
  .three-cols,
  .category-grid,
  .feature-strip,
  .category-overview-grid,
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

@media (max-width: 560px) {
  .brand-text span {
    font-size: 18px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

  .content-section,
  .page-main .content-section,
  .page-hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .four-cols,
  .three-cols,
  .category-grid,
  .feature-strip,
  .category-overview-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: 40px;
  }

  .hero-line,
  .page-hero p,
  .detail-line {
    font-size: 16px;
  }

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

  .detail-main {
    padding-top: 92px;
  }

  .player-start span {
    width: 62px;
    height: 62px;
  }
}
