:root {
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-200: #fde68a;
  --amber-400: #f59e0b;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --amber-800: #92400e;
  --amber-900: #78350f;
  --stone-50: #fafaf9;
  --stone-100: #f5f5f4;
  --stone-200: #e7e5e4;
  --stone-300: #d6d3d1;
  --stone-400: #a8a29e;
  --stone-500: #78716c;
  --stone-600: #57534e;
  --stone-700: #44403c;
  --stone-800: #292524;
  --stone-900: #1c1917;
  --shadow-soft: 0 16px 50px rgba(28, 25, 23, 0.12);
  --shadow-card: 0 12px 36px rgba(28, 25, 23, 0.09);
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--stone-800);
  background: var(--stone-50);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "PingFang SC", 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: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(120, 53, 15, 0.98);
  border-bottom: 1px solid rgba(253, 230, 138, 0.16);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(120, 53, 15, 0.94);
  box-shadow: 0 16px 40px rgba(28, 25, 23, 0.22);
}

.site-nav {
  width: min(100% - 32px, 1280px);
  height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand {
  color: var(--amber-50);
  font-size: 21px;
}

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--amber-900);
  background: linear-gradient(135deg, var(--amber-100), var(--amber-400));
  border-radius: 999px;
  box-shadow: 0 0 28px rgba(245, 158, 11, 0.48);
}

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

.nav-link {
  color: var(--amber-100);
  padding: 9px 13px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 650;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
  background: rgba(146, 64, 14, 0.85);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  padding: 10px;
  background: rgba(255, 251, 235, 0.08);
  border-radius: 12px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--amber-100);
  border-radius: 999px;
}

.mobile-menu {
  display: none;
  width: min(100% - 32px, 1280px);
  margin: 0 auto 12px;
  padding: 8px;
  background: rgba(146, 64, 14, 0.88);
  border: 1px solid rgba(253, 230, 138, 0.18);
  border-radius: 16px;
}

.mobile-menu.open {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.mobile-link {
  color: var(--amber-100);
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 650;
}

.mobile-link.active,
.mobile-link:hover {
  color: #fff;
  background: rgba(120, 53, 15, 0.72);
}

main {
  min-height: 70vh;
  padding-top: 68px;
}

.hero-carousel {
  position: relative;
  height: min(640px, calc(100vh - 24px));
  min-height: 520px;
  overflow: hidden;
  background: var(--stone-900);
}

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

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-slide.active .hero-image {
  animation: heroZoom 8s ease forwards;
}

@keyframes heroZoom {
  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1.01);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 34%, rgba(245, 158, 11, 0.32), transparent 36%),
    linear-gradient(90deg, rgba(28, 25, 23, 0.9) 0%, rgba(28, 25, 23, 0.68) 46%, rgba(28, 25, 23, 0.2) 100%),
    linear-gradient(0deg, rgba(28, 25, 23, 0.82), transparent 54%);
}

.hero-content {
  position: absolute;
  left: max(24px, calc((100vw - 1280px) / 2 + 24px));
  bottom: 105px;
  width: min(680px, calc(100% - 48px));
  color: #fff;
}

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

.hero-tags span,
.detail-tags span,
.tag-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 10px;
  color: var(--amber-50);
  background: rgba(217, 119, 6, 0.82);
  border: 1px solid rgba(253, 230, 138, 0.24);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.hero-content h1 {
  margin: 18px 0 16px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.4);
}

.hero-content p {
  width: min(100%, 620px);
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--amber-600), var(--amber-800));
  box-shadow: 0 12px 28px rgba(217, 119, 6, 0.34);
}

.btn.secondary {
  color: var(--amber-900);
  background: var(--amber-50);
}

.btn.ghost {
  color: var(--amber-50);
  background: rgba(255, 251, 235, 0.12);
  border: 1px solid rgba(255, 251, 235, 0.24);
}

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 251, 235, 0.26);
  color: #fff;
  background: rgba(28, 25, 23, 0.36);
  border-radius: 999px;
  font-size: 36px;
  line-height: 1;
  transform: translateY(-50%);
}

