:root {
  --bg: #f9fafb;
  --surface: #ffffff;
  --ink: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --blue: #2563eb;
  --blue-light: #3b82f6;
  --cyan: #06b6d4;
  --teal: #14b8a6;
  --pink: #ec4899;
  --dark: #111827;
  --radius: 1.25rem;
  --shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

img,
video {
  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.92);
  border-bottom: 1px solid rgba(229, 231, 235, 0.85);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(14px);
}

.nav-shell,
.footer-shell,
.section-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

.logo-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.85rem;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}

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

.nav-link {
  color: #374151;
  border: 0;
  background: transparent;
  padding: 9px 2px;
  cursor: pointer;
  font-weight: 650;
  transition: color 0.2s ease;
}

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

.nav-group {
  position: relative;
}

.nav-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  min-width: 160px;
  padding: 10px;
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  display: none;
}

.nav-group:hover .nav-menu {
  display: grid;
  gap: 4px;
}

.nav-sublink {
  padding: 9px 12px;
  border-radius: 12px;
  color: #4b5563;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-sublink:hover {
  background: #eff6ff;
  color: var(--blue);
}

.mobile-toggle {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: #374151;
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 18px;
}

.mobile-nav.open {
  display: grid;
  gap: 8px;
}

.mobile-nav a {
  padding: 10px 12px;
  border-radius: 12px;
  color: #374151;
  font-weight: 650;
}

.mobile-nav a:hover {
  background: #eff6ff;
  color: var(--blue);
}

.hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.25), transparent 24%),
    radial-gradient(circle at 86% 22%, rgba(236, 72, 153, 0.22), transparent 26%),
    linear-gradient(135deg, #2563eb 0%, #06b6d4 50%, #14b8a6 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.11) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.38;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 130px;
  background: linear-gradient(to bottom, transparent, var(--bg));
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  min-height: 640px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 56px;
  align-items: center;
  padding: 72px 0 96px;
}

.hero-copy h1 {
  margin: 0 0 20px;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 1;
  letter-spacing: -0.08em;
}

.hero-copy p {
  max-width: 680px;
  margin: 0 0 30px;
  color: #eff6ff;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-search {
  display: flex;
  max-width: 620px;
  padding: 8px;
  margin: 0 0 26px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

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

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

.hero-search button,
.primary-button,
.secondary-button,
.text-button {
  border: 0;
  cursor: pointer;
  font-weight: 800;
}

.hero-search button,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  color: var(--blue);
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-button:hover,
.hero-search button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.22);
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.85);
  background: transparent;
  transition: color 0.2s ease, background 0.2s ease;
}

.secondary-button:hover {
  color: var(--blue);
  background: #ffffff;
}

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

.hero-panel {
  position: relative;
}

.hero-slide {
  display: none;
  overflow: hidden;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(14px);
}

.hero-slide.active {
  display: block;
  animation: fadeIn 0.6s ease both;
}

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

.hero-slide-content {
  padding: 24px;
}

.hero-slide-content h2 {
  margin: 0 0 10px;
  font-size: 1.55rem;
  line-height: 1.2;
}

.hero-slide-content p {
  margin: 0 0 18px;
  color: #e0f2fe;
}

.hero-slide-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.hero-slide-tags span {
  padding: 5px 10px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.82rem;
  background: rgba(255, 255, 255, 0.18);
}

.hero-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

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

.hero-dots button.active {
  width: 26px;
  background: #ffffff;
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: #ffffff;
}

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

.section-kicker {
  margin: 0 0 8px;
  color: var(--blue);
  font-weight: 800;
}

.section-head h2,
.page-hero h1,
.detail-title h1 {
  margin: 0;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.section-head p {
  max-width: 650px;
  margin: 8px 0 0;
  color: var(--muted);
}

.text-button {
  color: var(--blue);
  background: transparent;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}

.metric-card {
  padding: 28px;
  border-radius: var(--radius);
  text-align: center;
  background: var(--surface);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.metric-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.metric-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.25rem;
}

.metric-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

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

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

.movie-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.09);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.card-poster {
  position: relative;
  display: block;
  height: 290px;
  overflow: hidden;
  background: #dbeafe;
}

.movies-grid.dense .card-poster {
  height: 250px;
}

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

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

.poster-badge,
.poster-year {
  position: absolute;
  z-index: 2;
  max-width: calc(100% - 18px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 5px 9px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
  background: rgba(37, 99, 235, 0.92);
}

.poster-badge {
  top: 10px;
  right: 10px;
}

.poster-year {
  left: 10px;
  bottom: 10px;
  background: rgba(17, 24, 39, 0.78);
}

.card-body {
  padding: 18px;
}

.card-title {
  display: -webkit-box;
  min-height: 3rem;
  margin-bottom: 8px;
  overflow: hidden;
  color: #111827;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: color 0.2s ease;
}

.movie-card:hover .card-title {
  color: var(--blue);
}

.card-body p {
  display: -webkit-box;
  min-height: 2.9rem;
  margin: 0 0 12px;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #6b7280;
  font-size: 0.82rem;
}

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

.category-card {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  padding: 26px;
  border-radius: 28px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: var(--shadow);
}

.category-card:nth-child(2n) {
  background: linear-gradient(135deg, var(--pink), #9333ea);
}

.category-card:nth-child(3n) {
  background: linear-gradient(135deg, #0f766e, var(--teal));
}

.category-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 138px;
  height: 138px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.category-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  font-size: 1.45rem;
}

.category-card p {
  position: relative;
  z-index: 1;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.86);
}

.category-card span {
  position: relative;
  z-index: 1;
  font-weight: 800;
}

.page-hero {
  padding: 78px 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.2), transparent 26%),
    linear-gradient(135deg, var(--blue), var(--cyan));
}

