:root {
  --color-slate-950: #020617;
  --color-slate-900: #0f172a;
  --color-slate-800: #1e293b;
  --color-slate-700: #334155;
  --color-slate-100: #f1f5f9;
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-gray-900: #111827;
  --color-amber-50: #fffbeb;
  --color-amber-100: #fef3c7;
  --color-amber-400: #fbbf24;
  --color-amber-500: #f59e0b;
  --color-amber-600: #d97706;
  --shadow-card: 0 12px 30px rgba(15, 23, 42, 0.12);
  --shadow-card-hover: 0 20px 46px rgba(15, 23, 42, 0.2);
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--color-gray-900);
  background: linear-gradient(180deg, var(--color-gray-50), var(--color-gray-100));
}

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-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  color: white;
  background: linear-gradient(90deg, var(--color-slate-900), var(--color-slate-800), var(--color-slate-900));
  box-shadow: 0 8px 24px rgba(2, 6, 23, 0.24);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 32px));
  height: 68px;
  margin: 0 auto;
}

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

.brand-icon,
.footer-brand span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--color-slate-900);
  background: var(--color-amber-400);
  border-radius: 999px;
  font-size: 15px;
}

.brand strong {
  display: block;
  font-size: 20px;
  line-height: 1.1;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: #cbd5e1;
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 15px;
  white-space: nowrap;
}

.nav-links a,
.mobile-menu a,
.site-footer a {
  transition: color 0.2s ease;
}

.nav-links a:hover,
.mobile-menu a:hover,
.site-footer a:hover {
  color: var(--color-amber-400);
}

.nav-search {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  max-width: 360px;
}

.nav-search input,
.mobile-menu input,
.hero-search input,
.search-large input,
.filter-panel input,
.filter-panel select {
  width: 100%;
  border: 1px solid transparent;
  outline: none;
  border-radius: 999px;
}

.nav-search input,
.mobile-menu input {
  padding: 10px 14px;
  color: white;
  background: var(--color-slate-700);
}

.nav-search input::placeholder,
.mobile-menu input::placeholder {
  color: #cbd5e1;
}

.nav-search button,
.mobile-menu button,
.hero-search button,
.search-large button,
.filter-panel button,
.btn,
.section-more {
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.nav-search button,
.mobile-menu button {
  padding: 9px 16px;
  color: white;
  background: var(--color-amber-500);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  border: none;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 8px 10px;
}

.mobile-menu {
  display: none;
  padding: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--color-slate-800);
}

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

.mobile-menu form {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.mobile-menu-links {
  display: grid;
  gap: 10px;
}

.hero {
  position: relative;
  min-height: 540px;
  color: white;
  overflow: hidden;
  background: linear-gradient(90deg, var(--color-slate-900), var(--color-slate-800), var(--color-slate-900));
}

.hero-stage,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
  transform: scale(1.02);
}

.hero-shade,
.detail-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.25), rgba(15, 23, 42, 0.68));
}

.hero-content {
  position: absolute;
  left: max(24px, calc((100% - 1180px) / 2));
  top: 50%;
  width: min(620px, calc(100% - 48px));
  transform: translateY(-50%);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: max-content;
  margin-bottom: 16px;
  padding: 8px 16px;
  color: white;
  background: var(--color-amber-500);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.hero h1,
.page-hero h1,
.detail-intro h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
}

.hero p,
.page-hero p,
.detail-intro p {
  max-width: 720px;
  color: #e5e7eb;
  font-size: 18px;
  line-height: 1.8;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 24px;
  border-radius: 999px;
  font-weight: 700;
}

.btn:hover,
.section-more:hover,
.category-tile:hover,
.movie-card:hover,
.ranking-row:hover,
.info-card:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: white;
  background: var(--color-amber-500);
  box-shadow: 0 12px 22px rgba(245, 158, 11, 0.26);
}

.btn-primary:hover {
  background: var(--color-amber-600);
}

.btn-ghost {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(15, 23, 42, 0.36);
  backdrop-filter: blur(14px);
}

.hero-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: none;
  color: white;
  background: rgba(0, 0, 0, 0.48);
  border-radius: 999px;
  font-size: 32px;
  transform: translateY(-50%);
}

.hero-prev {
  left: 18px;
}

.hero-next {
  right: 18px;
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
}

.hero-dot.is-active {
  width: 30px;
  background: var(--color-amber-400);
}

