:root {
  color-scheme: dark;
  --bg: #020617;
  --bg-soft: #0f172a;
  --panel: #111827;
  --panel-2: #1e293b;
  --line: rgba(148, 163, 184, 0.18);
  --text: #f8fafc;
  --muted: #94a3b8;
  --muted-2: #cbd5e1;
  --primary: #f97316;
  --primary-2: #dc2626;
  --primary-soft: rgba(249, 115, 22, 0.16);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
  --radius: 18px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 10%, rgba(249, 115, 22, 0.16), transparent 30rem),
    radial-gradient(circle at 82% 20%, rgba(220, 38, 38, 0.12), transparent 28rem),
    linear-gradient(180deg, #020617 0%, #0f172a 46%, #020617 100%);
  min-height: 100vh;
}

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

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

button,
input,
select {
  font: inherit;
}

.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 rgba(148, 163, 184, 0.18);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
  box-shadow: 0 16px 34px rgba(249, 115, 22, 0.35);
  transform: translateZ(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.brand:hover .brand-mark {
  transform: scale(1.08);
  box-shadow: 0 20px 42px rgba(249, 115, 22, 0.48);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-title {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand-subtitle {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link,
.mobile-link {
  color: #cbd5e1;
  border-radius: 12px;
  font-weight: 650;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.nav-link {
  padding: 10px 16px;
}

.nav-link:hover,
.mobile-link:hover {
  color: white;
  background: rgba(71, 85, 105, 0.75);
}

.nav-link.active,
.mobile-link.active {
  color: white;
  background: var(--primary);
  box-shadow: 0 16px 36px rgba(249, 115, 22, 0.28);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(30, 41, 59, 0.95);
  color: white;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: #e2e8f0;
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 14px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.98);
}

.mobile-link {
  display: block;
  padding: 13px 14px;
}

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

.hero-slider {
  position: relative;
  min-height: 70vh;
  overflow: hidden;
  background: #020617;
}

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

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

.hero-image {
  position: absolute;
  inset: 0;
  background: #0f172a;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 6s ease;
}

.hero-slide.active .hero-image img {
  transform: scale(1.08);
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.55), rgba(2, 6, 23, 0.18)),
    linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.12) 56%, rgba(2, 6, 23, 0.28) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  min-height: 70vh;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 88px 0 96px;
}

.hero-copy {
  max-width: 690px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fed7aa;
  background: rgba(249, 115, 22, 0.16);
  border: 1px solid rgba(251, 146, 60, 0.35);
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 750;
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.16);
}

.hero-copy h1 {
  margin: 22px 0 18px;
  font-size: clamp(2.45rem, 7vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.hero-copy p {
  margin: 0;
  color: #e2e8f0;
  font-size: clamp(1rem, 2vw, 1.28rem);
  line-height: 1.8;
  max-width: 620px;
}

.hero-meta,
.detail-meta,
.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-meta {
  margin: 28px 0 30px;
}

.hero-meta span,
.detail-meta span,
.movie-meta span {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  color: #e2e8f0;
  background: rgba(15, 23, 42, 0.68);
  border: 1px solid rgba(148, 163, 184, 0.2);
  backdrop-filter: blur(12px);
}

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

.btn-primary,
.btn-secondary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 19px;
  border-radius: 14px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 18px 42px rgba(249, 115, 22, 0.28);
}

.btn-primary:hover {
  background: #ea580c;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 22px 52px rgba(249, 115, 22, 0.36);
}

.btn-secondary,
.btn-ghost {
  color: white;
  background: rgba(30, 41, 59, 0.72);
  border-color: rgba(148, 163, 184, 0.22);
}

.btn-secondary:hover,
.btn-ghost:hover {
  background: rgba(51, 65, 85, 0.9);
  transform: translateY(-2px);
}

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

.hero-dot {
  width: 42px;
  height: 5px;
  border: 0;
  padding: 0;
  border-radius: 999px;
  background: rgba(226, 232, 240, 0.35);
  cursor: pointer;
}

.hero-dot.active {
  background: var(--primary);
}

.hero-rail {
  position: relative;
  z-index: 5;
  width: min(1180px, calc(100% - 32px));
  margin: -58px auto 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.hero-mini {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 11px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.76);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.hero-mini:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, 0.45);
}

