* {
  box-sizing: border-box;
}

:root {
  --bg: #0f172a;
  --bg-2: #111827;
  --panel: #1e293b;
  --panel-soft: rgba(30, 41, 59, 0.72);
  --panel-deep: rgba(15, 23, 42, 0.92);
  --text: #ffffff;
  --muted: #94a3b8;
  --muted-2: #64748b;
  --line: rgba(148, 163, 184, 0.18);
  --amber: #f59e0b;
  --orange: #ea580c;
  --green: #22c55e;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.36);
  --radius: 1rem;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 8%, rgba(245, 158, 11, 0.13), transparent 28rem),
    radial-gradient(circle at 88% 12%, rgba(234, 88, 12, 0.12), transparent 24rem),
    linear-gradient(180deg, #0f172a 0%, #111827 48%, #0f172a 100%);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.96), rgba(15, 23, 42, 0.96));
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px);
}

.nav-shell {
  min-height: 4.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex: 0 0 auto;
}

.brand-mark {
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.28);
  transition: transform 0.3s ease;
}

.brand:hover .brand-mark {
  transform: scale(1.08) rotate(-2deg);
}

.brand-text {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, #fbbf24, #f97316);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  color: #e2e8f0;
  font-weight: 600;
}

.nav-links a {
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #fbbf24;
}

.nav-search {
  display: flex;
  align-items: center;
  width: min(22rem, 28vw);
  min-width: 15rem;
  padding: 0.55rem 0.75rem 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(51, 65, 85, 0.62);
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.nav-search input,
.search-box input,
.filter-input,
.filter-select {
  width: 100%;
  border: 0;
  outline: 0;
  color: #f8fafc;
  background: transparent;
}

.nav-search input::placeholder,
.search-box input::placeholder,
.filter-input::placeholder {
  color: #94a3b8;
}

.icon-button,
.nav-search button,
.search-box button {
  display: grid;
  place-items: center;
  border: 0;
  color: #f8fafc;
  background: transparent;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-search button:hover,
.search-box button:hover,
.icon-button:hover {
  color: #fbbf24;
}

.menu-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  border: 0;
  color: #ffffff;
  background: rgba(51, 65, 85, 0.68);
}

.mobile-menu {
  display: none;
  padding-bottom: 1rem;
}

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

.mobile-menu .nav-search {
  width: 100%;
  min-width: 0;
  margin-bottom: 0.75rem;
}

.mobile-links {
  display: grid;
  gap: 0.25rem;
}

.mobile-links a {
  padding: 0.7rem 1rem;
  border-radius: 0.75rem;
  color: #e2e8f0;
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-links a:hover {
  color: #fbbf24;
  background: rgba(51, 65, 85, 0.72);
}

.hero {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background: #0f172a;
}

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

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.14)),
    linear-gradient(0deg, #0f172a 0%, rgba(15, 23, 42, 0.18) 40%, rgba(15, 23, 42, 0.12) 100%);
}

.hero-content {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 5rem 0 6rem;
}

.hero-copy {
  max-width: 44rem;
  display: grid;
  gap: 1.3rem;
}

.badge-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.badge,
.meta-pill,
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  white-space: nowrap;
}

.badge {
  padding: 0.36rem 0.86rem;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--amber), var(--orange));
}

.badge.dark {
  background: rgba(30, 41, 59, 0.82);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.hero h1,
.page-hero h1,
.detail-title {
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.hero p {
  margin: 0;
  max-width: 42rem;
  color: #cbd5e1;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.85;
}

.hero-meta,
.detail-meta,
.card-meta,
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  color: #94a3b8;
}

.hero-actions,
.section-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.72rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  color: #ffffff;
  font-weight: 800;
  background: rgba(30, 41, 59, 0.74);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.24);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.btn.primary {
  border-color: transparent;
  background: linear-gradient(90deg, var(--amber), var(--orange));
  box-shadow: 0 16px 46px rgba(245, 158, 11, 0.28);
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(245, 158, 11, 0.52);
}

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

.hero-dot {
  width: 1.55rem;
  height: 0.28rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  transition: width 0.3s ease, background 0.3s ease;
}

.hero-dot.active {
  width: 2.4rem;
  background: var(--amber);
}

.section {
  padding: 4.2rem 0;
}

