:root {
  color-scheme: light;
  --rose-50: #fff1f2;
  --rose-100: #ffe4e6;
  --rose-500: #f43f5e;
  --rose-600: #e11d48;
  --pink-500: #ec4899;
  --orange-500: #f97316;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-900: #111827;
  --white: #ffffff;
  --shadow-sm: 0 4px 14px rgba(17, 24, 39, 0.08);
  --shadow-md: 0 16px 38px rgba(17, 24, 39, 0.12);
  --shadow-lg: 0 24px 60px rgba(225, 29, 72, 0.18);
  --radius-xl: 22px;
  --radius-lg: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--gray-900);
  background: linear-gradient(135deg, #fff1f2 0%, #fff7ed 48%, #fdf2f8 100%);
  line-height: 1.6;
}

body.no-scroll {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(244, 63, 94, 0.12);
  box-shadow: var(--shadow-sm);
}

.nav-shell {
  width: min(var(--container), calc(100% - 32px));
  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: 188px;
}

.brand-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rose-500), var(--pink-500), var(--orange-500));
  color: var(--white);
  box-shadow: 0 10px 28px rgba(244, 63, 94, 0.32);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.16;
}

.brand-text strong,
.gradient-text {
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(90deg, var(--rose-500), var(--pink-500), var(--orange-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-text strong {
  font-size: 1.24rem;
}

.brand-text small {
  margin-top: 3px;
  color: var(--gray-500);
  font-size: 0.75rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--gray-700);
  font-weight: 600;
}

.desktop-nav > a,
.nav-group > a {
  padding: 10px 0;
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav .is-active {
  color: var(--rose-600);
}

.nav-group {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: -18px;
  width: 210px;
  padding: 8px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-group:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 9px 12px;
  border-radius: 10px;
  color: var(--gray-700);
  font-size: 0.92rem;
}

.nav-dropdown a:hover {
  background: var(--rose-50);
  color: var(--rose-600);
}

.header-search {
  display: flex;
  align-items: center;
  min-width: 260px;
}

.header-search input,
.mobile-search input,
.search-box input {
  width: 100%;
  border: 1px solid var(--gray-200);
  outline: none;
  background: var(--white);
  color: var(--gray-900);
}

.header-search input {
  height: 42px;
  border-radius: 999px 0 0 999px;
  padding: 0 15px;
}

.header-search button {
  height: 42px;
  min-width: 48px;
  border: 0;
  border-radius: 0 999px 999px 0;
  color: var(--white);
  cursor: pointer;
  background: linear-gradient(90deg, var(--rose-500), var(--pink-500));
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: var(--rose-50);
  color: var(--rose-600);
  cursor: pointer;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--gray-200);
  padding: 14px 20px 18px;
  background: var(--white);
}

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

.mobile-nav a {
  display: block;
  padding: 10px 4px;
  color: var(--gray-700);
  font-weight: 600;
}

.mobile-category-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 12px;
  margin-top: 8px;
}

.mobile-search {
  display: flex;
  margin-bottom: 10px;
}

.mobile-search input {
  border-radius: 999px 0 0 999px;
  padding: 10px 14px;
}

.mobile-search button {
  border: 0;
  padding: 10px 16px;
  border-radius: 0 999px 999px 0;
  color: var(--white);
  background: linear-gradient(90deg, var(--rose-500), var(--pink-500));
}

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

.hero {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(90deg, #e11d48 0%, #db2777 52%, #f97316 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.22;
}

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

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 72% 24%, rgba(255, 255, 255, 0.36), transparent 26%), linear-gradient(90deg, rgba(127, 29, 29, 0.38), rgba(190, 24, 93, 0.24));
  z-index: -1;
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 600px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  align-items: center;
  gap: 42px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #ffe4e6;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.hero h1 {
  margin: 22px 0 18px;
  max-width: 760px;
  color: var(--white);
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: 1.03;
  letter-spacing: -0.06em;
}

.hero h1 span {
  display: block;
  margin-top: 10px;
  color: #ffe4e6;
  font-size: clamp(1.65rem, 3vw, 3.2rem);
}

.hero p {
  max-width: 720px;
  margin: 0 0 28px;
  color: rgba(255, 241, 242, 0.94);
  font-size: clamp(1.08rem, 2.2vw, 1.55rem);
}

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

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

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

.btn-primary {
  color: var(--rose-600);
  background: var(--white);
  box-shadow: 0 16px 34px rgba(136, 19, 55, 0.24);
}