.hero-mini img {
  width: 64px;
  height: 84px;
  object-fit: cover;
  border-radius: 12px;
  background: #1e293b;
}

.hero-mini strong {
  display: block;
  overflow: hidden;
  color: white;
  font-size: 0.92rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-mini span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.78rem;
}

.section {
  padding: 64px 0 0;
}

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

.section-kicker {
  display: inline-flex;
  margin-bottom: 9px;
  color: #fdba74;
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section h2,
.page-hero h1,
.detail-title h1 {
  margin: 0;
  color: white;
  font-size: clamp(1.75rem, 3.6vw, 3rem);
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.section-head p,
.page-hero p,
.category-intro,
.detail-title p {
  margin: 10px 0 0;
  color: var(--muted-2);
  line-height: 1.75;
}

.section-link {
  color: #fdba74;
  font-weight: 780;
}

.section-link:hover {
  color: #fed7aa;
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.96), rgba(15, 23, 42, 0.98));
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.movie-card:hover {
  transform: translateY(-8px);
  border-color: rgba(249, 115, 22, 0.42);
  box-shadow: var(--shadow);
}

.movie-poster {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(249, 115, 22, 0.18), transparent 38%),
    linear-gradient(135deg, #1e293b, #020617);
}

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

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

.movie-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent 46%, rgba(0, 0, 0, 0.18));
  opacity: 0;
  transition: opacity 0.25s ease;
}

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

.year-pill,
.type-pill,
.rank-badge {
  position: absolute;
  z-index: 2;
  top: 10px;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 8px;
  border-radius: 8px;
  color: white;
  font-size: 0.72rem;
  font-weight: 850;
}

.year-pill {
  left: 10px;
  background: var(--primary);
}

.type-pill {
  right: 10px;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(8px);
}

.rank-badge {
  left: 10px;
  top: 44px;
  background: linear-gradient(135deg, #facc15, #f97316);
}

.poster-play {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  box-shadow: 0 18px 40px rgba(249, 115, 22, 0.38);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.24s ease;
}

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

.movie-body {
  padding: 15px;
}

.movie-body h3 {
  margin: 0 0 9px;
  color: white;
  font-size: 1rem;
  line-height: 1.35;
}

.movie-body h3 a {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.movie-body h3 a:hover {
  color: #fb923c;
}

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

.movie-meta {
  gap: 7px;
  margin-bottom: 12px;
}

.movie-meta span {
  padding: 4px 7px;
  color: #cbd5e1;
  font-size: 0.72rem;
  border-radius: 8px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag-row span {
  display: inline-flex;
  color: #fed7aa;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.18);
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 0.72rem;
}

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

.category-card {
  display: flex;
  flex-direction: column;
  min-height: 245px;
  padding: 22px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 24px;
  background:
    radial-gradient(circle at 88% 8%, rgba(249, 115, 22, 0.2), transparent 34%),
    linear-gradient(145deg, rgba(30, 41, 59, 0.98), rgba(15, 23, 42, 0.98));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.category-card:hover {
  transform: translateY(-6px);
  border-color: rgba(249, 115, 22, 0.42);
}

.category-card h2,
.category-card h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.category-card p {
  margin: 0;
  color: var(--muted-2);
  line-height: 1.65;
}

.category-samples {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 22px;
}

.category-samples span {
  padding: 6px 9px;
  border-radius: 999px;
  color: #fed7aa;
  background: rgba(249, 115, 22, 0.1);
}

.category-card .btn-ghost {
  margin-top: auto;
  width: fit-content;
}

.page-hero {
  padding: 64px 0 18px;
}

.page-hero-card {
  padding: 36px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at 10% 10%, rgba(249, 115, 22, 0.18), transparent 36%),
    linear-gradient(135deg, rgba(30, 41, 59, 0.96), rgba(15, 23, 42, 0.98));
  box-shadow: var(--shadow);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumb a {
  color: #fdba74;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(220px, 1.8fr) repeat(3, minmax(150px, 1fr));
  gap: 14px;
  margin: 28px 0 30px;
  padding: 16px;
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.76);
}

.filter-panel label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 720;
}

.filter-panel input,
.filter-panel select {
  min-height: 44px;
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 12px;
  outline: none;
  color: white;
  background: rgba(30, 41, 59, 0.96);
  padding: 0 12px;
}

.filter-panel input:focus,
.filter-panel select:focus {
  border-color: rgba(249, 115, 22, 0.7);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.filter-panel .filter-keyword-label {
  grid-column: span 1;
}

.no-results {
  display: none;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--muted-2);
  background: rgba(15, 23, 42, 0.7);
}

.no-results.show {
  display: block;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: start;
}

.detail-title {
  margin-bottom: 24px;
}

.player-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 26px;
  background: #020617;
  box-shadow: var(--shadow);
}

.player-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(circle at 50% 30%, rgba(249, 115, 22, 0.16), transparent 42%),
    linear-gradient(135deg, #020617, #111827);
}

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

.play-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 0;
  color: white;
  cursor: pointer;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.82), rgba(2, 6, 23, 0.2));
}

