/* Generated static movie site styles. */
:root {
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-200: #fde68a;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --orange-600: #ea580c;
  --red-700: #b91c1c;
  --stone-950: #0c0a09;
  --text-main: #1f2937;
  --text-soft: #6b7280;
  --card-bg: rgba(255, 255, 255, 0.86);
  --shadow-soft: 0 22px 55px rgba(120, 53, 15, 0.13);
  --shadow-strong: 0 30px 80px rgba(69, 26, 3, 0.25);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.site-body {
  margin: 0;
  color: var(--text-main);
  background:
    radial-gradient(circle at top left, rgba(253, 186, 116, 0.32), transparent 32rem),
    linear-gradient(135deg, #fffbeb 0%, #fff7ed 52%, #fef2f2 100%);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

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

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

.image-hidden {
  display: none !important;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 100%;
  color: #fff7ed;
  background: linear-gradient(90deg, rgba(120, 53, 15, 0.86), rgba(154, 52, 18, 0.86));
  border-bottom: 1px solid rgba(254, 215, 170, 0.28);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.28s ease, background 0.28s ease;
}

.site-header.is-scrolled {
  background: linear-gradient(90deg, rgba(69, 26, 3, 0.96), rgba(124, 45, 18, 0.96));
  box-shadow: 0 18px 45px rgba(69, 26, 3, 0.25);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.brand-icon,
.footer-brand span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #78350f;
  background: linear-gradient(135deg, #fde68a, #fb923c);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(251, 191, 36, 0.32);
}

.brand-text {
  font-size: clamp(18px, 2vw, 24px);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.nav-link {
  position: relative;
  font-weight: 700;
  color: rgba(255, 247, 237, 0.82);
  transition: color 0.24s ease;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, #fde68a, #fb923c);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #fff7ed;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.header-search,
.mobile-search {
  display: flex;
  align-items: center;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(253, 230, 138, 0.3);
  border-radius: 999px;
}

.header-search input,
.mobile-search input {
  width: 230px;
  padding: 10px 14px;
  color: #fff7ed;
  background: transparent;
  border: 0;
  outline: 0;
}

.header-search input::placeholder,
.mobile-search input::placeholder {
  color: rgba(253, 230, 138, 0.74);
}

.header-search button,
.mobile-search button {
  padding: 9px 14px;
  color: #fff7ed;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.16);
  border: 0;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  color: #fff7ed;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.12);
  border: 0;
  border-radius: 12px;
}

.mobile-panel {
  display: none;
  padding: 16px;
  background: rgba(69, 26, 3, 0.96);
  border-top: 1px solid rgba(253, 230, 138, 0.18);
}

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

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

.mobile-panel .nav-link {
  padding: 10px 12px;
  border-radius: 12px;
}

.site-main {
  min-height: 60vh;
  padding-top: 72px;
}

.hero-slider {
  position: relative;
  height: min(80vh, 780px);
  min-height: 600px;
  overflow: hidden;
  color: #fff;
  background: #1c1917;
}

.hero-slides,
.hero-slide,
.hero-bg-link,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-slide {
  display: grid;
  align-items: end;
  padding: 0 max(24px, calc((100vw - 1180px) / 2)) 96px;
  opacity: 0;
  pointer-events: none;
  background-image: var(--hero-image), linear-gradient(135deg, #451a03, #7c2d12);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transform: scale(1.035);
  transition: opacity 0.8s ease, transform 1.1s ease;
}

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

.hero-slide:hover {
  transform: scale(1.025);
}

.hero-bg-link {
  z-index: 1;
}

.hero-shade {
  z-index: 2;
  background:
    radial-gradient(circle at 70% 20%, rgba(251, 191, 36, 0.22), transparent 30rem),
    linear-gradient(0deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.46) 50%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(90deg, rgba(69, 26, 3, 0.7), transparent 62%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(760px, 100%);
  animation: fade-up 0.75s ease both;
}

.hero-tags,
.detail-meta,
.movie-meta,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
}

.hero-tags span,
.detail-meta span,
.tag-row span {
  padding: 6px 11px;
  font-size: 13px;
  line-height: 1;
  border-radius: 999px;
}

.hero-tags span {
  color: #fff7ed;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
}

.hero-tags span:first-child {
  background: rgba(217, 119, 6, 0.9);
}

.hero-content h1 {
  margin: 18px 0 12px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.02;
  text-shadow: 0 22px 55px rgba(0, 0, 0, 0.45);
}

.hero-one-line {
  max-width: 780px;
  margin: 0 0 14px;
  color: #fde68a;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  text-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

.hero-summary {
  display: -webkit-box;
  max-width: 760px;
  margin: 0 0 16px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 1.75;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: rgba(255, 255, 255, 0.82);
}

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

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

.btn-primary {
  color: #fff7ed;
  background: linear-gradient(90deg, var(--amber-600), var(--orange-600));
  box-shadow: 0 18px 40px rgba(234, 88, 12, 0.35);
}

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

.btn-glass {
  color: #fff7ed;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(12px);
}

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 6;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #fff;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity 0.22s ease, background 0.22s ease;
  backdrop-filter: blur(12px);
}

.hero-slider:hover .hero-control {
  opacity: 1;
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

.hero-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.54);
  border: 0;
  border-radius: 999px;
  transition: width 0.22s ease, background 0.22s ease;
}

.hero-dots button.is-active {
  width: 34px;
  background: #fff7ed;
}

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

.soft-panel {
  width: 100%;
  max-width: none;
  padding-right: max(16px, calc((100vw - 1180px) / 2));
  padding-left: max(16px, calc((100vw - 1180px) / 2));
  background: linear-gradient(180deg, rgba(255, 251, 235, 0.76), rgba(255, 247, 237, 0.32));
}

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

.section-head h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  color: #111827;
}

.section-head p {
  margin: 0;
  color: var(--text-soft);
}

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

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

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

.movie-card {
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid rgba(251, 191, 36, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  backdrop-filter: blur(12px);
}

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

.poster-frame {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 20%, rgba(251, 191, 36, 0.36), transparent 42%),
    linear-gradient(135deg, #78350f, #9a3412 48%, #1c1917);
}

.poster-frame::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.52));
}

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

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

.poster-type,
.poster-year,
.card-rank {
  position: absolute;
  z-index: 2;
  padding: 5px 9px;
  color: #fff7ed;
  font-size: 12px;
  line-height: 1;
  background: rgba(0, 0, 0, 0.62);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.poster-type {
  top: 10px;
  left: 10px;
  background: rgba(217, 119, 6, 0.9);
}

.poster-year {
  right: 10px;
  bottom: 10px;
}

.card-rank {
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  min-width: 34px;
  height: 34px;
  padding: 0;
  font-weight: 900;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
}

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

.movie-card h3 {
  display: -webkit-box;
  min-height: 48px;
  margin: 0 0 8px;
  overflow: hidden;
  color: #111827;
  font-size: 18px;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

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

.movie-card p {
  display: -webkit-box;
  min-height: 46px;
  margin: 0 0 12px;
  overflow: hidden;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.movie-meta {
  justify-content: space-between;
  margin-bottom: 10px;
  color: #78716c;
  font-size: 13px;
}

.tag-row span {
  color: #92400e;
  background: rgba(253, 230, 138, 0.56);
}

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

.movie-card-horizontal {
  display: grid;
  grid-template-columns: 132px 1fr;
  min-height: 176px;
}

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

.movie-card-horizontal .movie-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: #fff7ed;
  background:
    radial-gradient(circle at 72% 18%, rgba(251, 191, 36, 0.32), transparent 30rem),
    linear-gradient(135deg, #451a03, #7c2d12 48%, #1c1917);
}

.compact-hero {
  padding: 90px max(20px, calc((100vw - 1180px) / 2)) 70px;
}

.compact-hero > div {
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: #fde68a;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-hero h1,
.detail-info h1 {
  margin: 0 0 16px;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.08;
}

.page-hero p:last-child {
  margin: 0;
  color: rgba(255, 247, 237, 0.82);
  font-size: 18px;
  line-height: 1.75;
}

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

.category-tile {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(251, 191, 36, 0.18);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.category-tile span {
  color: var(--amber-600);
  font-weight: 800;
}

.category-tile strong {
  font-size: 24px;
  color: #111827;
}

.category-tile em {
  color: var(--text-soft);
  font-style: normal;
}

.filter-bar,
.search-panel {
  display: grid;
  grid-template-columns: 1fr auto auto auto auto;
  gap: 12px;
  align-items: center;
  padding: 16px;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(251, 191, 36, 0.18);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.filter-bar input,
.filter-bar select,
.search-panel input,
.search-panel select,
.search-panel button {
  min-height: 46px;
  padding: 0 14px;
  background: #fff;
  border: 1px solid #fed7aa;
  border-radius: 14px;
  outline: 0;
}

.filter-bar input:focus,
.filter-bar select:focus,
.search-panel input:focus,
.search-panel select:focus {
  border-color: var(--amber-500);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.13);
}

.search-panel button {
  color: #fff7ed;
  cursor: pointer;
  background: linear-gradient(90deg, var(--amber-600), var(--orange-600));
  border: 0;
  font-weight: 900;
}

.search-state {
  display: flex;
  justify-content: space-between;
  margin: 8px 0 24px;
  color: var(--text-soft);
}

.detail-hero {
  position: relative;
  min-height: 650px;
  padding: 92px max(20px, calc((100vw - 1180px) / 2)) 70px;
  color: #fff7ed;
  background-image: var(--detail-bg), linear-gradient(135deg, #451a03, #1c1917);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.detail-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.7)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent 45%);
  backdrop-filter: blur(2px);
}

.detail-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 44px;
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.detail-poster {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, #78350f, #1c1917);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

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

.detail-one-line {
  margin: 0 0 18px;
  color: #fde68a;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  line-height: 1.6;
}

.detail-meta span {
  color: rgba(255, 247, 237, 0.88);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.detail-tags {
  margin: 20px 0 28px;
}

.player-section {
  padding-top: 56px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(circle at center, rgba(251, 191, 36, 0.16), transparent 38%),
    #0c0a09;
  border: 1px solid rgba(251, 191, 36, 0.25);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-strong);
}

.movie-video {
  width: 100%;
  height: 100%;
  background: #000;
}

.player-start {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  color: #fff7ed;
  cursor: pointer;
  background:
    radial-gradient(circle at center, rgba(217, 119, 6, 0.24), rgba(0, 0, 0, 0.72)),
    rgba(0, 0, 0, 0.38);
  border: 0;
  transition: opacity 0.25s ease;
}

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

.play-circle {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  padding-left: 5px;
  color: #78350f;
  font-size: 34px;
  background: linear-gradient(135deg, #fde68a, #fb923c);
  border-radius: 999px;
  box-shadow: 0 18px 50px rgba(251, 191, 36, 0.35);
}

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

.player-start small,
.player-message {
  color: rgba(255, 247, 237, 0.75);
}

.player-message {
  position: absolute;
  right: 18px;
  bottom: 14px;
  left: 18px;
  z-index: 2;
  text-align: center;
}

.detail-text {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 24px;
}

.detail-text article,
.info-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(251, 191, 36, 0.18);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.detail-text h2,
.info-card h2 {
  margin: 0 0 14px;
  color: #111827;
  font-size: 28px;
}

.detail-text p,
.info-card p {
  margin: 0;
  color: #4b5563;
  line-height: 1.9;
}

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

.stat-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.stat-list li {
  display: flex;
  justify-content: space-between;
  padding: 12px 14px;
  background: #fffbeb;
  border-radius: 12px;
}

.site-footer {
  color: rgba(255, 247, 237, 0.82);
  background: linear-gradient(180deg, #451a03, #0c0a09);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
}

.footer-brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: #fff7ed;
  font-size: 22px;
  font-weight: 900;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: #fff7ed;
  font-size: 18px;
}

.site-footer p {
  color: rgba(255, 247, 237, 0.68);
  line-height: 1.8;
}

.site-footer a {
  display: block;
  margin: 9px 0;
  color: rgba(255, 247, 237, 0.72);
}

.site-footer a:hover {
  color: #fde68a;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 28px;
  margin-top: 34px;
  border-top: 1px solid rgba(253, 230, 138, 0.18);
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

  .ranking-grid,
  .detail-text,
  .info-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .header-inner {
    width: min(100% - 24px, 1180px);
    height: 64px;
  }

  .site-main {
    padding-top: 64px;
  }

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

  .hero-slider {
    min-height: 620px;
  }

  .hero-slide {
    padding: 0 18px 82px;
  }

  .hero-control {
    display: none;
  }

  .hero-summary {
    -webkit-line-clamp: 3;
  }

  .content-section {
    width: min(100% - 24px, 1180px);
    padding: 46px 0;
  }

  .soft-panel {
    width: 100%;
    padding-right: 12px;
    padding-left: 12px;
  }

  .section-head {
    display: block;
  }

  .section-more {
    display: inline-flex;
    margin-top: 12px;
  }

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

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

  .movie-card h3 {
    min-height: 42px;
    font-size: 16px;
  }

  .movie-card p {
    min-height: auto;
  }

  .movie-card-horizontal {
    grid-template-columns: 104px 1fr;
    min-height: 148px;
  }

  .detail-hero {
    min-height: auto;
    padding: 72px 16px 42px;
  }

  .detail-hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .detail-poster {
    width: min(260px, 74vw);
    margin: 0 auto;
  }

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

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

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

@media (max-width: 480px) {
  .movie-grid,
  .featured-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

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

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