
:root {
  color-scheme: light;
  --bg: #fff7ed;
  --bg-soft: #fffbeb;
  --text: #111827;
  --muted: #6b7280;
  --line: rgba(251, 146, 60, 0.24);
  --brand: #ea580c;
  --brand-strong: #c2410c;
  --accent: #f59e0b;
  --rose: #fb7185;
  --card: rgba(255, 255, 255, 0.92);
  --shadow: 0 24px 70px rgba(124, 45, 18, 0.14);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(251, 191, 36, 0.28), transparent 30rem),
    radial-gradient(circle at top right, rgba(244, 63, 94, 0.18), transparent 34rem),
    linear-gradient(135deg, #fffbeb 0%, #fff7ed 48%, #fff1f2 100%);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

img {
  max-width: 100%;
}

button,
a,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 35px rgba(154, 52, 18, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  background: linear-gradient(135deg, #fbbf24, #f97316 55%, #fb7185);
  box-shadow: 0 14px 28px rgba(249, 115, 22, 0.28);
}

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

.brand-title {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(90deg, #d97706, #ea580c, #e11d48);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-subtitle {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

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

.nav-link,
.mobile-nav-link {
  color: #374151;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link {
  padding: 9px 0;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-nav-link:hover,
.mobile-nav-link.is-active {
  color: var(--brand);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: #7c2d12;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
}

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

.mobile-nav-inner {
  display: grid;
  gap: 12px;
  padding: 16px 0 20px;
}

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  background: #1c1917;
}

.hero-stage {
  position: relative;
  min-height: 620px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  align-items: center;
  gap: 48px;
  width: 100%;
  padding: 86px max(32px, calc((100vw - 1180px) / 2)) 92px;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 0.6s ease, transform 0.8s ease;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(28, 25, 23, 0.94), rgba(28, 25, 23, 0.68) 46%, rgba(28, 25, 23, 0.28)),
    var(--hero-bg);
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  z-index: -1;
  background: linear-gradient(0deg, var(--bg), transparent);
}

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

.hero-content {
  max-width: 760px;
  color: #fff;
}

.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 14px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(90deg, #f59e0b, #f97316, #fb7185);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 7px 12px;
}

.hero-content h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 82px);
  font-weight: 950;
  line-height: 1.04;
  letter-spacing: -0.07em;
}

.hero-content p {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.75;
}

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

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

.chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(251, 146, 60, 0.34);
  border-radius: 999px;
  color: #9a3412;
  background: #fff7ed;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  padding: 5px 9px;
}

.hero-tags .chip,
.detail-tags .chip {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

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

.primary-button,
.ghost-button,
.filter-reset,
.section-link,
.footer-bottom button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 14px;
  border: 0;
  text-decoration: none;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
  color: #fff;
  background: linear-gradient(135deg, #f59e0b, #f97316 55%, #e11d48);
  box-shadow: 0 18px 36px rgba(249, 115, 22, 0.28);
  padding: 0 24px;
}

.primary-button.small {
  min-height: 40px;
  padding: 0 18px;
}

.ghost-button,
.section-link,
.footer-bottom button {
  color: #9a3412;
  border: 1px solid rgba(249, 115, 22, 0.32);
  background: rgba(255, 255, 255, 0.82);
  padding: 0 22px;
}

.ghost-button.dark {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.primary-button:hover,
.ghost-button:hover,
.filter-reset:hover,
.section-link:hover,
.footer-bottom button:hover {
  transform: translateY(-2px);
}

.hero-poster {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 34px;
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.42);
  transform: rotate(2deg);
}

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

.hero-poster span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 900;
  padding: 8px 12px;
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 32px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 14px;
  transform: translateX(-50%);
}

.hero-arrow,
.hero-dot {
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.hero-arrow {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  font-size: 30px;
  line-height: 1;
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 99px;
}

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

.intro-panel,
.filter-panel,
.content-section,
.category-overview-card,
.player-panel,
.story-card {
  border: 1px solid rgba(251, 146, 60, 0.22);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
}

.intro-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 42px;
  padding: 30px;
}