.btn-ghost {
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.hero-feature {
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 30px 70px rgba(127, 29, 29, 0.32);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.hero-feature img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.hero-feature-body {
  padding: 24px;
  color: var(--white);
}

.hero-feature-body h2 {
  margin: 0 0 8px;
  font-size: 1.5rem;
}

.hero-feature-body p {
  margin: 0 0 16px;
  font-size: 0.98rem;
}

.hero-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-chip-row a,
.hero-chip-row span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
}

.section {
  padding: 70px 0;
}

.section-white {
  background: rgba(255, 255, 255, 0.82);
}

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

.section-head h2,
.page-title h1 {
  margin: 0;
  color: var(--gray-900);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
}

.section-head p,
.page-title p {
  margin: 8px 0 0;
  color: var(--gray-600);
}

.more-link {
  color: var(--rose-600);
  font-weight: 800;
}

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

.category-tile {
  min-height: 155px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 22px;
  border-radius: var(--radius-xl);
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-tile:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--shadow-md);
}

.category-icon {
  font-size: 2.4rem;
}

.category-tile strong {
  font-size: 1.12rem;
}

.category-tile em {
  color: rgba(255, 255, 255, 0.86);
  font-style: normal;
  font-size: 0.86rem;
}

.theme-0 { background: linear-gradient(135deg, #fb7185, #ec4899); }
.theme-1 { background: linear-gradient(135deg, #a78bfa, #6366f1); }
.theme-2 { background: linear-gradient(135deg, #facc15, #f97316); }
.theme-3 { background: linear-gradient(135deg, #60a5fa, #06b6d4); }
.theme-4 { background: linear-gradient(135deg, #6b7280, #1f2937); }
.theme-5 { background: linear-gradient(135deg, #2dd4bf, #22c55e); }
.theme-6 { background: linear-gradient(135deg, #f472b6, #fb7185); }
.theme-7 { background: linear-gradient(135deg, #fb923c, #facc15); }
.theme-8 { background: linear-gradient(135deg, #3b82f6, #6366f1); }
.theme-9 { background: linear-gradient(135deg, #4ade80, #14b8a6); }
.theme-10 { background: linear-gradient(135deg, #22d3ee, #60a5fa); }
.theme-11 { background: linear-gradient(135deg, #6366f1, #a855f7); }
.theme-12 { background: linear-gradient(135deg, #a855f7, #ec4899); }
.theme-13 { background: linear-gradient(135deg, #374151, #030712); }
.theme-14 { background: linear-gradient(135deg, #f59e0b, #f97316); }
.theme-15 { background: linear-gradient(135deg, #78716c, #b45309); }
.theme-16 { background: linear-gradient(135deg, #ef4444, #f97316); }

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

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

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

.card-link {
  display: block;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--white), var(--rose-50));
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-link:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
}

.card-cover {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: linear-gradient(135deg, #fecdd3, #fed7aa);
}

.compact-card .card-cover {
  height: 190px;
}

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

.card-link:hover .card-cover img {
  transform: scale(1.08);
}

.cover-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(0, 0, 0, 0.68));
}

.duration-badge,
.rank-badge,
.mini-rank {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border-radius: 999px;
  font-weight: 800;
}

.duration-badge {
  top: 14px;
  right: 14px;
  padding: 5px 9px;
  background: rgba(0, 0, 0, 0.68);
  font-size: 0.78rem;
}

.rank-badge {
  top: 14px;
  left: 14px;
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--rose-500), var(--orange-500));
  box-shadow: 0 10px 24px rgba(244, 63, 94, 0.34);
}

.play-hover {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--rose-600);
  transform: translate(-50%, -50%) scale(0.86);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  font-weight: 900;
}

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

.card-body {
  padding: 20px;
}

.card-meta,
.score-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--gray-500);
  font-size: 0.86rem;
}

.card-meta span:first-child {
  color: var(--rose-600);
  font-weight: 800;
}

.card-body h3 {
  margin: 10px 0 8px;
  color: var(--gray-900);
  font-size: 1.18rem;
  line-height: 1.32;
  transition: color 0.2s ease;
}

.card-link:hover h3 {
  color: var(--rose-600);
}

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

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 14px 0;
}

.tag-row span,
.detail-tags span {
  padding: 5px 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--rose-100), #fce7f3);
  color: var(--rose-600);
  font-size: 0.78rem;
  font-weight: 700;
}

.score-row span:first-child {
  color: #d97706;
  font-weight: 900;
}

.scroller {
  overflow-x: auto;
  padding: 6px 0 18px;
}

.scroller-row {
  display: flex;
  gap: 22px;
  min-width: max-content;
}

.scroller-row .movie-card {
  width: 330px;
}

.rank-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 28px;
}

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

.mini-card {
  display: grid;
  grid-template-columns: 142px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.mini-cover {
  position: relative;
  height: 88px;
  overflow: hidden;
  border-radius: 14px;
  background: var(--rose-100);
}

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

.mini-rank {
  left: 8px;
  top: 8px;
  width: 28px;
  height: 28px;
  background: rgba(244, 63, 94, 0.94);
  font-size: 0.82rem;
}

.mini-body h3 {
  margin: 0 0 4px;
  font-size: 1rem;
  line-height: 1.35;
}

.mini-body p {
  margin: 0 0 8px;
  color: var(--gray-600);
  font-size: 0.86rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mini-body div {
  display: flex;
  gap: 10px;
  color: var(--gray-500);
  font-size: 0.82rem;
}

.page-hero {
  padding: 76px 0;
  color: var(--white);
  background: linear-gradient(90deg, var(--rose-600), var(--pink-500), var(--orange-500));
}

.page-title {
  text-align: center;
}

.page-title h1,
.page-title p {
  color: var(--white);
}

.page-title p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.92;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0;
  color: var(--gray-600);
  font-size: 0.92rem;
}

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

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

.detail-main,
.detail-side,
.detail-card {
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.detail-main {
  overflow: hidden;
}

.player-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #030712;
}

.player-wrap video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  border: 0;
  cursor: pointer;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.54));
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-button {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 999px;
  color: var(--rose-600);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  font-size: 2.1rem;
  text-indent: 5px;
  transition: transform 0.2s ease;
}

.player-overlay:hover .player-button {
  transform: scale(1.08);
}

.detail-content {
  padding: 28px;
}

.detail-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.category-pill {
  display: inline-flex;
  padding: 7px 14px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(90deg, var(--rose-500), var(--pink-500));
  font-size: 0.9rem;
  font-weight: 800;
}

.detail-title {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  color: var(--gray-600);
  margin-bottom: 24px;
}

.detail-section {
  border-top: 1px solid var(--gray-200);
  padding-top: 24px;
  margin-top: 24px;
}

.detail-section h2 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.detail-section p {
  margin: 0;
  color: var(--gray-700);
}

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

.review-box {
  padding: 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--rose-50), #fdf2f8);
}

.detail-side {
  position: sticky;
  top: 92px;
  padding: 20px;
}

.detail-side h2 {
  margin: 0 0 16px;
  font-size: 1.3rem;
}

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

.related-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 8px;
  border-radius: 14px;
  transition: background 0.2s ease;
}

.related-card:hover {
  background: var(--rose-50);
}

.related-card img {
  width: 112px;
  height: 72px;
  border-radius: 12px;
  object-fit: cover;
}

.related-card h3 {
  margin: 0 0 6px;
  font-size: 0.95rem;
  line-height: 1.35;
}

.related-card p {
  margin: 0;
  color: var(--gray-500);
  font-size: 0.82rem;
}

.search-panel {
  max-width: 820px;
  margin: -32px auto 38px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-md);
}

.search-box {
  display: flex;
}

.search-box input {
  min-height: 52px;
  border-radius: 999px 0 0 999px;
  padding: 0 18px;
  font-size: 1rem;
}

.search-box button {
  border: 0;
  padding: 0 24px;
  border-radius: 0 999px 999px 0;
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
  background: linear-gradient(90deg, var(--rose-500), var(--pink-500));
}

.search-status {
  margin: 14px 4px 0;
  color: var(--gray-600);
  font-size: 0.92rem;
}

.is-filtered-out {
  display: none;
}

.site-footer {
  color: var(--white);
  background: linear-gradient(90deg, #881337, #831843, #9a3412);
}

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

.footer-logo {
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.footer-brand p,
.site-footer a,
.footer-bottom {
  color: rgba(255, 228, 230, 0.88);
}

.site-footer h3 {
  margin: 0 0 14px;
}

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

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 18px 16px;
  text-align: center;
  font-size: 0.9rem;
}

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

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

  .hero-inner,
  .rank-panel,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .detail-side {
    position: static;
  }

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

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

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

  .brand {
    min-width: 0;
  }

  .brand-text small {
    display: none;
  }

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

  .hero-inner {
    padding: 38px 0;
  }

  .hero-feature img {
    height: 240px;
  }

  .section {
    padding: 48px 0;
  }

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

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

  .scroller-row .movie-card {
    width: 282px;
  }

  .mini-card,
  .related-card {
    grid-template-columns: 108px minmax(0, 1fr);
  }

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

  .detail-content {
    padding: 22px;
  }

  .detail-label-row {
    align-items: flex-start;
    flex-direction: column;
  }
}
