:root {
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --gray-950: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --orange-600: #ea580c;
  --orange-500: #f97316;
  --orange-400: #fb923c;
  --red-600: #dc2626;
  --red-500: #ef4444;
  --blue-500: #3b82f6;
  --teal-500: #14b8a6;
  --purple-500: #a855f7;
  --pink-500: #ec4899;
  --green-500: #22c55e;
  --shadow-soft: 0 20px 50px rgba(15, 23, 42, 0.12);
  --shadow-card: 0 12px 30px rgba(15, 23, 42, 0.1);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--gray-800);
  background: linear-gradient(135deg, #f9fafb 0%, #eef2ff 46%, #f3f4f6 100%);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  background: linear-gradient(135deg, #111827, #374151);
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, var(--slate-950), var(--slate-900) 45%, var(--slate-800));
  box-shadow: 0 18px 35px rgba(2, 6, 23, 0.28);
}

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

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  font-size: 18px;
  background: linear-gradient(135deg, var(--orange-500), var(--red-600));
  box-shadow: 0 12px 24px rgba(249, 115, 22, 0.35);
  transition: transform 0.25s ease;
}

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

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong {
  line-height: 1;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, var(--orange-400), var(--red-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-text small {
  font-size: 12px;
  color: #9ca3af;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-link {
  color: var(--gray-300);
  font-weight: 650;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--orange-400);
}

.top-search,
.mobile-search {
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(51, 65, 85, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.top-search input,
.mobile-search input {
  width: 220px;
  border: 0;
  outline: 0;
  color: #ffffff;
  background: transparent;
  padding: 11px 13px;
}

.top-search input::placeholder,
.mobile-search input::placeholder {
  color: #9ca3af;
}

.top-search button,
.mobile-search button {
  border: 0;
  min-width: 42px;
  height: 42px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange-500), var(--red-600));
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #ffffff;
}

.mobile-panel {
  display: none;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  background: var(--slate-900);
  padding: 16px;
}

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

.mobile-search {
  width: min(100%, 520px);
  margin: 0 auto 12px;
}

.mobile-search input {
  width: 100%;
}

.mobile-links {
  display: grid;
  gap: 4px;
  width: min(100%, 520px);
  margin: 0 auto;
}

.mobile-link {
  padding: 11px 12px;
  border-radius: 12px;
  color: var(--gray-300);
  font-weight: 650;
}

.mobile-link:hover,
.mobile-link.active {
  color: var(--orange-400);
  background: rgba(255, 255, 255, 0.06);
}

.page-shell {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  padding: 30px 0 64px;
}

.home-shell {
  display: grid;
  gap: 42px;
}

.hero-slider {
  position: relative;
  min-height: clamp(420px, 52vw, 640px);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--slate-950);
  box-shadow: var(--shadow-soft);
}

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

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

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

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.95), rgba(2, 6, 23, 0.52) 48%, rgba(2, 6, 23, 0.15));
}

.hero-content {
  position: absolute;
  left: clamp(22px, 5vw, 64px);
  right: clamp(22px, 8vw, 96px);
  bottom: clamp(36px, 7vw, 82px);
  max-width: 760px;
  color: #ffffff;
}

.hero-badge,
.section-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 6px;
  border-radius: 999px;
  padding: 8px 14px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 760;
  background: linear-gradient(90deg, var(--orange-500), var(--red-500));
  box-shadow: 0 10px 22px rgba(249, 115, 22, 0.25);
}

.section-label {
  margin-bottom: 10px;
}

.hero-content h1,
.hero-content h2 {
  margin: 16px 0 8px;
  font-size: clamp(34px, 6vw, 66px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.hero-kicker {
  margin: 0 0 10px;
  color: var(--orange-400);
  font-weight: 760;
}

.hero-content p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(15px, 1.8vw, 19px);
}

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

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

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

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange-500), var(--red-600));
  box-shadow: 0 14px 28px rgba(249, 115, 22, 0.28);
}

.btn-ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  font-size: 32px;
  line-height: 1;
  background: rgba(2, 6, 23, 0.48);
  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.04);
}

.hero-prev {
  left: 18px;
}

.hero-next {
  right: 18px;
}

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

.hero-dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dots button.is-active {
  width: 34px;
  background: var(--orange-500);
}

.page-hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: clamp(36px, 6vw, 72px);
  color: #ffffff;
  background:
    radial-gradient(circle at 18% 12%, rgba(249, 115, 22, 0.55), transparent 32%),
    linear-gradient(135deg, var(--slate-950), var(--slate-800));
  box-shadow: var(--shadow-soft);
}