.section.soft {
  background: rgba(30, 41, 59, 0.28);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.section-kicker {
  margin: 0 0 0.35rem;
  color: #fbbf24;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.section-subtitle {
  margin: 0.55rem 0 0;
  max-width: 42rem;
  color: #94a3b8;
}

.grid {
  display: grid;
  gap: 1.25rem;
}

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

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

.movie-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: #1e293b;
  box-shadow: 0 13px 36px rgba(0, 0, 0, 0.24);
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.movie-card:hover {
  transform: translateY(-0.55rem);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.42);
  border-color: rgba(245, 158, 11, 0.28);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #334155;
}

.movie-card.wide .poster-link,
.movie-card.compact .poster-link {
  aspect-ratio: 16 / 9;
}

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

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

.poster-shade {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.18), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.play-circle {
  width: 3.2rem;
  height: 3.2rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: #f59e0b;
  transform: scale(0.6);
  transition: transform 0.28s ease;
}

.movie-card:hover .play-circle {
  transform: scale(1);
}

.year-badge {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  padding: 0.2rem 0.55rem;
  border-radius: 0.55rem;
  background: rgba(0, 0, 0, 0.72);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.card-body {
  padding: 1rem;
}

.card-title {
  margin: 0 0 0.5rem;
  color: #ffffff;
  font-size: 1.05rem;
  line-height: 1.35;
  font-weight: 800;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.25s ease;
}

.movie-card:hover .card-title {
  color: #fbbf24;
}

.card-desc {
  min-height: 2.85rem;
  margin: 0 0 0.85rem;
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.meta-pill {
  padding: 0.24rem 0.5rem;
  color: #cbd5e1;
  font-size: 0.78rem;
  background: rgba(51, 65, 85, 0.82);
}

.scroll-wrap {
  position: relative;
}

.scroll-row {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.25rem 0 1rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.scroll-row::-webkit-scrollbar {
  display: none;
}

.scroll-row > .movie-card {
  flex: 0 0 16rem;
  scroll-snap-align: start;
}

.row-controls {
  display: flex;
  gap: 0.5rem;
}

.row-button {
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 0.75rem;
  color: #ffffff;
  background: #334155;
  transition: background 0.2s ease, transform 0.2s ease;
}

.row-button:hover {
  background: #475569;
  transform: translateY(-1px);
}

.category-card {
  position: relative;
  min-height: 14rem;
  overflow: hidden;
  border-radius: 1.25rem;
  border: 1px solid rgba(148, 163, 184, 0.13);
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.94), rgba(15, 23, 42, 0.88));
  box-shadow: var(--shadow);
  padding: 1.25rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.category-card::before {
  content: "";
  position: absolute;
  inset: auto -3rem -4rem auto;
  width: 11rem;
  height: 11rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.24), transparent 70%);
}

.category-card:hover {
  transform: translateY(-0.45rem);
  border-color: rgba(245, 158, 11, 0.38);
}

.category-card h3 {
  position: relative;
  margin: 0 0 0.6rem;
  font-size: 1.45rem;
}

.category-card p {
  position: relative;
  margin: 0;
  color: #94a3b8;
  line-height: 1.75;
}

.page-hero {
  padding: 4.4rem 0 2.4rem;
  background:
    linear-gradient(135deg, rgba(245, 158, 11, 0.12), transparent 34rem),
    rgba(30, 41, 59, 0.18);
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
}

.page-hero p {
  max-width: 48rem;
  color: #cbd5e1;
  font-size: 1.08rem;
  line-height: 1.8;
}

.breadcrumb {
  margin-bottom: 1.1rem;
  font-size: 0.92rem;
}

.breadcrumb a {
  color: #fbbf24;
}

.filter-panel,
.search-panel {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.85rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 1rem;
  background: rgba(30, 41, 59, 0.54);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
  margin-bottom: 1.5rem;
}

.filter-input,
.filter-select,
.search-box {
  min-height: 2.75rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(15, 23, 42, 0.68);
  color: #f8fafc;
  padding: 0 1rem;
}

.search-box {
  display: flex;
  align-items: center;
  padding: 0 0.5rem 0 1rem;
}

.search-box input {
  min-height: 2.75rem;
}

.search-layout {
  display: grid;
  gap: 1.5rem;
}

.search-results {
  min-height: 18rem;
}

.empty-state {
  display: none;
  padding: 3rem 1rem;
  text-align: center;
  color: #94a3b8;
  border: 1px dashed rgba(148, 163, 184, 0.22);
  border-radius: 1rem;
  background: rgba(30, 41, 59, 0.36);
}

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

.detail-hero {
  padding: 2rem 0 1rem;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 21rem;
  gap: 1.5rem;
  align-items: start;
}

.player-card,
.detail-card,
.side-card {
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 1.25rem;
  background: rgba(30, 41, 59, 0.58);
  box-shadow: var(--shadow);
  overflow: hidden;
}

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