.hero-search {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 4;
  display: flex;
  width: min(720px, calc(100% - 32px));
  padding: 8px;
  background: rgba(15, 23, 42, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  backdrop-filter: blur(16px);
  transform: translateX(-50%);
}

.hero-search input,
.search-large input {
  padding: 14px 18px;
  color: var(--color-gray-900);
  background: white;
}

.hero-search button,
.search-large button {
  padding: 12px 24px;
  color: white;
  background: var(--color-amber-500);
  border-radius: 999px;
  white-space: nowrap;
}

.stats-strip {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: min(960px, calc(100% - 32px));
  margin: -38px auto 42px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.stats-strip div {
  padding: 22px;
  text-align: center;
  background: white;
}

.stats-strip strong {
  display: block;
  color: var(--color-amber-600);
  font-size: 26px;
}

.stats-strip span {
  color: var(--color-gray-500);
  font-size: 14px;
}

.content-section {
  margin-bottom: 58px;
}

.dark-section {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 38px max(24px, calc((100vw - 1180px) / 2));
  color: white;
  background: linear-gradient(90deg, var(--color-slate-800), var(--color-slate-900));
}

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

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

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

.dark-section .section-heading p {
  color: #cbd5e1;
}

.section-more {
  display: inline-flex;
  padding: 9px 16px;
  color: var(--color-amber-700, #b45309);
  background: var(--color-amber-100);
  border-radius: 999px;
  font-weight: 700;
}

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

.movie-card,
.category-panel,
.info-card,
.side-card,
.synopsis-card,
.filter-panel,
.ranking-row {
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.movie-card {
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.movie-card:hover {
  box-shadow: var(--shadow-card-hover);
}

.poster {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--color-slate-800), var(--color-slate-900));
}

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

.movie-card:hover .poster-img,
.category-panel:hover img,
.ranking-row:hover img {
  transform: scale(1.08);
}

.duration {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 4px 8px;
  color: white;
  background: rgba(0, 0, 0, 0.72);
  border-radius: 7px;
  font-size: 12px;
}

.card-content {
  padding: 16px;
}

.card-kicker {
  margin-bottom: 8px;
  color: var(--color-amber-600);
  font-size: 13px;
  font-weight: 700;
}

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

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

.card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  color: var(--color-gray-500);
  font-size: 13px;
}

.card-meta span:last-child {
  padding: 3px 8px;
  color: var(--color-amber-600);
  background: var(--color-amber-100);
  border-radius: 7px;
}

.horizontal-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 300px;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x proximity;
}

.dark-section .movie-card {
  background: rgba(255, 255, 255, 0.96);
}

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

.category-tile {
  display: grid;
  gap: 8px;
  padding: 24px 18px;
  text-align: center;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.category-tile:hover {
  background: var(--color-amber-50);
  box-shadow: var(--shadow-card-hover);
}

.category-tile span {
  font-size: 36px;
}

.category-tile strong {
  font-size: 18px;
}

.category-tile small {
  color: var(--color-gray-500);
}

.masonry-grid {
  columns: 3 260px;
  column-gap: 22px;
}

.masonry-grid .movie-card {
  break-inside: avoid;
  margin-bottom: 22px;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-cloud a,
.quick-filters button {
  padding: 9px 14px;
  color: var(--color-gray-700);
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.tag-cloud a:hover,
.quick-filters button:hover {
  color: white;
  background: var(--color-amber-500);
  border-color: var(--color-amber-500);
}

.page-main {
  min-height: 70vh;
}

.page-hero {
  position: relative;
  padding: 88px max(24px, calc((100vw - 1180px) / 2));
  color: white;
  background: radial-gradient(circle at top left, rgba(245, 158, 11, 0.32), transparent 30%), linear-gradient(120deg, var(--color-slate-900), var(--color-slate-800));
}

.small-hero {
  padding-top: 72px;
  padding-bottom: 72px;
}

.category-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin: 42px 0 70px;
}

.category-panel {
  padding: 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-panel:hover {
  box-shadow: var(--shadow-card-hover);
}

.category-panel-head {
  display: flex;
  align-items: center;
  gap: 16px;
}

.category-panel-head span {
  font-size: 40px;
}

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

.category-panel p {
  margin: 0;
  color: var(--color-gray-600);
  line-height: 1.6;
}

.category-panel strong {
  margin-left: auto;
  color: var(--color-amber-600);
}

.category-panel ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--color-gray-600);
}

.filter-panel {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr auto;
  gap: 14px;
  align-items: end;
  margin: 34px 0 18px;
  padding: 18px;
}

.filter-panel label {
  display: grid;
  gap: 7px;
  color: var(--color-gray-600);
  font-size: 14px;
  font-weight: 700;
}

.filter-panel input,
.filter-panel select {
  padding: 12px 14px;
  border-color: #e5e7eb;
  border-radius: 12px;
}

.filter-panel button {
  min-height: 45px;
  padding: 0 18px;
  color: white;
  background: var(--color-slate-800);
  border-radius: 12px;
}

.result-count {
  margin: 0 0 18px;
  color: var(--color-gray-500);
}

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

.movie-card-list a {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 150px;
}

.poster-list {
  aspect-ratio: auto;
  height: 100%;
}

.search-large {
  display: flex;
  gap: 10px;
  margin: 32px 0 16px;
  padding: 10px;
  background: white;
  border-radius: 999px;
  box-shadow: var(--shadow-card);
}

.quick-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.ranking-list {
  display: grid;
  gap: 14px;
  margin-bottom: 70px;
}

.ranking-row {
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ranking-row a {
  display: grid;
  grid-template-columns: 72px 120px 1fr 150px;
  gap: 18px;
  align-items: center;
  padding: 14px;
}

.rank-number {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: white;
  background: var(--color-amber-500);
  border-radius: 999px;
}

.rank-cover {
  overflow: hidden;
  height: 78px;
  border-radius: 10px;
  background: var(--color-slate-800);
}

.rank-info h2 {
  margin: 0 0 6px;
  font-size: 20px;
}

.rank-info p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0 0 8px;
  color: var(--color-gray-600);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.rank-info span,
.rank-stats {
  color: var(--color-gray-500);
  font-size: 13px;
}

.rank-stats {
  display: grid;
  gap: 8px;
  justify-items: end;
}

.detail-hero {
  position: relative;
  min-height: 520px;
  color: white;
  overflow: hidden;
  background: var(--color-slate-900);
}

.detail-bg,
.detail-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.detail-bg img {
  object-fit: cover;
  opacity: 0.28;
  filter: blur(2px);
  transform: scale(1.03);
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 34px;
  padding-bottom: 46px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
  color: #cbd5e1;
  font-size: 14px;
}

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

.detail-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 34px;
  align-items: center;
}

.detail-poster {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
  background: var(--color-slate-800);
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.detail-meta span {
  padding: 7px 12px;
  color: #e5e7eb;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.detail-content {
  margin-top: -48px;
  position: relative;
  z-index: 5;
}

.player-section {
  overflow: hidden;
  background: var(--color-slate-950);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.34);
}

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

.movie-player {
  width: 100%;
  height: 100%;
  background: #000;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  border: none;
  color: white;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.08), rgba(2, 6, 23, 0.62));
  cursor: pointer;
}