.hero-control:hover {
  background: rgba(217, 119, 6, 0.75);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

.hero-dots {
  position: absolute;
  right: max(24px, calc((100vw - 1280px) / 2 + 24px));
  bottom: 36px;
  z-index: 3;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 34px;
  height: 5px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
}

.hero-dot.active {
  background: var(--amber-400);
}

.hero-search {
  position: absolute;
  left: max(24px, calc((100vw - 1280px) / 2 + 24px));
  bottom: 34px;
  z-index: 3;
  width: min(520px, calc(100% - 180px));
}

.site-search {
  display: flex;
  gap: 10px;
  padding: 8px;
  background: rgba(255, 251, 235, 0.95);
  border: 1px solid rgba(253, 230, 138, 0.5);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}

.site-search input {
  flex: 1;
  min-width: 0;
  height: 42px;
  border: 0;
  outline: 0;
  padding: 0 14px;
  color: var(--stone-800);
  background: transparent;
}

.site-search button {
  height: 42px;
  border: 0;
  padding: 0 20px;
  color: #fff;
  background: var(--amber-700);
  border-radius: 999px;
  font-weight: 800;
}

.section {
  padding: 64px 0;
}

.section.soft {
  background: linear-gradient(180deg, var(--stone-50), #fff);
}

.section.amber {
  background: linear-gradient(180deg, var(--amber-50), #fff);
}

.section.gray {
  background: var(--stone-100);
}

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

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

.section-head h2 {
  margin: 0 0 6px;
  color: var(--stone-800);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
}

.section-head p {
  margin: 0;
  color: var(--stone-600);
}

.section-more {
  color: var(--amber-700);
  font-weight: 800;
  white-space: nowrap;
}

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

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

.movie-card {
  position: relative;
  display: block;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(231, 229, 228, 0.86);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 28px rgba(28, 25, 23, 0.06);
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  border-color: rgba(217, 119, 6, 0.34);
  box-shadow: var(--shadow-card);
}

.movie-thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--stone-200);
}

.movie-thumb img,
.large-poster img,
.category-cover img,
.detail-poster img,
.ranking-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.category-pill,
.duration,
.rank-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 8px;
  color: #fff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.category-pill {
  left: 10px;
  top: 10px;
  background: var(--amber-600);
}

.duration {
  right: 10px;
  bottom: 10px;
  background: rgba(0, 0, 0, 0.72);
}

.rank-badge {
  left: 10px;
  bottom: 10px;
  background: linear-gradient(135deg, var(--amber-400), var(--amber-800));
}

.movie-info {
  padding: 15px;
}

.movie-info h3 {
  min-height: 48px;
  margin: 0 0 8px;
  color: var(--stone-800);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 800;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-info p {
  min-height: 44px;
  margin: 0 0 12px;
  color: var(--stone-500);
  font-size: 14px;
  line-height: 1.55;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--stone-400);
  font-size: 12px;
  font-weight: 700;
}

.movie-card-horizontal {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 0;
}

.horizontal-thumb {
  width: 180px;
  height: 118px;
  aspect-ratio: auto;
}

.movie-card-horizontal .movie-info {
  padding: 14px 16px;
}

.movie-card-horizontal .movie-info h3 {
  min-height: auto;
}

.movie-card-large {
  min-height: 100%;
}

.large-poster {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.large-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(28, 25, 23, 0.88), rgba(28, 25, 23, 0.05));
}

.large-copy {
  position: absolute;
  inset: auto 22px 22px;
  color: #fff;
}

.large-copy h3 {
  margin: 12px 0 8px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.16;
}

.large-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

.chip {
  display: inline-flex;
  padding: 5px 10px;
  color: #fff;
  background: var(--amber-600);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.feature-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 22px;
}

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

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

.category-card {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  color: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.category-cover {
  position: absolute;
  inset: 0;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 24%, rgba(245, 158, 11, 0.3), transparent 34%),
    linear-gradient(0deg, rgba(28, 25, 23, 0.9), rgba(28, 25, 23, 0.22));
}

.category-copy {
  position: absolute;
  inset: auto 20px 20px;
  z-index: 2;
}

.category-copy h3 {
  margin: 0 0 8px;
  font-size: 24px;
}

.category-copy p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

.page-hero {
  color: #fff;
  background:
    radial-gradient(circle at 78% 24%, rgba(245, 158, 11, 0.38), transparent 28%),
    linear-gradient(135deg, var(--amber-900), var(--amber-800));
  padding: 74px 0 62px;
}

.page-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

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

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--amber-100);
  font-size: 14px;
  font-weight: 700;
}

.breadcrumbs a:hover {
  color: #fff;
}

.filter-panel {
  margin-bottom: 26px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 32px rgba(28, 25, 23, 0.05);
}

.movie-filter-form {
  display: grid;
  grid-template-columns: 1fr 160px 160px;
  gap: 12px;
}

.movie-filter-form input,
.movie-filter-form select {
  width: 100%;
  height: 44px;
  border: 1px solid var(--stone-200);
  outline: 0;
  padding: 0 12px;
  color: var(--stone-800);
  background: var(--stone-50);
  border-radius: 12px;
}

.empty-state {
  display: none;
  padding: 40px;
  text-align: center;
  color: var(--stone-500);
  background: #fff;
  border-radius: var(--radius-lg);
}

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