.player-shell video {
  width: 100%;
  height: 100%;
  display: block;
  background: #020617;
}

.player-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 0;
  padding: 0;
  color: #ffffff;
  background: rgba(2, 6, 23, 0.25);
  z-index: 2;
}

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

.player-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.74;
}

.player-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.88), rgba(2, 6, 23, 0.3));
}

.big-play {
  position: relative;
  z-index: 3;
  width: 5rem;
  height: 5rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 18px 48px rgba(245, 158, 11, 0.34);
  transition: transform 0.25s ease;
}

.player-cover:hover .big-play {
  transform: scale(1.07);
}

.detail-card {
  padding: 1.35rem;
}

.detail-title {
  font-size: clamp(2rem, 4vw, 3.7rem);
  margin-bottom: 0.95rem;
}

.detail-meta {
  margin-bottom: 1rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.1rem 0;
}

.tag {
  padding: 0.3rem 0.65rem;
  color: #fde68a;
  font-size: 0.85rem;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.22);
}

.prose {
  color: #cbd5e1;
}

.prose h2,
.prose h3 {
  color: #ffffff;
  line-height: 1.2;
}

.prose p {
  margin: 0.75rem 0 1.2rem;
  line-height: 1.9;
}

.side-card {
  padding: 1rem;
}

.side-card h2 {
  margin: 0 0 1rem;
  font-size: 1.25rem;
}

.related-list {
  display: grid;
  gap: 0.8rem;
}

.related-item {
  display: grid;
  grid-template-columns: 5.8rem 1fr;
  gap: 0.75rem;
  padding: 0.55rem;
  border-radius: 0.9rem;
  background: rgba(15, 23, 42, 0.52);
  transition: background 0.2s ease, transform 0.2s ease;
}

.related-item:hover {
  transform: translateX(0.2rem);
  background: rgba(51, 65, 85, 0.72);
}

.related-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 0.65rem;
  background: #334155;
}

.related-title {
  margin: 0 0 0.25rem;
  font-weight: 800;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-meta {
  color: #94a3b8;
  font-size: 0.82rem;
}

.rank-section {
  display: grid;
  gap: 1rem;
}

.ranking-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ranking-item {
  display: grid;
  grid-template-columns: 3rem 9rem 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.8rem;
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(30, 41, 59, 0.56);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.ranking-item:hover {
  transform: translateY(-0.2rem);
  border-color: rgba(245, 158, 11, 0.32);
}

.rank-num {
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  border-radius: 0.75rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--amber), var(--orange));
}

.ranking-item img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 0.75rem;
  background: #334155;
}

.ranking-title {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  font-weight: 900;
}

.ranking-desc {
  margin: 0;
  color: #94a3b8;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.site-footer {
  margin-top: 4rem;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.98), rgba(15, 23, 42, 0.98));
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 2rem;
  padding: 3rem 0 2rem;
}

.footer-title {
  margin: 0 0 0.8rem;
  font-size: 1.05rem;
  font-weight: 900;
}

.footer-text,
.footer-links a,
.footer-bottom {
  color: #94a3b8;
  font-size: 0.92rem;
}

.footer-links {
  display: grid;
  gap: 0.48rem;
}

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

.footer-bottom {
  padding: 1.2rem 0 2rem;
  border-top: 1px solid var(--line);
}

.hidden-card {
  display: none !important;
}

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

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

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

@media (max-width: 860px) {
  .nav-links,
  .nav-shell > .nav-search {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

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

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

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

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

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

  .ranking-item {
    grid-template-columns: 2.5rem 7rem 1fr;
  }

  .ranking-item .btn {
    grid-column: 1 / -1;
  }

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

@media (max-width: 620px) {
  .container {
    width: min(100% - 1.2rem, 1180px);
  }

  .nav-shell {
    min-height: 4.15rem;
  }

  .brand-mark {
    width: 2rem;
    height: 2rem;
  }

  .brand-text {
    font-size: 1.15rem;
  }

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

  .hero-copy {
    gap: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 3rem 0;
  }

  .movie-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
  }

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

  .card-body {
    padding: 0.78rem;
  }

  .card-title {
    font-size: 0.98rem;
  }

  .scroll-row > .movie-card {
    flex-basis: 13.5rem;
  }

  .ranking-item {
    grid-template-columns: 2.4rem 1fr;
  }

  .ranking-item img {
    display: none;
  }

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

  .related-item {
    grid-template-columns: 5rem 1fr;
  }
}
