:root {
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --blue-700: #1d4ed8;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --yellow-400: #facc15;
  --red-500: #ef4444;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --white: #ffffff;
  --shadow-soft: 0 18px 50px rgba(15, 23, 42, 0.14);
  --shadow-card: 0 12px 30px rgba(15, 23, 42, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--gray-50);
  color: var(--gray-900);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, var(--slate-900), var(--slate-800), var(--slate-900));
  color: var(--white);
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.25);
}

.nav-wrap {
  max-width: 1280px;
  height: 64px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.35);
  font-size: 15px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 600;
}

.nav-link {
  color: rgba(255, 255, 255, 0.84);
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
  color: #93c5fd;
}

.nav-search,
.mobile-search {
  display: flex;
  align-items: center;
  min-width: 280px;
}

.nav-search input,
.mobile-search input,
.filter-bar input,
.filter-bar select {
  width: 100%;
  border: 0;
  outline: 0;
  background: rgba(15, 23, 42, 0.72);
  color: var(--white);
  border-radius: 999px 0 0 999px;
  padding: 10px 15px;
}

.nav-search input::placeholder,
.mobile-search input::placeholder,
.filter-bar input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.nav-search button,
.mobile-search button,
.filter-bar button {
  border: 0;
  padding: 10px 16px;
  color: var(--white);
  background: var(--blue-600);
  border-radius: 0 999px 999px 0;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-search button:hover,
.mobile-search button:hover,
.filter-bar button:hover,
.primary-btn:hover {
  background: var(--blue-700);
}

.mobile-toggle {
  display: none;
  color: var(--white);
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 8px 11px;
  font-size: 22px;
  cursor: pointer;
}

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

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

.mobile-search {
  margin-bottom: 14px;
  min-width: 0;
}

.mobile-link {
  display: block;
  padding: 10px 4px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.hero-slider {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: var(--slate-900);
}

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

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

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

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
  transform: scale(1.03);
}

.hero-shade,
.page-hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 22%, rgba(37, 99, 235, 0.34), transparent 34%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.78) 46%, rgba(15, 23, 42, 0.96));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  min-height: 640px;
  margin: 0 auto;
  padding: 92px 24px 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: var(--white);
}

.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--yellow-400);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-kicker::before,
.section-kicker::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 20px currentColor;
}

.hero-content h1,
.hero-content h2 {
  max-width: 780px;
  margin: 0 0 22px;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.hero-content p {
  max-width: 760px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2.3vw, 24px);
  line-height: 1.8;
}

.hero-tags,
.detail-tags,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.hero-tags span,
.detail-tags span,
.tag-row span {
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  font-size: 13px;
  font-weight: 700;
}

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

.primary-btn,
.glass-btn,
.plain-btn,
.category-enter,
.small-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.primary-btn {
  color: var(--white);
  background: var(--blue-600);
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.32);
}

.glass-btn {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.plain-btn {
  color: #bfdbfe;
  padding-left: 10px;
  padding-right: 10px;
}

.primary-btn:hover,
.glass-btn:hover,
.category-enter:hover {
  transform: translateY(-2px);
}

.hero-bottom-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 3;
  color: var(--gray-50);
}

.hero-bottom-wave svg {
  width: 100%;
  height: 110px;
  display: block;
}

.hero-bottom-wave path {
  fill: currentColor;
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
}

.hero-dot.is-active {
  width: 34px;
  background: var(--blue-500);
}

.hero-mini-list {
  position: absolute;
  right: max(24px, calc((100vw - 1280px) / 2 + 24px));
  bottom: 126px;
  z-index: 4;
  width: min(420px, calc(100% - 48px));
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.hero-mini {
  position: relative;
  overflow: hidden;
  min-height: 120px;
  border-radius: 18px;
  background: var(--slate-800);
  box-shadow: 0 12px 34px rgba(2, 6, 23, 0.35);
}

.hero-mini img {
  width: 100%;
  height: 100%;
  min-height: 120px;
  object-fit: cover;
  opacity: 0.84;
}

.hero-mini span {
  position: absolute;
  left: 9px;
  right: 9px;
  bottom: 9px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  text-shadow: 0 2px 9px rgba(0, 0, 0, 0.7);
}

.section-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 24px;
}