.play-overlay span {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-size: 2rem;
  box-shadow: 0 22px 56px rgba(249, 115, 22, 0.4);
  transition: transform 0.22s ease;
}

.play-overlay strong {
  display: block;
  font-size: 1.15rem;
}

.play-overlay:hover span {
  transform: scale(1.08);
}

.player-card.is-playing .play-overlay {
  opacity: 0;
  pointer-events: none;
}

.detail-side {
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.84);
  overflow: hidden;
}

.detail-cover {
  aspect-ratio: 2 / 3;
  background:
    radial-gradient(circle at 50% 20%, rgba(249, 115, 22, 0.18), transparent 40%),
    #111827;
}

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

.detail-info {
  padding: 20px;
}

.detail-info h2 {
  margin: 0 0 14px;
  font-size: 1.2rem;
}

.detail-meta {
  margin-bottom: 16px;
}

.detail-meta span {
  font-size: 0.82rem;
}

.detail-content {
  margin-top: 28px;
  display: grid;
  gap: 22px;
}

.content-card {
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.74);
  padding: 26px;
}

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

.content-card p {
  margin: 0;
  color: var(--muted-2);
  line-height: 1.92;
}

.related-section {
  padding-bottom: 64px;
}

.site-footer {
  margin-top: 72px;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.82), #020617);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 46px 0 34px;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 34px;
}

.footer-brand p {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.7;
}

.footer-links h2 {
  margin: 0 0 14px;
  font-size: 1rem;
}

.footer-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 10px;
}

.footer-links a {
  color: var(--muted);
}

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

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #64748b;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.back-top {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: white;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.32);
}

[hidden] {
  display: none !important;
}

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

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

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

  .detail-side {
    max-width: 420px;
  }
}

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

  .nav-toggle {
    display: block;
  }

  .site-header.open .mobile-nav {
    display: block;
  }

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

  .hero-content {
    align-items: flex-end;
    padding-bottom: 114px;
  }

  .hero-rail {
    margin-top: -34px;
    grid-template-columns: 1fr;
  }

  .hero-mini:nth-child(n + 4) {
    display: none;
  }

  .section-head {
    display: block;
  }

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

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

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

@media (max-width: 540px) {
  .header-inner {
    width: min(100% - 22px, 1180px);
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-title {
    font-size: 1rem;
  }

  .brand-subtitle {
    font-size: 0.72rem;
  }

  .main-wrap,
  .hero-content,
  .hero-rail,
  .footer-inner,
  .footer-bottom {
    width: min(100% - 22px, 1180px);
  }

  .hero-copy h1 {
    font-size: 2.35rem;
  }

  .hero-meta span {
    font-size: 0.78rem;
  }

  .movie-grid,
  .movie-grid.wide-grid,
  .category-grid {
    gap: 12px;
  }

  .movie-body {
    padding: 12px;
  }

  .movie-body p,
  .tag-row {
    display: none;
  }

  .page-hero-card,
  .content-card {
    padding: 22px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
}
