:root {
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --orange-500: #f97316;
  --red-500: #ef4444;
  --blue-600: #2563eb;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(17, 24, 39, 0.12);
  --soft-shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--gray-800);
  background: var(--gray-50);
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 28px rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(16px);
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-name {
  font-size: 24px;
}

.brand-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
  color: var(--white);
  font-size: 14px;
  box-shadow: 0 10px 24px rgba(245, 158, 11, 0.35);
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-link {
  padding: 10px 14px;
  color: var(--gray-600);
  border-radius: 12px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--amber-700);
  background: var(--amber-100);
}

.nav-search {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 4px;
}

.nav-search input,
.quick-search-card input,
.filter-bar input,
.filter-bar select {
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  background: var(--white);
  color: var(--gray-800);
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.nav-search input {
  width: 210px;
  padding: 10px 14px;
}

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

.nav-search button,
.quick-search-card button {
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(245, 158, 11, 0.25);
}

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

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

.hero-carousel {
  position: relative;
  min-height: calc(100vh - 74px);
  overflow: hidden;
  color: var(--white);
  background: var(--gray-900);
}

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

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

.hero-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(1.08);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 40%, rgba(245, 158, 11, 0.35), transparent 34%),
    linear-gradient(90deg, rgba(17, 24, 39, 0.96) 0%, rgba(17, 24, 39, 0.76) 48%, rgba(17, 24, 39, 0.48) 100%),
    linear-gradient(0deg, rgba(17, 24, 39, 0.98), rgba(17, 24, 39, 0.15));
}

.hero-content {
  position: relative;
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.58fr);
  align-items: center;
  gap: 48px;
  padding: 72px 0 118px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--amber-500);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-copy h1 {
  max-width: 820px;
  margin: 0 0 18px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.hero-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.12;
}

.hero-copy p {
  max-width: 760px;
  margin: 0 0 22px;
  color: #f3f4f6;
  font-size: 18px;
}

.hero-meta,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.hero-meta span,
.detail-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  backdrop-filter: blur(10px);
}

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

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

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
  box-shadow: 0 16px 28px rgba(245, 158, 11, 0.32);
}

.btn-soft {
  color: var(--amber-700);
  background: var(--amber-100);
}

.hero-poster {
  display: block;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
  aspect-ratio: 3 / 4;
}

.hero-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.26), transparent 50%);
}

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

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

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

.hero-dot {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

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

.hero-category-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 14px 0;
  background: rgba(17, 24, 39, 0.78);
  backdrop-filter: blur(14px);
}

.hero-category-strip .container,
.hero-category-strip div div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-category-strip .container {
  justify-content: space-between;
}

.hero-category-strip span {
  color: var(--amber-500);
  font-weight: 800;
}

.hero-category-strip a {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  color: #f9fafb;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease;
}

.hero-category-strip a:hover {
  background: rgba(245, 158, 11, 0.36);
}

.quick-search-panel {
  margin-top: -36px;
  position: relative;
  z-index: 4;
}

.quick-search-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow);
}

.quick-search-card h2,
.section-head h2,
.rank-layout h2,
.detail-article h2,
.detail-side h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.quick-search-card p,
.section-head p,
.rank-layout p {
  margin: 8px 0 0;
  color: var(--gray-600);
}

.quick-search-card form {
  display: flex;
  gap: 10px;
}

.quick-search-card input {
  flex: 1;
  min-width: 0;
  padding: 14px 18px;
}

.section-block {
  padding: 72px 0;
}

.section-warm {
  background: linear-gradient(135deg, var(--amber-50), #fff7ed);
}

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

.section-head a {
  flex: 0 0 auto;
  color: var(--amber-700);
  font-weight: 800;
}

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

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

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

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

.movie-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--soft-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gray-200), var(--gray-100));
}

.movie-card-large .poster-link {
  aspect-ratio: 16 / 9;
}

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

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

.poster-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.42), transparent 48%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.movie-card:hover .poster-link::after {
  opacity: 1;
}

.play-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--amber-500);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.card-rank {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--red-500), var(--orange-500));
  border-radius: 14px;
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(239, 68, 68, 0.3);
}

.card-body {
  padding: 16px;
}

.card-body h3 {
  margin: 0 0 8px;
  color: var(--gray-900);
  font-size: 18px;
  line-height: 1.32;
}

.card-body h3 a:hover {
  color: var(--amber-700);
}

.card-meta {
  margin: 0 0 10px;
  color: var(--gray-500);
  font-size: 14px;
}

.card-desc {
  min-height: 48px;
  margin: 0 0 12px;
  color: var(--gray-600);
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

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

.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 10px;
  color: var(--amber-700);
  background: var(--amber-100);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

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

.category-tile,
.category-overview-card {
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.category-tile {
  min-height: 188px;
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.category-tile span,
.category-overview-head > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
  border-radius: 14px;
  font-weight: 900;
}

.category-tile h3 {
  margin: 18px 0 8px;
  font-size: 22px;
}

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

.rank-section {
  color: var(--white);
  background: radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.28), transparent 30%), linear-gradient(135deg, var(--gray-900), #1f2937);
}

.rank-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 42px;
  align-items: start;
}

.rank-layout p {
  color: #d1d5db;
}

.rank-list,
.ranking-table {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.rank-list li,
.ranking-row {
  display: grid;
  align-items: center;
  gap: 14px;
  border-radius: 16px;
}

.rank-list li {
  grid-template-columns: 46px 1fr auto;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.09);
}