.intro-panel,
.white-panel,
.story-card,
.ranking-panel,
.category-overview-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.intro-panel {
  margin-top: -34px;
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
}

.intro-panel h2,
.section-title-row h2,
.story-card h2,
.category-overview-body h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.intro-panel p,
.page-hero p,
.category-card p,
.category-overview-body p,
.story-card p {
  margin: 12px 0 0;
  color: var(--gray-500);
  line-height: 1.9;
  font-size: 16px;
}

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

.section-title-row a {
  color: var(--blue-600);
  font-weight: 800;
}

.movie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 24px;
}

.compact-grid {
  grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
}

.movie-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.18);
}

.poster-frame {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--slate-800), var(--slate-600));
}

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

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

.quality-badge,
.year-badge,
.rank-badge {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  padding: 5px 9px;
}

.quality-badge {
  top: 10px;
  right: 10px;
  background: rgba(37, 99, 235, 0.92);
}

.year-badge {
  left: 10px;
  bottom: 10px;
  background: rgba(2, 6, 23, 0.72);
}

.rank-badge {
  left: 10px;
  top: 10px;
  background: rgba(239, 68, 68, 0.95);
}

.movie-card-body {
  padding: 15px;
}

.movie-title {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 45px;
  color: var(--gray-900);
  font-size: 17px;
  line-height: 1.35;
  font-weight: 900;
}

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

.movie-meta {
  margin: 8px 0 8px;
  color: var(--gray-500);
  font-size: 13px;
  line-height: 1.5;
}

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

.tag-row span {
  background: var(--gray-100);
  color: var(--gray-700);
  backdrop-filter: none;
  padding: 5px 8px;
  font-size: 12px;
}

.white-panel {
  max-width: none;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
}

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

.category-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--white), #eff6ff);
  border: 1px solid #dbeafe;
  box-shadow: var(--shadow-card);
}

.category-title {
  color: var(--gray-900);
  font-size: 22px;
  font-weight: 900;
}

.category-samples {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 16px 0 20px;
}

.category-samples a {
  color: var(--gray-700);
  font-weight: 700;
}

.category-enter {
  color: var(--blue-600);
  background: #dbeafe;
  padding: 9px 16px;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 30px;
  align-items: start;
}

.compact-row {
  margin-bottom: 20px;
}

.ranking-panel {
  padding: 18px;
}

.sticky-panel {
  position: sticky;
  top: 86px;
}

.ranking-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  color: var(--gray-900);
  font-size: 20px;
  font-weight: 900;
}

.ranking-head a {
  color: var(--blue-600);
  font-size: 14px;
}

.mini-movie {
  display: grid;
  grid-template-columns: auto 54px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 16px;
  transition: background 0.2s ease;
}

.mini-movie:hover {
  background: var(--gray-100);
}

.mini-movie img {
  width: 54px;
  height: 74px;
  border-radius: 12px;
  object-fit: cover;
  background: var(--slate-800);
}

.mini-movie strong {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: var(--gray-900);
  line-height: 1.45;
}

.mini-movie em {
  display: block;
  margin-top: 4px;
  color: var(--gray-500);
  font-size: 12px;
  font-style: normal;
}

.mini-rank {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--red-500);
  font-size: 12px;
  font-weight: 900;
}

.site-footer {
  margin-top: 50px;
  background: var(--slate-900);
  color: rgba(255, 255, 255, 0.82);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 36px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer-links {
  display: flex;
  gap: 18px;
  font-weight: 700;
}

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

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 80% 10%, rgba(59, 130, 246, 0.28), transparent 32%), linear-gradient(135deg, var(--slate-900), var(--slate-800));
  color: var(--white);
}

.page-hero > div:not(.page-hero-shade) {
  position: relative;
  z-index: 2;
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 72px 24px;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.page-hero p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.8);
}

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

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
}

.detail-head .crumbs {
  color: rgba(255, 255, 255, 0.72);
}

.crumbs a:hover {
  color: #bfdbfe;
}