.play-overlay.is-hidden {
  display: none;
}

.play-overlay span {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  color: var(--color-slate-900);
  background: var(--color-amber-400);
  border-radius: 999px;
  font-size: 30px;
  box-shadow: 0 18px 44px rgba(245, 158, 11, 0.35);
}

.player-caption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
  color: #cbd5e1;
  background: var(--color-slate-900);
}

.player-caption strong {
  color: white;
}

.detail-grid-section {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 22px;
  margin: 34px 0 60px;
}

.synopsis-card,
.side-card {
  padding: 24px;
}

.synopsis-card h2,
.side-card h2 {
  margin: 0 0 16px;
}

.synopsis-card p {
  color: var(--color-gray-700);
  line-height: 1.9;
}

.detail-tags {
  margin-top: 20px;
}

.side-card dl {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  margin: 0;
}

.side-card dt {
  color: var(--color-gray-500);
}

.side-card dd {
  margin: 0;
  color: var(--color-gray-900);
}

.side-card a {
  color: var(--color-amber-600);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 42px 0 70px;
}

.info-card {
  padding: 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-card h2 {
  margin: 0 0 12px;
}

.info-card p {
  margin: 0;
  color: var(--color-gray-600);
  line-height: 1.8;
}

.site-footer {
  margin-top: 70px;
  color: #cbd5e1;
  background: linear-gradient(180deg, var(--color-slate-900), #000);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 46px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.1fr;
  gap: 28px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 20px;
}

.site-footer p,
.site-footer li {
  color: #94a3b8;
  line-height: 1.75;
}

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

.site-footer h3 {
  margin: 0 0 16px;
  color: white;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #64748b;
  font-size: 14px;
}

.footer-bottom div {
  display: flex;
  gap: 16px;
}

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

  .nav-search {
    max-width: 420px;
  }

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

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

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

  .detail-grid-section {
    grid-template-columns: 1fr;
  }
}

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

  .nav-search {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: 620px;
  }

  .hero-content {
    top: 44%;
  }

  .hero h1,
  .page-hero h1,
  .detail-intro h1 {
    font-size: 34px;
  }

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

  .hero-nav {
    top: auto;
    bottom: 150px;
    transform: none;
  }

  .hero-search,
  .search-large {
    flex-direction: column;
    border-radius: 20px;
  }

  .stats-strip,
  .movie-grid,
  .category-grid,
  .category-panels,
  .footer-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

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

  .filter-panel {
    grid-template-columns: 1fr;
  }

  .movie-card-list a,
  .ranking-row a,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .poster-list {
    aspect-ratio: 16 / 10;
  }

  .rank-stats {
    justify-items: start;
  }

  .detail-poster {
    width: min(260px, 80vw);
  }

  .player-caption,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .brand strong {
    font-size: 17px;
  }

  .brand small {
    display: none;
  }

  .content-section {
    margin-bottom: 42px;
  }

  .horizontal-scroll {
    grid-auto-columns: 82vw;
  }
}