.rank-list span,
.ranking-num {
  color: var(--amber-500);
  font-weight: 900;
}

.rank-list a {
  font-weight: 800;
}

.rank-list em,
.ranking-row em,
.ranking-row strong {
  color: #e5e7eb;
  font-style: normal;
  font-size: 14px;
}

.sub-hero {
  padding: 78px 0;
  color: var(--white);
}

.amber-hero {
  background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.24), transparent 28%), linear-gradient(135deg, var(--amber-600), var(--orange-500));
}

.dark-hero {
  background: radial-gradient(circle at 70% 30%, rgba(245, 158, 11, 0.28), transparent 30%), linear-gradient(135deg, var(--gray-900), var(--gray-700));
}

.sub-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: -0.05em;
}

.sub-hero p {
  max-width: 760px;
  margin: 0;
  color: #f9fafb;
  font-size: 18px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
}

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

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

.category-overview-card {
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-overview-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  margin-bottom: 20px;
}

.category-overview-head h2 {
  margin: 0 0 6px;
}

.filter-bar {
  position: sticky;
  top: 88px;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(200px, 1fr) 180px 180px;
  gap: 12px;
  margin-bottom: 28px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(14px);
}

.wide-filter {
  grid-template-columns: minmax(220px, 1fr) 180px 220px;
}

.filter-bar input,
.filter-bar select {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
}

.ranking-table {
  display: grid;
  gap: 10px;
}

.ranking-row {
  grid-template-columns: 70px 1fr 160px 180px;
  padding: 16px 18px;
  color: var(--gray-800);
  background: var(--white);
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.06);
}

.ranking-row a {
  font-weight: 900;
}

.ranking-row a:hover {
  color: var(--amber-700);
}

.ranking-row strong,
.ranking-row em {
  color: var(--gray-500);
}

.detail-hero {
  padding: 34px 0 70px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 20%, rgba(245, 158, 11, 0.22), transparent 26%),
    linear-gradient(135deg, var(--gray-900), #0f172a 58%, #451a03);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  gap: 36px;
  align-items: center;
}

.player-unit {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  aspect-ratio: 16 / 9;
  background: #030712;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
}

.player-unit video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #000000;
}

.player-start {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  color: var(--white);
  background: rgba(0, 0, 0, 0.34);
  cursor: pointer;
}

.player-start span {
  width: 78px;
  height: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
  font-size: 28px;
  box-shadow: 0 16px 36px rgba(245, 158, 11, 0.34);
}

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

.player-unit.is-playing .player-start {
  display: none;
}

.detail-info h1 {
  margin: 0 0 18px;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.detail-one-line {
  margin: 0 0 22px;
  color: #f3f4f6;
  font-size: 18px;
}

.detail-tags span {
  color: #fff7ed;
  background: rgba(245, 158, 11, 0.28);
}

.detail-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 32px;
  align-items: start;
}

.detail-article,
.detail-side {
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.detail-article {
  padding: 30px;
}

.detail-article h2 {
  margin-top: 0;
  margin-bottom: 14px;
}

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

.detail-side {
  padding: 22px;
}

.detail-side h2 {
  margin-bottom: 18px;
  font-size: 24px;
}

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

.side-list .movie-card {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 12px;
  box-shadow: none;
  border: 1px solid var(--gray-100);
}

.side-list .poster-link {
  aspect-ratio: 1 / 1;
}

.side-list .card-body {
  padding: 10px 10px 10px 0;
}

.side-list .card-desc,
.side-list .tag-row {
  display: none;
}

.side-list .card-body h3 {
  font-size: 15px;
}

.side-list .card-meta {
  margin-bottom: 0;
}

.site-footer {
  color: #d1d5db;
  background: linear-gradient(135deg, var(--gray-900), var(--gray-800));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: 34px;
  padding: 54px 0 34px;
}

.footer-brand {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 22px;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 18px;
}

.site-footer p {
  margin: 0;
  color: #d1d5db;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 8px;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px;
  text-align: center;
}

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

@media (max-width: 1024px) {
  .hero-content,
  .detail-layout,
  .detail-content-grid,
  .rank-layout,
  .quick-search-card {
    grid-template-columns: 1fr;
  }

  .hero-poster {
    max-width: 360px;
  }

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

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

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

  .ranking-row {
    grid-template-columns: 60px 1fr;
  }

  .ranking-row strong,
  .ranking-row em {
    grid-column: 2;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .nav-panel {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 0 0 16px;
  }

  .nav-panel.is-open {
    display: flex;
  }

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

  .nav-search {
    margin-left: 0;
  }

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

  .hero-content {
    min-height: 720px;
    padding-top: 52px;
  }

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

  .hero-category-strip .container,
  .hero-category-strip div div {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-category-strip div div {
    max-height: 94px;
    overflow: auto;
  }

  .quick-search-panel {
    margin-top: 0;
  }

  .quick-search-card form {
    flex-direction: column;
  }

  .filter-bar,
  .wide-filter {
    position: static;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 22px, var(--container));
  }

  .brand-name {
    font-size: 20px;
  }

  .hero-carousel,
  .hero-content {
    min-height: 760px;
  }

  .hero-poster {
    max-width: 250px;
  }

  .section-block {
    padding: 48px 0;
  }

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

  .featured-grid,
  .compact-grid,
  .catalog-grid,
  .tiny-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

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

  .detail-hero {
    padding-top: 24px;
  }

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

  .detail-article,
  .detail-side,
  .quick-search-card,
  .category-overview-card {
    padding: 20px;
  }

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

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