:root {
  --teal: #0d9488;
  --teal-dark: #0f766e;
  --blue: #2563eb;
  --indigo: #4338ca;
  --orange: #f97316;
  --yellow: #f59e0b;
  --slate: #0f172a;
  --muted: #64748b;
  --light: #f8fafc;
  --border: #e2e8f0;
  --shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f8fafc;
  color: #111827;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  box-shadow: 0 8px 26px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: #0f172a;
}

.brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  box-shadow: 0 12px 26px rgba(13, 148, 136, 0.35);
}

.brand-text {
  white-space: nowrap;
  font-size: 20px;
}

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

.nav-links a {
  color: #334155;
  font-weight: 650;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--teal);
}

.header-search {
  display: flex;
  width: min(330px, 34vw);
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}

.header-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  padding: 11px 14px;
  color: #0f172a;
}

.header-search button {
  border: 0;
  padding: 0 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  cursor: pointer;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: #0f172a;
  background: #f1f5f9;
  cursor: pointer;
}

.hero-carousel {
  position: relative;
  height: 640px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--teal), var(--blue), var(--indigo));
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.7s ease, transform 0.9s ease;
}

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

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

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 24%, rgba(20, 184, 166, 0.28), transparent 28%),
    linear-gradient(90deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.58), rgba(15, 23, 42, 0.22)),
    linear-gradient(180deg, rgba(37, 99, 235, 0.18), rgba(248, 250, 252, 0.08));
}

.hero-content {
  position: absolute;
  z-index: 2;
  left: max(32px, calc((100vw - 1180px) / 2));
  top: 50%;
  width: min(720px, calc(100% - 64px));
  color: #fff;
  transform: translateY(-50%);
}

.eyebrow,
.eyebrow-dark {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  color: #dbeafe;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.eyebrow-dark {
  color: var(--teal-dark);
  background: #ccfbf1;
}

.hero-content h1 {
  margin: 0 0 12px;
  font-size: clamp(32px, 6vw, 66px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-content h2 {
  margin: 0 0 16px;
  font-size: clamp(24px, 3.6vw, 44px);
  line-height: 1.12;
}

.hero-content p {
  margin: 0 0 28px;
  color: #dbeafe;
  font-size: clamp(16px, 2vw, 22px);
  max-width: 690px;
}

.hero-actions,
.hero-tags,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 760;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary,
.btn-small {
  color: var(--teal-dark);
  background: #fff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}

.btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.08);
}

.btn-wide {
  width: 100%;
  margin-top: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--blue));
}

.btn-wide.secondary {
  background: linear-gradient(135deg, #475569, #0f172a);
}

.btn-small {
  min-height: 42px;
  padding: 0 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--blue));
}

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

.hero-tags span,
.tag-list span {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.hero-tags span {
  color: #ecfeff;
  background: rgba(255, 255, 255, 0.15);
}

.tag-list span {
  color: #0f766e;
  background: #ccfbf1;
}

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: rgba(15, 23, 42, 0.42);
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(12px);
  font-size: 34px;
  line-height: 1;
}

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

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

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

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

.hero-dots button.active {
  background: #fff;
}

.stat-panel {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: -54px;
  margin-bottom: 70px;
}

.stat-panel article {
  min-height: 150px;
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

.stat-panel article:hover,
.movie-card:hover,
.category-entry:hover {
  transform: translateY(-5px);
}

.stat-panel span {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 15px;
  border-radius: 18px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--teal), var(--blue));
}

.stat-panel strong {
  display: block;
  margin-bottom: 8px;
  font-size: 25px;
}

.stat-panel p,
.category-entry p,
.category-overview-head p {
  margin: 0;
  color: var(--muted);
}

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

.wide-section {
  background: #eef2f7;
}

.section-title,
.category-overview-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.section-title h2,
.category-overview-head h2 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.1;
}