.intro-panel h2,
.section-heading h2,
.page-hero h1,
.detail-info h1,
.story-card h2 {
  margin: 0;
  color: #111827;
  font-weight: 950;
  letter-spacing: -0.045em;
}

.intro-panel h2,
.section-heading h2 {
  font-size: clamp(26px, 3vw, 38px);
}

.intro-panel p {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.filter-panel {
  margin-top: 28px;
  padding: 22px;
}

.filter-form {
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) repeat(3, minmax(140px, 0.7fr)) auto;
  gap: 14px;
  align-items: end;
}

.filter-form label {
  display: grid;
  gap: 8px;
  color: #9a3412;
  font-size: 13px;
  font-weight: 900;
}

.filter-form input,
.filter-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(249, 115, 22, 0.26);
  border-radius: 14px;
  outline: none;
  color: #111827;
  background: #fff;
  padding: 0 14px;
}

.filter-form input:focus,
.filter-form select:focus {
  border-color: rgba(249, 115, 22, 0.7);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.filter-reset {
  min-height: 46px;
  color: #9a3412;
  border: 1px solid rgba(249, 115, 22, 0.3);
  background: #fff7ed;
  padding: 0 18px;
}

.empty-state {
  margin: 16px 0 0;
  color: #9a3412;
  font-weight: 800;
}

.content-section {
  margin-top: 34px;
  padding: 30px;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.section-kicker {
  color: #fff;
}

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(251, 146, 60, 0.22);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(124, 45, 18, 0.09);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(124, 45, 18, 0.16);
}

.poster-link,
.poster-shell {
  display: block;
}

.poster-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, #fde68a, #fed7aa);
}

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

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

.poster-gradient {
  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-gradient {
  opacity: 1;
}

.play-float {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: rgba(249, 115, 22, 0.9);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.82);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.rank-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #f97316, #e11d48);
  font-size: 15px;
  font-weight: 950;
  box-shadow: 0 12px 24px rgba(225, 29, 72, 0.25);
}

.movie-body {
  padding: 14px;
}

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

.movie-title {
  margin: 8px 0 8px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.35;
}

.movie-title a {
  color: #111827;
  text-decoration: none;
}

.movie-title a:hover {
  color: var(--brand);
}

.movie-desc {
  display: -webkit-box;
  min-height: 45px;
  overflow: hidden;
  margin: 0 0 12px;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.7;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

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

.category-card,
.category-overview-head {
  display: grid;
  gap: 16px;
  color: inherit;
  text-decoration: none;
}

.category-card {
  border: 1px solid rgba(251, 146, 60, 0.22);
  border-radius: 24px;
  background: linear-gradient(135deg, #fff, #fff7ed);
  padding: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 50px rgba(124, 45, 18, 0.14);
}

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

.category-images.four-pack {
  grid-template-columns: repeat(4, 1fr);
}

.category-images img,
.hero-mini-posters img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  object-fit: cover;
  background: linear-gradient(135deg, #fde68a, #fed7aa);
}

.category-info strong,
.category-overview-head strong {
  display: block;
  color: #111827;
  font-size: 20px;
  font-style: normal;
  font-weight: 950;
}

.category-info em,
.category-overview-head em {
  display: block;
  margin-top: 8px;
  color: #6b7280;
  font-size: 13px;
  font-style: normal;
  line-height: 1.7;
}

.page-hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 36px;
  padding: 86px 0;
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.22), transparent 22rem),
    linear-gradient(135deg, #f59e0b, #f97316 48%, #fb7185);
}

.compact-hero {
  padding: 76px 0;
}

.page-hero h1 {
  max-width: 760px;
  color: #fff;
  font-size: clamp(38px, 5vw, 70px);
}

.page-hero p {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.8;
}

.two-column-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 44px;
  align-items: center;
}

.category-hero,
.rank-hero,
.detail-hero {
  background:
    linear-gradient(90deg, rgba(28, 25, 23, 0.9), rgba(124, 45, 18, 0.66)),
    var(--rank-bg, var(--detail-bg)),
    linear-gradient(135deg, #f59e0b, #f97316);
  background-size: cover;
  background-position: center;
}

.hero-mini-posters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  transform: rotate(2deg);
}

.rank-cover {
  display: grid;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 950;
}

