:root {
  --sunset-50: #fff7ed;
  --sunset-100: #ffedd5;
  --sunset-200: #fed7aa;
  --sunset-400: #fb923c;
  --sunset-500: #f97316;
  --sunset-600: #ea580c;
  --sunset-700: #c2410c;
  --twilight-500: #ef4444;
  --twilight-600: #dc2626;
  --ocean-500: #0ea5e9;
  --ocean-600: #0284c7;
  --golden-50: #fefce8;
  --golden-500: #eab308;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --shadow-soft: 0 2px 15px -3px rgba(0, 0, 0, 0.07), 0 10px 20px -2px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.10), 0 8px 10px -6px rgba(0, 0, 0, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--gray-50);
  color: var(--gray-900);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

[hidden] {
  display: none !important;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--gray-200);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 24px;
}

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

.brand-mark,
.footer-brand span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--sunset-500), var(--twilight-500));
  box-shadow: var(--shadow-soft);
}

.brand-text {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.brand-text strong {
  font-size: 20px;
  line-height: 1.15;
  transition: color 0.2s ease;
}

.brand:hover .brand-text strong {
  color: var(--sunset-600);
}

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

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

.nav-link {
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--sunset-600);
}

.menu-button {
  display: none;
  border: 0;
  border-radius: 12px;
  background: var(--gray-100);
  color: var(--gray-700);
  cursor: pointer;
  padding: 8px 12px;
}

.mobile-nav {
  border-top: 1px solid var(--gray-200);
  background: #fff;
}

.mobile-nav-inner {
  display: grid;
  gap: 8px;
  padding-block: 12px;
}

.mobile-link {
  border-radius: 12px;
  color: var(--gray-700);
  font-weight: 600;
  padding: 10px 14px;
}

.mobile-link.active,
.mobile-link:hover {
  background: var(--sunset-50);
  color: var(--sunset-600);
}

.hero-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, var(--sunset-500), var(--twilight-600) 52%, var(--ocean-600));
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: linear-gradient(rgba(255, 255, 255, 0.35) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.35) 1px, transparent 1px);
  background-size: 42px 42px;
}

.hero-container {
  position: relative;
  padding-block: 72px 88px;
}

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

.hero-slide {
  display: none;
  align-items: center;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 44px;
}

.hero-slide.active {
  display: grid;
}

.hero-copy h1 {
  margin: 0 0 12px;
  font-size: clamp(46px, 7vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4.2vw, 56px);
  line-height: 1.05;
}

.hero-copy p {
  max-width: 720px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(17px, 2vw, 22px);
}

.hero-label,
.section-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 7px 12px;
}

.section-kicker {
  background: var(--sunset-100);
  color: var(--sunset-700);
}

.hero-meta,
.movie-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-meta span,
.movie-meta-row span {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 10px;
}

.movie-meta-row span {
  background: var(--gray-100);
  color: var(--gray-600);
}

.movie-meta-row.light span {
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.9);
}

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

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

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

.button-primary {
  background: #fff;
  color: var(--sunset-600);
  box-shadow: var(--shadow-soft);
}

.button-glass {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  backdrop-filter: blur(8px);
}

.button-outline {
  border: 1px solid var(--sunset-200);
  background: #fff;
  color: var(--sunset-600);
}

.hero-actions-dark .button-primary {
  background: linear-gradient(135deg, var(--sunset-500), var(--twilight-500));
  color: #fff;
}

.hero-poster {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 28px;
  background: rgba(17, 24, 39, 0.18);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  aspect-ratio: 3 / 4;
}

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

.hero-poster:hover img {
  transform: scale(1.05);
}

.hero-poster span,
.featured-cover span,
.detail-poster span,
.score-badge {
  position: absolute;
  right: 14px;
  top: 14px;
  border-radius: 12px;
  background: rgba(249, 115, 22, 0.94);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  padding: 6px 10px;
  box-shadow: var(--shadow-soft);
}

.hero-controls {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 24px;
}

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

.hero-dot.active {
  width: 32px;
  background: #fff;
}

.hero-search {
  display: flex;
  max-width: 760px;
  margin: 30px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.hero-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  color: #fff;
  outline: 0;
  padding: 16px 18px;
}

.hero-search input::placeholder {
  color: rgba(255, 255, 255, 0.74);
}

