:root {
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-300: #fcd34d;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --amber-800: #92400e;
  --amber-900: #78350f;
  --orange-500: #f97316;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --black: #000000;
  --shadow-soft: 0 18px 45px rgba(120, 53, 15, 0.12);
  --shadow-card: 0 14px 34px rgba(17, 24, 39, 0.13);
  font-family: "Inter", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, var(--amber-50), var(--white));
  color: var(--gray-800);
  min-width: 320px;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, var(--amber-900), var(--amber-800), var(--amber-900));
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.nav-wrap {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--amber-500), var(--amber-700));
  color: var(--white);
  font-weight: 900;
  font-size: 24px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
  transition: transform 0.3s ease;
}

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

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 24px;
  letter-spacing: 0.02em;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--amber-100);
  font-size: 12px;
}

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

.nav-link,
.mobile-nav-link {
  color: var(--white);
  border-radius: 12px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.nav-link {
  padding: 10px 16px;
}

.nav-link:hover,
.nav-link.active,
.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: rgba(255, 255, 255, 0.14);
  color: var(--amber-100);
}

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

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  border-radius: 99px;
}

.mobile-nav {
  display: none;
  padding: 0 16px 16px;
}

.mobile-nav.open {
  display: grid;
  gap: 8px;
}

.mobile-nav-link {
  padding: 12px 14px;
}

.hero-slider {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: var(--amber-900);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.7s ease, transform 1.4s ease;
  pointer-events: none;
}

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

.hero-image,
.detail-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 25%, rgba(245, 158, 11, 0.32), transparent 38%),
    linear-gradient(90deg, rgba(120, 53, 15, 0.94), rgba(146, 64, 14, 0.78), rgba(0, 0, 0, 0.45));
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(680px, 100%);
  color: var(--white);
  animation: fadeInUp 0.8s ease both;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: var(--amber-100);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  font-weight: 700;
}

.hero-copy h1 {
  margin: 22px 0 16px;
  font-size: clamp(38px, 7vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.hero-copy p {
  margin: 0;
  color: var(--amber-100);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.75;
}

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

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

.hero-tags span,
.detail-tags span,
.detail-genres span,
.tag-row span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}

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

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.primary-button {
  background: linear-gradient(90deg, var(--amber-500), var(--orange-500));
  color: var(--white);
  box-shadow: 0 14px 28px rgba(245, 158, 11, 0.35);
}

.primary-button:hover,
.ghost-button:hover {
  transform: translateY(-2px);
}

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

.ghost-button {
  border: 2px solid rgba(255, 255, 255, 0.78);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.ghost-button:hover {
  background: var(--white);
  color: var(--amber-900);
}

.ghost-button.light {
  border-color: rgba(255, 255, 255, 0.65);
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
  width: 34px;
  background: var(--white);
}

.content-section {
  padding: 64px 0;
}

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

.section-heading h2 {
  margin: 0;
  color: var(--gray-900);
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.2;
}

.section-heading p {
  margin: 8px 0 0;
  color: var(--gray-600);
  font-size: 16px;
  line-height: 1.7;
}

.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: 24px;
}

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

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

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

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

.movie-card {
  min-width: 0;
}

.movie-card > a {
  display: block;
  height: 100%;
  overflow: hidden;
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.movie-card > a:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.poster-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, var(--amber-100), var(--amber-500));
}

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

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

.poster-category,
.poster-score,
.rank-badge {
  position: absolute;
  z-index: 3;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.poster-category {
  left: 12px;
  top: 12px;
  background: rgba(0, 0, 0, 0.58);
}

.poster-score {
  right: 12px;
  top: 12px;
  background: var(--amber-500);
}

.rank-badge {
  left: 12px;
  bottom: 12px;
  background: linear-gradient(90deg, var(--amber-500), var(--orange-500));
}

.poster-hover {
  position: absolute;
  inset: auto 0 0;
  padding: 48px 16px 16px;
  color: var(--white);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), transparent);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.movie-card > a:hover .poster-hover {
  opacity: 1;
  transform: translateY(0);
}