.ranking-item {
  display: grid;
  grid-template-columns: 72px 150px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 20px rgba(28, 25, 23, 0.04);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.ranking-number {
  color: var(--amber-700);
  font-size: 26px;
  font-weight: 900;
  text-align: center;
}

.ranking-cover {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 12px;
}

.ranking-copy h2 {
  margin: 0 0 6px;
  font-size: 20px;
  line-height: 1.3;
}

.ranking-copy p {
  margin: 0 0 10px;
  color: var(--stone-600);
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ranking-action {
  color: #fff;
  background: var(--amber-700);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 800;
}

.detail-hero {
  color: #fff;
  background:
    radial-gradient(circle at 74% 26%, rgba(245, 158, 11, 0.36), transparent 30%),
    linear-gradient(135deg, rgba(28, 25, 23, 0.98), rgba(120, 53, 15, 0.94));
  padding: 52px 0 42px;
}

.detail-header {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 32px;
  align-items: end;
}

.detail-poster {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.detail-title h1 {
  margin: 14px 0 18px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.detail-title p {
  max-width: 780px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

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

.detail-meta span {
  padding: 6px 10px;
  color: var(--amber-100);
  background: rgba(255, 251, 235, 0.1);
  border: 1px solid rgba(253, 230, 138, 0.18);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

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

.player-card,
.content-card,
.related-card {
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.player-card {
  overflow: hidden;
}

.player-shell {
  position: relative;
  background: #000;
}

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

.player-cover {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 50% 50%, rgba(217, 119, 6, 0.22), transparent 30%),
    rgba(0, 0, 0, 0.38);
  cursor: pointer;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

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

.player-play {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.65);
  color: #fff;
  background: linear-gradient(135deg, var(--amber-600), var(--amber-800));
  border-radius: 999px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
  font-size: 38px;
  transform: translateZ(0);
}

.player-caption {
  padding: 18px 22px;
}

.player-caption h2 {
  margin: 0 0 8px;
  font-size: 22px;
}

.player-caption p {
  margin: 0;
  color: var(--stone-600);
}

.content-card {
  margin-top: 24px;
  padding: 26px;
}

.content-card h2 {
  margin: 0 0 12px;
  color: var(--stone-800);
  font-size: 24px;
}

.content-card p {
  margin: 0 0 22px;
  color: var(--stone-600);
}

.content-card p:last-child {
  margin-bottom: 0;
}

.related-card {
  position: sticky;
  top: 92px;
  padding: 18px;
}

.related-card h2 {
  margin: 0 0 16px;
  font-size: 22px;
}

.related-card .movie-card-horizontal {
  grid-template-columns: 118px 1fr;
}

.related-card .horizontal-thumb {
  width: 118px;
  height: 88px;
}

.related-card .movie-info {
  padding: 10px 12px;
}

.related-card .movie-info p,
.related-card .movie-meta {
  display: none;
}

.related-card .movie-info h3 {
  font-size: 14px;
  line-height: 1.4;
}

.site-footer {
  color: var(--stone-300);
  background: var(--stone-900);
  border-top: 1px solid rgba(253, 230, 138, 0.08);
}

.footer-grid {
  width: min(100% - 32px, 1280px);
  margin: 0 auto;
  padding: 50px 0 34px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr;
  gap: 36px;
}

.footer-brand {
  color: var(--amber-100);
  margin-bottom: 14px;
  font-size: 20px;
}

.site-footer p {
  margin: 0;
  color: var(--stone-400);
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--amber-100);
  font-size: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-links a {
  color: var(--stone-400);
  font-size: 14px;
}

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

.footer-bottom {
  width: min(100% - 32px, 1280px);
  margin: 0 auto;
  padding: 20px 0 28px;
  color: var(--stone-500);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  text-align: center;
}

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

  .menu-toggle {
    display: block;
  }

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

  .detail-header,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .detail-poster {
    max-width: 420px;
  }

  .related-card {
    position: static;
  }
}

@media (max-width: 800px) {
  .site-nav {
    height: 62px;
  }

  main {
    padding-top: 62px;
  }

  .hero-carousel {
    min-height: 560px;
  }

  .hero-content {
    bottom: 130px;
  }

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

  .hero-control {
    display: none;
  }

  .hero-search {
    width: calc(100% - 48px);
  }

  .site-search {
    border-radius: 18px;
  }

  .site-search button {
    padding: 0 16px;
  }

  .section {
    padding: 46px 0;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

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

  .feature-grid {
    grid-template-columns: 1fr;
  }

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

  .ranking-item {
    grid-template-columns: 48px 96px 1fr;
  }

  .ranking-action {
    display: none;
  }

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

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

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .mobile-menu.open {
    grid-template-columns: 1fr;
  }

  .hero-content {
    left: 18px;
    bottom: 138px;
    width: calc(100% - 36px);
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-actions {
    gap: 9px;
  }

  .btn {
    min-height: 40px;
    padding: 0 15px;
    font-size: 14px;
  }

  .hero-dots {
    left: 18px;
    right: auto;
    bottom: 106px;
  }

  .hero-search {
    left: 18px;
    bottom: 26px;
    width: calc(100% - 36px);
  }

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

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

  .movie-card-horizontal,
  .related-card .movie-card-horizontal {
    grid-template-columns: 116px 1fr;
  }

  .horizontal-thumb,
  .related-card .horizontal-thumb {
    width: 116px;
    height: 92px;
  }

  .detail-hero,
  .page-hero {
    padding: 42px 0 34px;
  }

  .content-card {
    padding: 20px;
  }
}