.section-title a {
  color: var(--teal-dark);
  font-weight: 800;
}

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

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.movie-card:hover {
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.14);
}

.card-cover {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, var(--teal), var(--blue));
}

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

.movie-card:hover .card-cover img,
.related-card:hover img,
.ranking-item:hover img {
  transform: scale(1.08);
}

.card-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.05), rgba(15, 23, 42, 0.72));
}

.card-play {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  color: var(--teal);
  background: rgba(255, 255, 255, 0.92);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.75);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

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

.card-meta-top,
.card-year,
.rank-badge {
  position: absolute;
  z-index: 2;
  color: #fff;
  font-size: 12px;
  font-weight: 750;
}

.card-meta-top {
  left: 12px;
  top: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(13, 148, 136, 0.9);
}

.card-year {
  right: 12px;
  bottom: 12px;
  padding: 5px 9px;
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.72);
}

.rank-badge {
  left: 12px;
  bottom: 12px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
}

.card-body {
  padding: 18px;
}

.card-body h3 {
  margin: 0 0 10px;
  min-height: 52px;
  font-size: 18px;
  line-height: 1.35;
}

.card-body h3 a:hover,
.ranking-info h2 a:hover,
.category-overview-head h2 a:hover {
  color: var(--teal-dark);
}

.card-body p {
  margin: 0 0 14px;
  min-height: 46px;
  color: var(--muted);
  font-size: 14px;
}

.category-grid,
.category-nav-grid {
  display: grid;
  gap: 18px;
}

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

.category-nav-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 32px;
}

.category-entry,
.nav-category-link {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.07);
}

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

.category-entry h3 {
  margin: 12px 0 8px;
  font-size: 22px;
}

.category-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--blue));
}

.category-samples {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.category-samples a {
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 700;
}

.nav-category-link {
  display: block;
  padding: 15px 18px;
  color: #334155;
  font-weight: 750;
}

.nav-category-link:hover,
.nav-category-link.active {
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--blue));
}

.page-hero,
.detail-hero {
  position: relative;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--blue), var(--indigo));
  overflow: hidden;
}

.page-hero {
  padding: 76px 0;
}

.page-hero.compact {
  padding: 56px 0;
}

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

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

.catalog-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  padding: 42px 0;
}

.catalog-sidebar {
  position: sticky;
  top: 96px;
  align-self: start;
  padding: 20px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.catalog-sidebar h2 {
  margin: 0 0 14px;
  font-size: 20px;
}

.catalog-sidebar .nav-category-link {
  margin-bottom: 10px;
  box-shadow: none;
}

.tool-bar,
.search-panel {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
}

.tool-bar input,
.tool-bar select,
.search-panel input,
.search-panel select {
  min-height: 48px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  outline: 0;
}

.tool-bar input,
.search-panel input {
  flex: 1;
  padding: 0 16px;
}

.tool-bar select,
.search-panel select {
  padding: 0 14px;
}

.empty-state {
  margin: 36px 0;
  padding: 34px;
  text-align: center;
  color: var(--muted);
  border-radius: 20px;
  background: #fff;
}

.ranking-preview,
.ranking-list {
  display: grid;
  gap: 14px;
}

.ranking-item {
  display: grid;
  grid-template-columns: 58px 154px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}

.ranking-rank {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  color: #fff;
  font-size: 18px;
  font-weight: 850;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
}

.ranking-cover {
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--teal), var(--blue));
}

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

.ranking-info h2 {
  margin: 0 0 8px;
  font-size: 19px;
}

.ranking-info p {
  margin: 0 0 8px;
  color: var(--muted);
}

.ranking-meta {
  color: #64748b;
  font-size: 13px;
}

.ranking-action {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--teal);
  font-weight: 750;
}

.category-overview-block {
  margin-top: 24px;
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
}

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

.detail-backdrop {
  position: absolute;
  inset: 0;
}