.poster-hover p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}

.movie-card-body {
  display: flex;
  min-height: 180px;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
}

.movie-card.compact .movie-card-body {
  min-height: 144px;
  padding: 14px;
}

.movie-card-body h2 {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--gray-900);
  font-size: 18px;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-card.compact .movie-card-body h2 {
  font-size: 16px;
}

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

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--gray-500);
  font-size: 13px;
}

.meta-row span {
  position: relative;
}

.meta-row span + span::before {
  content: "·";
  margin-right: 8px;
  color: var(--amber-500);
}

.tag-row {
  margin-top: auto;
}

.tag-row span {
  background: var(--amber-100);
  color: var(--amber-800);
}

.warm-band {
  background: linear-gradient(90deg, var(--amber-100), #fff7ed);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 34px;
  padding: 64px 0;
}

.ranking-split {
  align-items: start;
}

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

.horizontal-card > a {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  overflow: hidden;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.horizontal-card > a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.horizontal-poster {
  position: relative;
  min-height: 142px;
  overflow: hidden;
  background: var(--amber-100);
}

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

.horizontal-poster span {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--amber-500);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.horizontal-body {
  padding: 16px;
}

.horizontal-body h2 {
  display: -webkit-box;
  margin: 0 0 8px;
  overflow: hidden;
  color: var(--gray-900);
  font-size: 18px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

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

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

.category-tile {
  display: flex;
  min-height: 122px;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 20px;
  background: linear-gradient(135deg, var(--white), var(--amber-50));
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.category-tile strong {
  color: var(--gray-900);
  font-size: 20px;
}

.category-tile span {
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.55;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.32), transparent 38%),
    linear-gradient(120deg, var(--amber-900), var(--amber-700));
  color: var(--white);
}

.small-hero,
.category-hero,
.ranking-hero {
  padding: 76px 0;
}

.page-hero p {
  margin: 0 0 10px;
  color: var(--amber-100);
  font-weight: 800;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1.1;
}

.page-hero span {
  display: block;
  max-width: 760px;
  margin-top: 16px;
  color: var(--amber-100);
  font-size: 18px;
  line-height: 1.7;
}

.filter-panel {
  display: grid;
  gap: 18px;
  margin-bottom: 30px;
  padding: 20px;
  border: 1px solid rgba(245, 158, 11, 0.22);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.filter-search {
  position: relative;
}

.filter-search span {
  position: absolute;
  top: 50%;
  left: 17px;
  transform: translateY(-50%);
  color: var(--amber-700);
  font-size: 22px;
  font-weight: 900;
}

.filter-search input {
  width: 100%;
  height: 52px;
  padding: 0 18px 0 48px;
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  outline: 0;
  color: var(--gray-900);
  background: var(--white);
}

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

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

.filter-controls label {
  display: grid;
  gap: 8px;
  color: var(--gray-600);
  font-size: 13px;
  font-weight: 800;
}

.filter-controls select {
  height: 46px;
  padding: 0 14px;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  outline: 0;
  background: var(--white);
  color: var(--gray-900);
}

.filter-empty {
  display: none;
  margin: 0;
  padding: 16px;
  border-radius: 18px;
  background: var(--amber-100);
  color: var(--amber-900);
  font-weight: 800;
}

.filter-empty.show {
  display: block;
}

.category-overview-list {
  display: grid;
  gap: 28px;
  padding: 56px 0;
}

.category-overview-card {
  padding: 24px;
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

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

.category-overview-head p {
  margin: 0 0 8px;
  color: var(--amber-700);
  font-weight: 800;
}

.category-overview-head h2 {
  margin: 0 0 8px;
  color: var(--gray-900);
  font-size: 30px;
}

.category-overview-head span {
  color: var(--gray-600);
  line-height: 1.65;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--amber-900);
}

.detail-bg {
  position: absolute;
  inset: 0;
  filter: blur(4px);
  transform: scale(1.04);
  opacity: 0.44;
}

.detail-bg-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.25), transparent 35%),
    linear-gradient(120deg, rgba(17, 24, 39, 0.96), rgba(120, 53, 15, 0.82));
}