.page-hero h1 {
  max-width: 920px;
  color: #ffffff;
  font-size: clamp(2.3rem, 5vw, 4rem);
}

.page-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: #dbeafe;
  font-size: 1.12rem;
}

.browse-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 74px;
}

.search-panel {
  margin-bottom: 30px;
  padding: 22px;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
}

.search-panel input {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d1d5db;
  border-radius: 16px;
  outline: none;
  padding: 0 16px;
  color: #111827;
}

.search-panel input:focus {
  border-color: transparent;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.filter-row button {
  border: 0;
  padding: 8px 14px;
  border-radius: 999px;
  color: #4b5563;
  background: #f3f4f6;
  cursor: pointer;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease;
}

.filter-row button.active,
.filter-row button:hover {
  color: #ffffff;
  background: var(--blue);
}

.empty-state {
  display: none;
  padding: 40px;
  border: 1px dashed #d1d5db;
  border-radius: 24px;
  text-align: center;
  color: var(--muted);
  background: #ffffff;
}

.empty-state.show {
  display: block;
}

.rank-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 30px;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 54px 96px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 14px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
}

.rank-num {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.rank-item img {
  width: 96px;
  height: 132px;
  object-fit: cover;
  border-radius: 16px;
}

.rank-item h2,
.rank-item h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
  line-height: 1.3;
}

.rank-item p {
  display: -webkit-box;
  margin: 0 0 10px;
  overflow: hidden;
  color: var(--muted);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.rank-side {
  position: sticky;
  top: 96px;
  align-self: start;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, #111827, #1f2937);
  color: #ffffff;
}

.rank-side h2 {
  margin: 0 0 18px;
}

.rank-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 16px;
  color: #e5e7eb;
  transition: background 0.2s ease;
}

.rank-card:hover {
  background: rgba(255, 255, 255, 0.08);
}

.rank-card img {
  width: 64px;
  height: 82px;
  object-fit: cover;
  border-radius: 12px;
}

.detail-hero {
  color: #ffffff;
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.18), transparent 25%),
    linear-gradient(135deg, #111827 0%, #1e3a8a 52%, #0891b2 100%);
}

.detail-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: #bfdbfe;
  font-size: 0.92rem;
}

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

.detail-top {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 36px;
  align-items: end;
}

.detail-cover {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.detail-cover img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.detail-title h1 {
  color: #ffffff;
  font-size: clamp(2.25rem, 6vw, 4rem);
}

.detail-title p {
  max-width: 760px;
  margin: 18px 0 0;
  color: #dbeafe;
  font-size: 1.12rem;
}

.detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}

.detail-badges span,
.tag {
  padding: 7px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
}

.detail-main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 46px 0 78px;
}

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

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

.player-start {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: #ffffff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.2));
  cursor: pointer;
  z-index: 3;
}

.player-start.hidden {
  display: none;
}

.player-start span {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 20px 45px rgba(37, 99, 235, 0.38);
  font-size: 2rem;
}

.content-card {
  margin-top: 26px;
  padding: 28px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.content-card h2 {
  margin: 0 0 14px;
  font-size: 1.5rem;
}

.content-card p {
  margin: 0;
  color: #4b5563;
}

.content-card p + p {
  margin-top: 12px;
}

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

.tags .tag {
  color: var(--blue);
  background: #eff6ff;
}

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

.site-footer {
  color: #d1d5db;
  background: linear-gradient(135deg, #111827, #1f2937);
}

.footer-shell {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1.6fr;
  gap: 34px;
  padding: 48px 0;
}

.footer-logo {
  color: #ffffff;
  -webkit-background-clip: initial;
  background-clip: initial;
  background: transparent;
}

.footer-brand p {
  max-width: 420px;
  margin: 14px 0 0;
  color: #9ca3af;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #d1d5db;
}

.footer-links a:hover {
  color: #60a5fa;
}

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

.footer-bottom {
  padding: 18px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  color: #9ca3af;
  font-size: 0.92rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

[data-card].hidden {
  display: none;
}

@media (max-width: 1100px) {
  .hero-inner,
  .detail-top,
  .rank-layout {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 520px;
  }

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

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

  .rank-side {
    position: static;
  }
}

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

  .mobile-toggle {
    display: inline-flex;
  }

  .hero-inner {
    min-height: auto;
    padding: 52px 0 88px;
  }

  .hero-search {
    border-radius: 24px;
    flex-direction: column;
    gap: 8px;
  }

  .hero-search input {
    min-height: 44px;
  }

  .hero-slide img {
    height: 260px;
  }

  .section {
    padding: 48px 0;
  }

  .section-head {
    display: block;
  }

  .metrics,
  .movies-grid,
  .movies-grid.dense,
  .category-grid,
  .recommend-grid,
  .footer-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-poster,
  .movies-grid.dense .card-poster {
    height: 220px;
  }

  .rank-item {
    grid-template-columns: 44px 82px 1fr;
    gap: 12px;
  }

  .rank-item img {
    width: 82px;
    height: 112px;
  }

  .detail-cover {
    max-width: 240px;
  }

  .detail-cover img {
    height: 330px;
  }

  .content-card {
    padding: 22px;
  }
}

@media (max-width: 520px) {
  .nav-shell,
  .footer-shell,
  .section-shell,
  .browse-shell,
  .detail-shell,
  .detail-main {
    width: min(100% - 24px, 1180px);
  }

  .metrics,
  .movies-grid,
  .movies-grid.dense,
  .category-grid,
  .recommend-grid,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .card-poster,
  .movies-grid.dense .card-poster {
    height: 320px;
  }

  .rank-item {
    grid-template-columns: 42px 76px 1fr;
  }

  .rank-item img {
    width: 76px;
    height: 104px;
  }

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