.compact-hero {
  min-height: 260px;
  display: grid;
  align-content: center;
  margin-bottom: 32px;
}

.page-hero h1 {
  margin: 18px 0 12px;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.08;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.section-panel {
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 38px);
  box-shadow: var(--shadow-card);
}

.white-panel {
  background: rgba(255, 255, 255, 0.92);
}

.gradient-blue {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue-500), var(--teal-500));
}

.gradient-purple {
  color: #ffffff;
  background: linear-gradient(135deg, var(--purple-500), var(--pink-500));
}

.gradient-green {
  color: #ffffff;
  background: linear-gradient(135deg, var(--green-500), var(--blue-500));
}

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

.section-heading h2 {
  margin: 0;
  color: currentColor;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.18;
}

.section-heading p {
  max-width: 680px;
  margin: 8px 0 0;
  color: inherit;
  opacity: 0.78;
}

.white-panel .section-heading h2 {
  color: var(--gray-800);
}

.white-panel .section-heading p {
  color: var(--gray-600);
}

.section-more {
  min-width: max-content;
  color: currentColor;
  font-weight: 760;
  opacity: 0.82;
}

.white-panel .section-more {
  color: var(--orange-600);
}

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

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

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

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

.movie-card {
  overflow: hidden;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.09);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.16);
}

.card-link {
  display: block;
  height: 100%;
}

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

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

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

.poster-wide {
  aspect-ratio: 16 / 9;
}

.poster-side {
  width: 210px;
  height: 138px;
  flex: 0 0 210px;
  aspect-ratio: auto;
}

.card-year,
.card-category,
.rank-badge {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 780;
  padding: 6px 10px;
}

.card-year {
  right: 10px;
  bottom: 10px;
  background: rgba(2, 6, 23, 0.76);
}

.card-category {
  left: 10px;
  top: 10px;
  background: linear-gradient(90deg, var(--orange-500), var(--red-500));
}

.card-category.soft {
  position: static;
  display: inline-flex;
  margin-top: 12px;
  color: var(--orange-600);
  background: #ffedd5;
}

.rank-badge {
  left: 10px;
  bottom: 10px;
  background: linear-gradient(90deg, var(--purple-500), var(--pink-500));
}

.play-hover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 32px;
  opacity: 0;
  background: rgba(2, 6, 23, 0.42);
  transition: opacity 0.25s ease;
}

.movie-card:hover .play-hover {
  opacity: 1;
}

.card-body {
  padding: 16px;
}

.card-body h3 {
  margin: 0 0 10px;
  color: var(--gray-800);
  font-size: 17px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

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

.card-body p {
  margin: 0 0 14px;
  color: var(--gray-600);
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--gray-500);
  font-size: 13px;
}

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

.tag-row span,
.detail-tags span {
  display: inline-flex;
  border-radius: 999px;
  padding: 5px 9px;
  color: var(--gray-700);
  background: var(--gray-100);
  font-size: 12px;
}

.movie-card-horizontal {
  border-radius: 14px;
}

.movie-card-horizontal .card-link {
  display: flex;
  gap: 0;
}

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

.rank-list,
.stack-list {
  display: grid;
  gap: 16px;
}

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

.category-tile {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border-radius: 18px;
  background: var(--slate-900);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.18);
}

.category-tile img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  opacity: 0.72;
  transition: transform 0.45s ease, opacity 0.25s ease;
}

.category-tile:hover img {
  opacity: 0.52;
}

.category-tile span,
.category-tile small {
  position: absolute;
  left: 16px;
  right: 16px;
  z-index: 2;
  color: #ffffff;
}

.category-tile span {
  bottom: 58px;
  font-size: 19px;
  font-weight: 800;
}

.category-tile small {
  bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.category-overview-list {
  display: grid;
  gap: 26px;
}

.category-overview-card {
  border-radius: var(--radius-xl);
  padding: 26px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-card);
}

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

.category-overview-head h2 {
  margin: 0;
  font-size: 28px;
}

.category-overview-head p {
  margin: 8px 0 0;
  color: var(--gray-600);
}

