:root {
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-200: #fde68a;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --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;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  --soft-shadow: 0 12px 30px rgba(245, 158, 11, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--gray-800);
  background: linear-gradient(180deg, #fff7ed 0%, #ffffff 18%, #f9fafb 100%);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.76));
  border-bottom: 1px solid rgba(229, 231, 235, 0.62);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-icon {
  width: 36px;
  height: 36px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
  box-shadow: 0 10px 22px rgba(245, 158, 11, 0.35);
}

.brand-text strong,
.footer-brand {
  display: block;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(90deg, var(--amber-600), var(--orange-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-text em {
  display: block;
  margin-top: 4px;
  color: var(--gray-500);
  font-size: 12px;
  font-style: normal;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-700);
  transition: color 0.2s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 99px;
  background: var(--amber-600);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--amber-600);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-search,
.mobile-search {
  display: flex;
  align-items: center;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  overflow: hidden;
}

.header-search input,
.mobile-search input,
.filter-bar input,
.filter-bar select {
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--gray-800);
}

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

.header-search button,
.mobile-search button {
  border: 0;
  padding: 10px 16px;
  color: white;
  background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
  cursor: pointer;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: var(--amber-100);
  padding: 9px;
}

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

.mobile-panel {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 14px;
  padding: 16px;
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

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

.mobile-panel nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.mobile-panel a {
  padding: 12px 14px;
  border-radius: 16px;
  background: var(--amber-50);
  color: var(--gray-700);
  font-weight: 700;
}

main {
  min-height: 70vh;
}

.hero {
  position: relative;
  padding-top: 76px;
  background: radial-gradient(circle at top right, rgba(251, 146, 60, 0.26), transparent 34%), linear-gradient(135deg, #fff7ed, #ffffff 52%, #fff7ed);
}

.hero-stage {
  position: relative;
  min-height: 680px;
  overflow: hidden;
}

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

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

.hero-backdrop,
.detail-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay,
.detail-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.84) 0%, rgba(31, 41, 55, 0.64) 38%, rgba(245, 158, 11, 0.22) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  min-height: 680px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) 360px;
  align-items: center;
  gap: 48px;
  padding: 64px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber-600);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy .eyebrow,
.detail-info .eyebrow {
  color: var(--amber-200);
}

.hero h1,
.detail-info h1,
.page-hero h1 {
  margin: 0;
  color: white;
  font-size: clamp(42px, 7vw, 86px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.045em;
  text-shadow: 0 14px 38px rgba(0, 0, 0, 0.24);
}

.hero-summary,
.detail-line,
.page-hero p {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  line-height: 1.9;
}

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

.hero-tags,
.detail-tags {
  margin-top: 26px;
}

.hero-tags span,
.detail-tags span,
.movie-tags span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: var(--amber-700);
  background: var(--amber-100);
  font-size: 12px;
  font-weight: 800;
}

.hero-tags span,
.detail-tags span {
  padding: 8px 13px;
  color: white;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
}

.movie-tags span {
  padding: 5px 9px;
}

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

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

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

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

.ghost-button {
  color: white;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(12px);
}

.ghost-button.dark {
  color: var(--amber-700);
  background: var(--amber-50);
  border-color: var(--amber-200);
}

.hero-poster {
  position: relative;
  width: 100%;
  aspect-ratio: 0.72;
  border-radius: 34px;
  overflow: hidden;
  background: var(--gray-100);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  transform: rotate(2deg);
  transition: transform 0.25s ease;
}

.hero-poster:hover {
  transform: rotate(0deg) translateY(-4px);
}

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

.hero-poster span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 12px 16px;
  border-radius: 18px;
  color: white;
  font-weight: 900;
  background: rgba(17, 24, 39, 0.72);
  backdrop-filter: blur(12px);
}

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: white;
  background: rgba(255, 255, 255, 0.16);
  font-size: 36px;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.hero-control.prev {
  left: 24px;
}

.hero-control.next {
  right: 24px;
}

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

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

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

.stats-section,
.section-block,
.filter-bar,
.player-section,
.detail-content {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.stats-section {
  margin-top: -48px;
  position: relative;
  z-index: 5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat-card,
.content-card,
.rank-panel,
.category-overview-card,
.category-card,
.movie-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(229, 231, 235, 0.86);
  box-shadow: var(--shadow);
}

.stat-card {
  padding: 24px;
  border-radius: 24px;
  text-align: center;
}

.stat-card strong {
  display: block;
  color: var(--gray-900);
  font-size: 25px;
  font-weight: 900;
}

.stat-card span {
  color: var(--gray-500);
  font-weight: 700;
}

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

.soft-block {
  width: 100%;
  padding: 74px max(16px, calc((100% - 1180px) / 2)) 0;
  background: linear-gradient(180deg, #ffffff, #fff7ed);
}

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

.section-heading h2 {
  margin: 0;
  color: var(--gray-900);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.section-heading p:not(.eyebrow) {
  margin: 10px 0 0;
  max-width: 700px;
  color: var(--gray-600);
}

.section-heading > a {
  flex-shrink: 0;
  padding: 10px 17px;
  border-radius: 999px;
  color: var(--amber-700);
  background: var(--amber-100);
  font-weight: 900;
}

.section-heading.compact {
  align-items: center;
  margin-bottom: 22px;
}

.section-heading.compact h2 {
  font-size: 28px;
}

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

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

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

.movie-card {
  border-radius: 26px;
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.14);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 0.72;
  overflow: hidden;
  background: var(--gray-100);
}

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

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

.poster-badge,
.poster-score {
  position: absolute;
  top: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  color: white;
  font-size: 12px;
  font-weight: 900;
  background: rgba(17, 24, 39, 0.68);
  backdrop-filter: blur(10px);
}

.poster-badge {
  left: 12px;
}

.poster-score {
  right: 12px;
  color: #fffbeb;
  background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
}

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

.movie-card h3 {
  margin: 0;
  color: var(--gray-900);
  font-size: 19px;
  line-height: 1.32;
  font-weight: 900;
}

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

.movie-meta,
.movie-line {
  margin: 8px 0 0;
  color: var(--gray-500);
  font-size: 14px;
}

.movie-line {
  color: var(--gray-600);
  min-height: 44px;
}

.movie-tags {
  margin-top: 14px;
}

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

.category-card,
.category-overview-card {
  display: flex;
  flex-direction: column;
  min-height: 148px;
  padding: 24px;
  border-radius: 26px;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.category-card:hover,
.category-overview-card:hover {
  transform: translateY(-4px);
  border-color: var(--amber-200);
}

.category-card strong,
.category-overview-card strong {
  color: var(--gray-900);
  font-size: 22px;
  font-weight: 900;
}

.category-card span,
.category-overview-card em {
  margin-top: 10px;
  color: var(--gray-600);
  font-style: normal;
}

.category-overview-card span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  color: white;
  background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
  font-weight: 900;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.rank-panel {
  position: sticky;
  top: 96px;
  padding: 22px;
  border-radius: 30px;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 44px 56px minmax(0, 1fr) 46px;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  background: white;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.rank-row:hover {
  transform: translateX(4px);
  border-color: var(--amber-200);
}

.rank-number {
  color: var(--amber-600);
  font-size: 20px;
  font-weight: 900;
  text-align: center;
}

.rank-row img {
  width: 56px;
  height: 76px;
  border-radius: 12px;
  object-fit: cover;
  background: var(--gray-100);
}

.rank-info {
  min-width: 0;
}

.rank-info strong,
.rank-info em {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-info strong {
  color: var(--gray-900);
  font-size: 15px;
  font-weight: 900;
}

.rank-info em {
  color: var(--gray-500);
  font-size: 12px;
  font-style: normal;
}

.rank-score {
  color: var(--orange-600);
  font-weight: 900;
  text-align: right;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  margin-top: 76px;
  background: linear-gradient(135deg, var(--gray-900), #7c2d12);
}

.small-hero {
  padding: 86px max(16px, calc((100% - 1180px) / 2));
}

.small-hero h1 {
  font-size: clamp(42px, 6vw, 68px);
}

.inline-actions {
  margin-top: 26px;
}

.filter-bar {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 34px;
  padding: 16px;
  border-radius: 24px;
  background: white;
  border: 1px solid var(--gray-200);
  box-shadow: var(--soft-shadow);
}

.filter-bar input,
.filter-bar select {
  height: 46px;
  border-radius: 16px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  padding: 0 16px;
}

.filter-bar input {
  flex: 1;
}

.filter-bar select {
  width: 180px;
}

.detail-hero {
  min-height: 620px;
}

.detail-wrap {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  min-height: 620px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 46px;
  align-items: center;
  padding: 64px 0;
}

.detail-poster {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
  background: var(--gray-100);
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 0.72;
  object-fit: cover;
}

.detail-poster span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 13px 16px;
  border-radius: 18px;
  text-align: center;
  color: white;
  font-weight: 900;
  background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
}

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

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

.player-section {
  padding-top: 70px;
}

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: #020617;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.26);
  aspect-ratio: 16 / 9;
}

.movie-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #020617;
}

.play-layer {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 16px;
  border: 0;
  color: white;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.18), rgba(2, 6, 23, 0.78));
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.play-layer span {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
  box-shadow: 0 20px 45px rgba(245, 158, 11, 0.35);
  font-size: 34px;
}

.play-layer strong {
  font-size: 20px;
}

.video-shell.playing .play-layer {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.source-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.source-chip {
  border: 1px solid var(--amber-200);
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--amber-700);
  background: var(--amber-50);
  font-weight: 900;
  cursor: pointer;
}

.source-chip.active {
  color: white;
  background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
}

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

.content-card {
  padding: 28px;
  border-radius: 30px;
}

.content-card h2 {
  margin: 0 0 14px;
  color: var(--gray-900);
  font-size: 26px;
  font-weight: 900;
}

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

.site-footer {
  margin-top: 90px;
  padding: 54px max(16px, calc((100% - 1180px) / 2)) 26px;
  background: linear-gradient(180deg, #ffffff, var(--gray-100));
  border-top: 1px solid var(--gray-200);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 34px;
}

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

.site-footer p,
.site-footer li,
.footer-bottom {
  color: var(--gray-600);
  font-size: 14px;
}

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

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

.footer-bottom {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--gray-200);
  text-align: center;
}

[hidden-by-filter] {
  display: none !important;
}

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

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

  .hero-content {
    grid-template-columns: minmax(0, 1fr) 280px;
  }

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

  .rank-panel {
    position: static;
  }
}

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

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .hero-stage,
  .hero-content {
    min-height: 740px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 48px 0 86px;
  }

  .hero-poster {
    width: min(260px, 78vw);
    margin: 0 auto;
  }

  .hero-control {
    display: none;
  }

  .stats-grid,
  .movie-grid,
  .featured-grid,
  .catalog-grid,
  .small-grid,
  .category-grid,
  .category-overview-grid,
  .detail-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading,
  .filter-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .filter-bar select {
    width: 100%;
  }

  .detail-wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .detail-poster {
    width: min(280px, 78vw);
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .header-inner {
    height: 68px;
  }

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

  .brand-text em {
    display: none;
  }

  .hero,
  .page-hero,
  .detail-hero {
    margin-top: 68px;
    padding-top: 0;
  }

  .hero h1,
  .detail-info h1,
  .page-hero h1 {
    font-size: 40px;
  }

  .hero-summary,
  .detail-line,
  .page-hero p {
    font-size: 16px;
  }

  .stats-grid,
  .movie-grid,
  .featured-grid,
  .catalog-grid,
  .small-grid,
  .category-grid,
  .category-overview-grid,
  .detail-content {
    grid-template-columns: 1fr;
  }

  .rank-row {
    grid-template-columns: 34px 52px minmax(0, 1fr) 38px;
  }

  .section-block {
    padding-top: 52px;
  }
}