.hero-search button {
  border: 0;
  background: #fff;
  color: var(--sunset-600);
  cursor: pointer;
  font-weight: 900;
  padding-inline: 22px;
}

.hero-cats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.hero-cats a {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 12px;
}

.page-main {
  padding-bottom: 48px;
}

.page-hero {
  padding-block: 56px 24px;
}

.compact-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.compact-hero p {
  max-width: 780px;
  margin: 0;
  color: var(--gray-600);
  font-size: 18px;
}

.section-block {
  margin-block: 56px;
}

.featured-card-wrap {
  margin-top: -46px;
  position: relative;
  z-index: 2;
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.03em;
}

.section-heading p {
  margin: 8px 0 0;
  color: var(--gray-600);
}

.section-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--sunset-600);
  font-weight: 900;
  white-space: nowrap;
}

.featured-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  gap: 30px;
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-xl);
  padding: 24px;
}

.featured-cover,
.detail-poster,
.poster-frame {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--gray-200), var(--gray-100));
}

.featured-cover {
  aspect-ratio: 16 / 10;
}

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

.featured-card:hover .featured-cover img,
.movie-card:hover .poster-frame img {
  transform: scale(1.05);
}

.featured-content {
  align-self: center;
}

.featured-content h2 {
  margin: 18px 0 12px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.05;
}

.featured-content p {
  color: var(--gray-600);
  font-size: 17px;
}

.gradient-panel {
  border-radius: 28px;
  background: linear-gradient(90deg, var(--golden-50), var(--sunset-50));
  padding: 32px;
}

.movie-grid {
  display: grid;
  gap: 20px;
}

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

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

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

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

.movie-card-link {
  display: block;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-card-link:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.poster-frame {
  aspect-ratio: 3 / 4;
  border-radius: 20px 20px 0 0;
}

.poster-gradient {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), transparent);
}

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

.movie-card-body h2 {
  display: -webkit-box;
  min-height: 2.5em;
  margin: 12px 0 8px;
  overflow: hidden;
  color: var(--gray-900);
  font-size: 17px;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

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

.movie-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--sunset-50);
  color: var(--sunset-700);
  font-size: 12px;
  font-weight: 800;
  padding: 5px 9px;
}

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

.category-card,
.category-overview-card,
.catalog-toolbar,
.detail-article,
.detail-side {
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.category-card {
  padding: 18px;
}

.category-card a > span {
  color: var(--sunset-600);
  font-size: 13px;
  font-weight: 900;
}

.category-card h2 {
  min-height: 3.5em;
  margin: 10px 0 14px;
  color: var(--gray-900);
  font-size: 16px;
  line-height: 1.45;
}

.category-mini-links {
  display: grid;
  gap: 8px;
}

.category-mini-links a {
  display: -webkit-box;
  overflow: hidden;
  color: var(--gray-600);
  font-size: 13px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

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

.category-overview-card {
  padding: 24px;
}

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

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

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

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

.catalog-toolbar {
  margin-bottom: 24px;
  padding: 18px;
}

.search-box {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--gray-700);
  font-weight: 800;
}

.search-box input {
  width: 100%;
  border: 1px solid var(--gray-300);
  border-radius: 16px;
  background: #fff;
  color: var(--gray-900);
  outline: 0;
  padding: 13px 15px;
}

.search-box input:focus {
  border-color: var(--sunset-500);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.filter-groups {
  display: grid;
  gap: 12px;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-pill {
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  background: #fff;
  color: var(--gray-700);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  padding: 8px 12px;
}

.filter-pill.active,
.filter-pill:hover {
  border-color: var(--sunset-500);
  background: var(--sunset-50);
  color: var(--sunset-600);
}

.empty-message {
  border-radius: 16px;
  background: var(--gray-100);
  color: var(--gray-600);
  font-weight: 700;
  padding: 18px;
  text-align: center;
}

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

.ranking-row {
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.ranking-link {
  display: grid;
  align-items: center;
  grid-template-columns: 54px 64px minmax(0, 1fr) minmax(170px, 0.55fr) 72px;
  gap: 14px;
  padding: 12px;
}

.ranking-number {
  color: var(--sunset-600);
  font-size: 22px;
  font-weight: 900;
  text-align: center;
}

.ranking-link img {
  width: 64px;
  height: 86px;
  border-radius: 12px;
  background: var(--gray-100);
  object-fit: cover;
}

.ranking-title {
  min-width: 0;
}

.ranking-title strong,
.ranking-title small {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.ranking-title strong {
  color: var(--gray-900);
  font-size: 17px;
  -webkit-line-clamp: 1;
}

.ranking-title small {
  color: var(--gray-600);
  font-size: 13px;
  -webkit-line-clamp: 2;
}

.ranking-meta {
  color: var(--gray-500);
  font-size: 13px;
}

.ranking-score {
  color: var(--sunset-600);
  font-size: 20px;
  font-weight: 900;
  text-align: right;
}

.detail-main {
  padding-bottom: 48px;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--gray-900);
}

.detail-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.24;
}

.detail-backdrop::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.95), rgba(17, 24, 39, 0.72));
}