.filter-bar {
  display: grid;
  grid-template-columns: 140px minmax(220px, 1fr) repeat(3, minmax(135px, 170px)) 90px;
  gap: 12px;
  align-items: center;
  margin-bottom: 28px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: var(--slate-900);
  box-shadow: var(--shadow-card);
}

.filter-heading {
  color: var(--white);
  font-weight: 900;
}

.filter-bar input,
.filter-bar select {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.filter-bar button {
  border-radius: 999px;
}

.empty-state {
  display: none;
  margin: 26px 0;
  padding: 28px;
  text-align: center;
  color: var(--gray-500);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.empty-state.is-visible {
  display: block;
}

.category-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 28px;
}

.category-overview-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
}

.category-cover {
  position: relative;
  min-height: 290px;
  background: var(--slate-800);
}

.category-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
}

.category-cover span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.72);
}

.category-overview-body {
  padding: 24px;
}

.mini-list {
  margin: 18px 0;
}

.small-btn {
  padding: 9px 18px;
}

.detail-head {
  position: relative;
  display: grid;
  grid-template-columns: minmax(230px, 340px) minmax(0, 1fr);
  gap: 34px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 24px;
  color: var(--white);
}

.detail-head::before {
  content: "";
  position: absolute;
  inset: 0 calc(50% - 50vw);
  background: radial-gradient(circle at 80% 16%, rgba(59, 130, 246, 0.26), transparent 32%), linear-gradient(135deg, var(--slate-950), var(--slate-800));
  z-index: -1;
}

.detail-cover {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: 0 26px 70px rgba(2, 6, 23, 0.45);
  background: var(--slate-800);
}

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

.detail-info {
  align-self: center;
}

.detail-info h1 {
  margin: 0 0 20px;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.detail-one-line {
  max-width: 850px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  line-height: 1.85;
}

.detail-tags span {
  background: rgba(255, 255, 255, 0.12);
}

.player-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 42px 24px 10px;
}

.video-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-xl);
  background: var(--slate-950);
  box-shadow: 0 26px 70px rgba(2, 6, 23, 0.35);
}

.video-shell video {
  width: 100%;
  height: 100%;
  background: var(--slate-950);
  object-fit: contain;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  color: var(--white);
  background: radial-gradient(circle at center, rgba(37, 99, 235, 0.34), rgba(2, 6, 23, 0.6));
  cursor: pointer;
}

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

.play-icon {
  width: 76px;
  height: 76px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-600);
  box-shadow: 0 18px 38px rgba(37, 99, 235, 0.42);
  font-size: 30px;
}

.player-overlay strong {
  font-size: 20px;
  letter-spacing: 0.08em;
}

.detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.story-card {
  padding: 28px;
}

.story-card p {
  color: var(--gray-700);
  font-size: 17px;
}

.ranking-grid {
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
}

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

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

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

  .hero-mini-list {
    display: none;
  }

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

  .sticky-panel {
    position: static;
  }

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

  .filter-heading {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .nav-wrap {
    padding: 0 16px;
  }

  .logo-text {
    font-size: 17px;
  }

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

  .hero-content {
    padding: 70px 18px 130px;
  }

  .hero-content h1,
  .hero-content h2 {
    font-size: 42px;
  }

  .hero-content p {
    font-size: 17px;
  }

  .section-wrap {
    padding: 42px 16px;
  }

  .intro-panel {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }

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

  .movie-grid,
  .compact-grid,
  .ranking-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .movie-card-body {
    padding: 12px;
  }

  .movie-title {
    font-size: 15px;
    min-height: 40px;
  }

  .movie-line {
    display: none;
  }

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

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

  .category-cover {
    min-height: 240px;
  }

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

  .detail-head {
    grid-template-columns: 1fr;
    padding: 34px 16px;
  }

  .detail-cover img {
    min-height: 0;
  }

  .detail-info h1 {
    font-size: 40px;
  }

  .player-section {
    padding: 28px 16px 0;
  }

  .video-shell {
    border-radius: 18px;
  }

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

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 16px;
  }
}

@media (max-width: 430px) {
  .movie-grid,
  .compact-grid,
  .ranking-grid {
    grid-template-columns: 1fr;
  }

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