.rank-cover img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 30px;
  object-fit: cover;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.category-overview-grid {
  margin-bottom: 60px;
}

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

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

.mini-grid .movie-desc,
.mini-grid .movie-tags,
.mini-grid .movie-meta-line {
  display: none;
}

.detail-hero {
  padding: 58px 0 76px;
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(0deg, var(--bg), transparent);
}

.detail-hero-inner {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
}

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

.detail-poster {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

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

.detail-info {
  color: #fff;
}

.detail-info h1 {
  color: #fff;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1.08;
}

.detail-one-line {
  max-width: 780px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  line-height: 1.8;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.detail-meta span {
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 900;
  padding: 8px 12px;
}

.detail-content {
  margin-top: 36px;
}

.player-panel {
  padding: 26px;
}

.compact-heading {
  margin-bottom: 18px;
}

.video-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  background: #111827;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.movie-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #111827;
}

.play-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  color: #fff;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.22), rgba(17, 24, 39, 0.68));
  font-size: 18px;
  font-weight: 950;
}

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

.play-icon {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #f59e0b, #f97316, #e11d48);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.story-panel {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 22px;
  margin-top: 28px;
}

.story-card {
  padding: 28px;
}

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

.story-card p {
  margin: 14px 0 0;
  color: #4b5563;
  font-size: 16px;
  line-height: 1.95;
}

.meta-card {
  grid-column: span 2;
}

.meta-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 16px 0 0;
}

.meta-card dl div {
  border-radius: 16px;
  background: #fff7ed;
  padding: 14px 16px;
}

.meta-card dt {
  color: #9a3412;
  font-size: 12px;
  font-weight: 900;
}

.meta-card dd {
  margin: 5px 0 0;
  color: #111827;
  font-weight: 800;
}

.related-section {
  margin-bottom: 60px;
}

.site-footer {
  margin-top: 70px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(254, 243, 199, 0.78), rgba(255, 237, 213, 0.95));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr;
  gap: 36px;
  padding: 44px 0;
}

.footer-logo {
  margin-bottom: 12px;
  color: #9a3412;
  font-size: 24px;
  font-weight: 950;
}

.site-footer p,
.site-footer a,
.footer-bottom {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.8;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: #111827;
  font-size: 17px;
  font-weight: 950;
}

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

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

.footer-links a {
  text-decoration: none;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(251, 146, 60, 0.28);
  padding: 20px 0 26px;
}

.footer-bottom button {
  min-height: 38px;
  padding: 0 16px;
}

[hidden] {
  display: none !important;
}

@media (max-width: 1180px) {
  .movie-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

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

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

  .menu-button {
    display: inline-flex;
  }

  .hero-slide,
  .two-column-hero,
  .detail-layout,
  .story-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-slide {
    align-content: center;
    gap: 28px;
    padding-top: 54px;
  }

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

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

  .search-box {
    grid-column: span 2;
  }

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

  .meta-card {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 22px, 1180px);
  }

  .brand-title {
    font-size: 20px;
  }

  .brand-subtitle {
    display: none;
  }

  .hero-section,
  .hero-stage {
    min-height: 720px;
  }

  .hero-slide {
    padding: 42px 18px 86px;
  }

  .hero-content h1,
  .detail-info h1,
  .page-hero h1 {
    letter-spacing: -0.05em;
  }

  .intro-panel,
  .section-heading,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .filter-form,
  .movie-grid,
  .category-grid,
  .category-overview-grid,
  .mini-grid,
  .meta-card dl {
    grid-template-columns: 1fr 1fr;
  }

  .filter-form label,
  .filter-reset,
  .search-box {
    grid-column: span 2;
  }

  .content-section,
  .filter-panel,
  .intro-panel,
  .player-panel,
  .story-card {
    padding: 18px;
    border-radius: 20px;
  }

  .movie-body {
    padding: 12px;
  }

  .movie-title {
    font-size: 14px;
  }

  .movie-meta-line,
  .movie-tags,
  .movie-desc {
    font-size: 11px;
  }

  .detail-poster {
    width: min(260px, 76vw);
  }

  .video-shell {
    border-radius: 18px;
  }

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