.detail-backdrop img {
  width: 100%;
  height: 100%;
  filter: blur(14px) saturate(1.15);
  object-fit: cover;
  transform: scale(1.08);
}

.detail-hero-inner {
  position: relative;
  padding-block: 34px 54px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

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

.detail-head-grid {
  display: grid;
  align-items: end;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 34px;
}

.detail-poster {
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-xl);
}

.detail-copy h1 {
  margin: 18px 0 14px;
  font-size: clamp(36px, 5vw, 70px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.detail-copy p {
  max-width: 860px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.90);
  font-size: 19px;
}

.player-section {
  margin-top: -28px;
  position: relative;
  z-index: 2;
}

.player-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #000;
  box-shadow: var(--shadow-xl);
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 0;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.76));
  color: #fff;
  cursor: pointer;
  gap: 10px;
  text-align: center;
  transition: opacity 0.2s ease;
}

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

.play-circle {
  display: inline-flex;
  width: 76px;
  height: 76px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sunset-500), var(--twilight-500));
  box-shadow: var(--shadow-xl);
  font-size: 30px;
  text-indent: 4px;
}

.player-overlay strong {
  max-width: min(720px, 80%);
  font-size: clamp(24px, 4vw, 44px);
  line-height: 1.1;
}

.player-overlay small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 700;
}

.player-status {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 6;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.72);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  padding: 8px 12px;
}

.detail-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  margin-top: 34px;
}

.detail-article,
.detail-side {
  padding: 28px;
}

.detail-article h2,
.detail-side h2 {
  margin: 0 0 14px;
  font-size: 26px;
}

.detail-article p {
  margin: 0 0 26px;
  color: var(--gray-700);
  font-size: 17px;
}

.detail-side dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.detail-side dt {
  color: var(--gray-500);
  font-size: 13px;
  font-weight: 900;
}

.detail-side dd {
  margin: -8px 0 0;
  color: var(--gray-900);
  font-weight: 700;
}

.site-footer {
  background: var(--gray-900);
  color: var(--gray-300);
  margin-top: 72px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 34px;
  padding-block: 48px 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: #fff;
  font-size: 19px;
}

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

.site-footer p {
  margin: 0;
  color: var(--gray-400);
  font-size: 14px;
}

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

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

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--gray-800);
  padding-block: 22px;
}

.movie-card.is-hidden,
.ranking-row.is-hidden {
  display: none;
}

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

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

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

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

  .hero-slide,
  .featured-card,
  .detail-head-grid,
  .detail-content-grid {
    grid-template-columns: 1fr;
  }

  .hero-slider {
    min-height: 0;
  }

  .hero-poster,
  .detail-poster {
    max-width: 360px;
    width: 100%;
    justify-self: center;
  }

  .movie-grid-4,
  .movie-grid-5,
  .movie-grid-6,
  .category-grid,
  .mini-card-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ranking-link {
    grid-template-columns: 44px 54px minmax(0, 1fr) 56px;
  }

  .ranking-meta {
    display: none;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, 1280px);
  }

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

  .hero-container {
    padding-block: 42px 56px;
  }

  .hero-copy h1 {
    font-size: 44px;
  }

  .hero-search {
    display: grid;
  }

  .hero-search button {
    padding-block: 13px;
  }

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

  .gradient-panel,
  .featured-card,
  .category-overview-card,
  .catalog-toolbar,
  .detail-article,
  .detail-side {
    padding: 18px;
    border-radius: 20px;
  }

  .movie-grid-4,
  .movie-grid-5,
  .movie-grid-6,
  .category-grid,
  .mini-card-row {
    grid-template-columns: 1fr;
  }

  .detail-copy h1 {
    font-size: 38px;
  }

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