.detail-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
  filter: blur(2px);
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.94), rgba(15, 23, 42, 0.72), rgba(15, 23, 42, 0.35));
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  padding: 36px 0 52px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
  color: #dbeafe;
}

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

.detail-title-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: center;
}

.detail-poster {
  width: 220px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 5px solid rgba(255, 255, 255, 0.86);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

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

.detail-title-row p {
  max-width: 780px;
  color: #dbeafe;
  font-size: 18px;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  padding: 42px 0 70px;
}

.player-card,
.content-card,
.side-card {
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
}

.player-card {
  overflow: hidden;
  margin-bottom: 24px;
  background: #000;
}

.video-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  cursor: pointer;
}

.movie-video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
}

.center-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border: 0;
  border-radius: 999px;
  color: var(--teal);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.video-shell.playing .center-play {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.8);
}

.player-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  gap: 12px;
  align-items: center;
  padding: 16px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
}

.player-controls button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
}

.progress-range {
  width: 100%;
  accent-color: var(--teal);
}

.time-label {
  color: #fff;
  font-size: 13px;
  white-space: nowrap;
}

.content-card,
.side-card {
  padding: 24px;
  margin-bottom: 24px;
}

.content-card h2,
.side-card h2 {
  margin: 0 0 14px;
  color: #0f172a;
  font-size: 24px;
}

.content-card p {
  margin: 0;
  color: #334155;
  white-space: pre-line;
}

.info-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.info-list div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.info-list dt {
  color: var(--muted);
  font-weight: 750;
}

.info-list dd {
  margin: 0;
}

.detail-side {
  position: sticky;
  top: 96px;
  align-self: start;
}

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

.related-card {
  display: grid;
  grid-template-columns: 126px 1fr;
  gap: 12px;
  align-items: center;
}

.related-card img {
  width: 126px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.related-card span {
  display: block;
  color: #0f172a;
  font-weight: 750;
}

.related-card small {
  color: var(--muted);
}

.site-footer {
  margin-top: 30px;
  color: #cbd5e1;
  background: linear-gradient(135deg, #1e293b, #0f172a, #134e4a);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 28px;
  padding: 52px 0;
}

.footer-brand {
  margin-bottom: 12px;
  color: #fff;
  font-size: 22px;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 18px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

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

.footer-bottom {
  padding: 18px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #94a3b8;
}

[hidden] {
  display: none !important;
}

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

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

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

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

  .catalog-sidebar,
  .detail-side {
    position: static;
  }

  .ranking-item {
    grid-template-columns: 46px 130px 1fr;
  }

  .ranking-action {
    grid-column: 3;
    width: fit-content;
  }
}

@media (max-width: 760px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 14px;
    padding: 12px 0;
  }

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

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-left: 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 0;
    border-top: 1px solid var(--border);
  }

  .hero-carousel {
    height: 620px;
  }

  .hero-content {
    left: 20px;
    width: calc(100% - 40px);
  }

  .hero-control {
    display: none;
  }

  .stat-panel,
  .footer-grid,
  .detail-title-row {
    grid-template-columns: 1fr;
  }

  .stat-panel {
    margin-top: 22px;
  }

  .movie-grid.four,
  .movie-grid.three,
  .category-grid,
  .category-nav-grid {
    grid-template-columns: 1fr;
  }

  .section-title,
  .category-overview-head,
  .tool-bar,
  .search-panel {
    flex-direction: column;
    align-items: stretch;
  }

  .detail-poster {
    width: 168px;
  }

  .player-controls {
    grid-template-columns: auto 1fr auto;
  }

  .mute-toggle,
  .full-toggle {
    display: none;
  }

  .time-label {
    grid-column: 1 / -1;
  }

  .ranking-item {
    grid-template-columns: 40px 96px 1fr;
    gap: 12px;
  }

  .ranking-info p,
  .ranking-meta {
    display: none;
  }

  .ranking-action {
    grid-column: 1 / -1;
    justify-content: center;
  }
}