.filter-toolbar {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

.filter-toolbar input {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  outline: 0;
  padding: 0 16px;
  color: var(--gray-800);
  background: #ffffff;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.filter-toolbar input:focus {
  border-color: var(--orange-500);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.14);
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-chips button {
  border: 0;
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--gray-700);
  background: var(--gray-100);
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.filter-chips button:hover,
.filter-chips button.is-active {
  color: #ffffff;
  background: linear-gradient(90deg, var(--orange-500), var(--red-500));
  transform: translateY(-1px);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--gray-500);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--orange-600);
  font-weight: 700;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) 340px;
  gap: 26px;
  align-items: start;
}

.detail-main {
  display: grid;
  gap: 22px;
}

.player-card,
.detail-card,
.side-card,
.related-panel {
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.movie-player {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #000000;
}

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

.player-cover {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-content: center;
  gap: 10px;
  border: 0;
  color: #ffffff;
  background: rgba(2, 6, 23, 0.35);
  transition: opacity 0.25s ease, visibility 0.25s ease, background 0.25s ease;
}

.player-cover:hover {
  background: rgba(2, 6, 23, 0.48);
}

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

.player-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 999px;
  color: #ffffff;
  font-size: 30px;
  background: linear-gradient(135deg, var(--orange-500), var(--red-600));
  box-shadow: 0 18px 34px rgba(249, 115, 22, 0.35);
}

.detail-card {
  padding: clamp(22px, 4vw, 34px);
}

.detail-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.detail-card h1 {
  margin: 10px 0 0;
  color: var(--gray-800);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.14;
}

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

.detail-meta span {
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--gray-700);
  background: var(--gray-100);
  font-weight: 700;
  font-size: 13px;
}

.text-block {
  margin-top: 24px;
}

.text-block h2 {
  margin: 0 0 10px;
  color: var(--gray-800);
  font-size: 21px;
}

.text-block p {
  margin: 0;
  color: var(--gray-600);
  white-space: pre-line;
}

.review-block {
  border-radius: 18px;
  padding: 22px;
  background: linear-gradient(135deg, #fff7ed, #fef2f2);
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.detail-side {
  position: sticky;
  top: 94px;
  display: grid;
  gap: 20px;
}

.side-card {
  padding: 20px;
}

.poster-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 16px;
}

.poster-card h2,
.side-card h2 {
  margin: 0 0 10px;
  font-size: 20px;
}

.poster-card p {
  margin: 0;
  color: var(--gray-600);
  font-size: 14px;
}

.side-grid {
  display: grid;
  gap: 14px;
}

.side-grid .movie-card .poster {
  aspect-ratio: 16 / 9;
}

.side-grid .movie-card .card-body p,
.side-grid .movie-card .card-category.soft,
.side-grid .movie-card .card-meta span:nth-child(2) {
  display: none;
}

.site-footer {
  color: var(--gray-300);
  background: linear-gradient(180deg, var(--slate-900), var(--slate-950));
}

.footer-wrap {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  padding: 46px 0;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 30px;
}

.footer-brand p,
.footer-col p {
  color: #9ca3af;
  margin: 16px 0 0;
}

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

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer-col a {
  color: #9ca3af;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--orange-400);
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.15);
  padding: 18px 16px;
  text-align: center;
  color: #9ca3af;
  font-size: 14px;
}

.is-hidden-card {
  display: none !important;
}

@media (max-width: 1100px) {
  .movie-grid,
  .search-grid,
  .category-movie-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .detail-side {
    position: static;
  }

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

@media (max-width: 860px) {
  .nav-links,
  .top-search {
    display: none;
  }

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

  .brand-text strong {
    font-size: 18px;
  }

  .page-shell {
    width: min(100% - 24px, var(--container));
    padding-top: 20px;
  }

  .hero-slider {
    min-height: 540px;
    border-radius: 20px;
  }

  .hero-arrow {
    display: none;
  }

  .section-heading,
  .category-overview-head,
  .detail-title-row {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .movie-card-horizontal .card-link {
    flex-direction: row;
  }

  .poster-side {
    width: 42%;
    height: auto;
    min-height: 126px;
  }
}

@media (max-width: 560px) {
  .nav-wrap {
    width: min(100% - 24px, var(--container));
  }

  .brand-text small {
    display: none;
  }

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

  .hero-content {
    left: 18px;
    right: 18px;
    bottom: 44px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .section-panel,
  .category-overview-card,
  .detail-card,
  .side-card {
    padding: 18px;
    border-radius: 18px;
  }

  .movie-grid,
  .large-grid,
  .mini-grid,
  .search-grid,
  .category-movie-grid {
    grid-template-columns: 1fr;
  }

  .movie-card-horizontal .card-link {
    flex-direction: column;
  }

  .poster-side {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

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