.detail-hero-inner {
  position: relative;
  padding: 34px 0 64px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--amber-100);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb em {
  font-style: normal;
  color: var(--white);
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 34px;
  align-items: center;
}

.player-card {
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
}

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: var(--black);
}

.video-shell video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--black);
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.08));
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-button {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  padding-left: 5px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
  color: var(--white);
  box-shadow: 0 18px 46px rgba(245, 158, 11, 0.42);
  font-size: 32px;
}

.player-overlay.is-loading .player-button {
  animation: pulse 0.9s ease-in-out infinite alternate;
}

.detail-info h1 {
  margin: 18px 0 14px;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.detail-line {
  margin: 0;
  color: var(--amber-100);
  font-size: 18px;
  line-height: 1.75;
}

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

.detail-meta span,
.detail-genres span,
.detail-tags span {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.detail-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  padding: 56px 0 0;
}

.story-panel,
.info-panel {
  padding: 28px;
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.story-panel h2,
.info-panel h2 {
  margin: 0 0 16px;
  color: var(--gray-900);
  font-size: 26px;
}

.story-panel h2:not(:first-child) {
  margin-top: 30px;
}

.story-panel p {
  margin: 0;
  color: var(--gray-700);
  font-size: 17px;
  line-height: 1.9;
}

.info-panel dl {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px 16px;
  margin: 0;
}

.info-panel dt {
  color: var(--gray-500);
  font-weight: 800;
}

.info-panel dd {
  margin: 0;
  color: var(--gray-900);
  line-height: 1.6;
}

.info-panel a {
  color: var(--amber-700);
  font-weight: 800;
}

.site-footer {
  margin-top: 64px;
  padding: 48px 0 24px;
  background: linear-gradient(180deg, var(--gray-900), var(--black));
  color: var(--gray-200);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(180px, 0.5fr));
  gap: 34px;
}

.footer-brand {
  color: var(--white);
  font-size: 26px;
  font-weight: 900;
}

.site-footer p {
  max-width: 560px;
  color: var(--gray-500);
  line-height: 1.8;
}

.site-footer h2 {
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(245, 158, 11, 0.45);
  color: var(--white);
  font-size: 18px;
}

.site-footer a {
  display: block;
  margin: 10px 0;
  color: var(--gray-300);
  transition: color 0.25s ease;
}

.site-footer a:hover {
  color: var(--amber-500);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--gray-500);
  font-size: 14px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  from {
    transform: scale(0.96);
  }
  to {
    transform: scale(1.04);
  }
}

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

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

  .menu-toggle {
    display: block;
  }

  .hero-slider {
    height: 560px;
  }

  .featured-grid,
  .compact-grid,
  .mini-grid,
  .all-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

@media (max-width: 720px) {
  .nav-wrap {
    height: 64px;
  }

  .brand-copy strong {
    font-size: 19px;
  }

  .brand-copy small {
    display: none;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    font-size: 21px;
  }

  .hero-slider {
    height: 640px;
  }

  .hero-content {
    align-items: flex-end;
    padding-bottom: 88px;
  }

  .section-heading,
  .category-overview-head,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .movie-card-body {
    min-height: 158px;
    padding: 14px;
  }

  .movie-card-body h2 {
    font-size: 16px;
  }

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

  .horizontal-card > a {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .horizontal-poster {
    min-height: 126px;
  }

  .detail-hero-inner {
    padding-bottom: 42px;
  }

  .story-panel,
  .info-panel,
  .category-overview-card {
    padding: 20px;
    border-radius: 22px;
  }
}

@media (max-width: 440px) {
  .featured-grid,
  .compact-grid,
  .mini-grid,
  .all-grid,
  .movie-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .primary-button,
  .ghost-button {
    width: 100%;
  }
}
