:root {
  --color-pink: #ec4899;
  --color-pink-deep: #db2777;
  --color-orange: #f97316;
  --color-yellow: #facc15;
  --color-text: #111827;
  --color-muted: #6b7280;
  --color-soft: #fff7ed;
  --color-border: #f3f4f6;
  --shadow-soft: 0 12px 32px rgba(17, 24, 39, 0.10);
  --shadow-card: 0 10px 24px rgba(236, 72, 153, 0.12);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--color-text);
  background: linear-gradient(135deg, #fff7ed 0%, #fdf2f8 45%, #fefce8 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.65;
}

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: 80;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(243, 244, 246, 0.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 18px rgba(17, 24, 39, 0.08);
}

.nav-wrap {
  width: min(100% - 32px, var(--max-width));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, #f472b6 0%, #fb923c 100%);
  box-shadow: 0 10px 22px rgba(236, 72, 153, 0.28);
  transition: transform 0.25s ease;
}

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

.brand-text strong {
  display: block;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, var(--color-pink), var(--color-orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-text em {
  display: block;
  margin-top: 2px;
  color: var(--color-muted);
  font-size: 12px;
  font-style: normal;
}

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

.nav-link {
  position: relative;
  color: #374151;
  font-weight: 650;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-pink), var(--color-orange));
  transition: transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--color-pink-deep);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 0;
  border-radius: 12px;
  background: #fff7ed;
  cursor: pointer;
}

.mobile-menu-button span {
  display: block;
  height: 2px;
  margin: 6px 0;
  border-radius: 999px;
  background: #374151;
}

.mobile-nav {
  display: none;
  padding: 0 16px 16px;
  background: rgba(255, 255, 255, 0.98);
}

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

.mobile-nav-link {
  display: block;
  padding: 12px 16px;
  border-radius: 14px;
  color: #374151;
  font-weight: 650;
}

.mobile-nav-link.is-active,
.mobile-nav-link:hover {
  color: #ffffff;
  background: linear-gradient(90deg, var(--color-pink), var(--color-orange));
}

.hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, #f472b6 0%, #fb923c 50%, #facc15 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    radial-gradient(circle at 20px 20px, rgba(255,255,255,0.7) 0 4px, transparent 5px),
    radial-gradient(circle at 52px 52px, rgba(255,255,255,0.5) 0 3px, transparent 4px);
  background-size: 72px 72px;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  background: linear-gradient(0deg, #fff7ed 0%, rgba(255, 247, 237, 0) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(100% - 32px, var(--max-width));
  min-height: 650px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: 56px;
  padding: 56px 0 96px;
}

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

.hero-badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.20);
  border: 1px solid rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(10px);
  font-weight: 650;
}

.hero h1 {
  margin: 24px 0 20px;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero h1 span {
  display: block;
}

.hero-title-line {
  color: #fff7ed;
}

.hero p {
  max-width: 620px;
  margin: 0 0 28px;
  font-size: 19px;
  color: rgba(255, 255, 255, 0.92);
}

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

.button,
.button-ghost,
.section-action,
.pagination a,
.pagination span,
.filter-button,
.video-start {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 750;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.button {
  color: var(--color-pink-deep);
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(255, 255, 255, 0.28);
}

.button:hover,
.section-action:hover,
.filter-button:hover,
.video-start:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 30px rgba(236, 72, 153, 0.22);
}

.button-ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.20);
  border: 1px solid rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(10px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.hero-stat {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(10px);
}

.hero-stat strong {
  display: block;
  font-size: 28px;
  line-height: 1;
}

.hero-stat span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.hero-showcase {
  position: relative;
}

.hero-slider {
  position: relative;
  min-height: 520px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(24px) scale(0.98);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.hero-card {
  position: relative;
  height: 100%;
  min-height: 520px;
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255,255,255,0.24), rgba(255,255,255,0.08));
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: 0 28px 70px rgba(17, 24, 39, 0.24);
}

.hero-image,
.hero-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.08) 0%, rgba(17, 24, 39, 0.70) 100%),
    linear-gradient(90deg, rgba(236, 72, 153, 0.26), rgba(249, 115, 22, 0.24));
}

.hero-card-info {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
}

.hero-card-info h2 {
  margin: 0 0 8px;
  font-size: 30px;
  line-height: 1.15;
}

.hero-card-info p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
}

.hero-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.hero-card-meta span,
.tag-pill,
.movie-card-tags span,
.detail-tags span,
.index-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 650;
}

.hero-card-meta span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.22);
}

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

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

.slider-dot.is-active {
  width: 30px;
  background: #ffffff;
}

.main-section,
.page-section {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  padding: 58px 0;
}

.page-hero {
  padding: 74px 16px;
  color: #ffffff;
  text-align: center;
  background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-orange) 62%, var(--color-yellow) 100%);
}

.page-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.1;
}

.page-hero p {
  max-width: 820px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
}

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

.section-heading h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
  background: linear-gradient(90deg, var(--color-pink-deep), var(--color-orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-heading p {
  margin: 0;
  color: var(--color-muted);
  font-size: 17px;
}

.section-action,
.filter-button {
  color: #ffffff;
  background: linear-gradient(90deg, var(--color-pink), var(--color-orange));
  box-shadow: 0 10px 20px rgba(236, 72, 153, 0.22);
}

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

.feature-card,
.category-card,
.info-card,
.rank-row,
.detail-panel,
.filter-panel,
.index-panel {
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
}

.feature-card {
  padding: 30px;
  text-align: center;
  transition: transform 0.25s ease;
}

.feature-card:hover,
.category-card:hover,
.movie-card:hover,
.info-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f472b6, #fb923c);
}

.feature-card h3,
.category-card h3,
.info-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.feature-card p,
.category-card p,
.info-card p {
  margin: 0;
  color: var(--color-muted);
}

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

.movie-card {
  min-width: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  box-shadow: 0 18px 36px rgba(236, 72, 153, 0.18);
}

.movie-card-link {
  display: block;
  height: 100%;
}

.poster {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #fce7f3, #fed7aa);
}

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

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

.poster::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.70) 100%);
  pointer-events: none;
}

.poster-missing::after {
  content: attr(data-initial);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 56px;
  font-weight: 900;
  background: linear-gradient(135deg, #f472b6, #fb923c, #facc15);
}

.poster-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  padding: 4px 8px;
  border-radius: 10px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  background: linear-gradient(90deg, var(--color-pink), var(--color-orange));
}

.poster-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #ffffff;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.42);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

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

.movie-card-body h3 {
  margin: 0 0 8px;
  min-height: 44px;
  font-size: 16px;
  line-height: 1.35;
}

.movie-card-meta,
.detail-meta,
.rank-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--color-muted);
  font-size: 13px;
}

.movie-card-meta strong,
.rank-score,
.detail-score {
  color: #ca8a04;
}

.movie-card-genre {
  min-height: 22px;
  margin: 8px 0 0;
  color: #4b5563;
  font-size: 13px;
}

.movie-card-desc {
  min-height: 46px;
  margin: 8px 0 0;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.5;
}

.movie-card-tags,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.movie-card-tags span,
.detail-tags span,
.index-chip {
  color: #be185d;
  background: linear-gradient(90deg, #fce7f3, #ffedd5);
}

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

.category-card {
  display: grid;
  grid-template-columns: 1fr 145px;
  gap: 18px;
  padding: 24px;
  overflow: hidden;
  transition: transform 0.25s ease;
}

.category-card h3 {
  font-size: 26px;
}

.category-count {
  display: inline-flex;
  margin: 12px 0;
  padding: 5px 11px;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 700;
  background: linear-gradient(90deg, var(--color-pink), var(--color-orange));
}

.category-mini-posters {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  align-self: center;
}

.category-mini-posters .poster {
  border-radius: 12px;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 56px 90px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 14px;
}

.rank-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 850;
  background: linear-gradient(135deg, var(--color-pink), var(--color-orange));
}

.rank-poster {
  width: 76px;
  border-radius: 12px;
  overflow: hidden;
}

.rank-poster .poster {
  border-radius: 12px;
}

.rank-main h3 {
  margin: 0 0 6px;
  font-size: 19px;
}

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

.rank-hot {
  min-width: 112px;
  padding: 10px 14px;
  border-radius: 16px;
  text-align: center;
  color: #be185d;
  background: #fdf2f8;
  font-weight: 800;
}

.filter-panel {
  padding: 22px;
  margin-bottom: 28px;
}

.filter-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) repeat(3, minmax(140px, 180px));
  gap: 14px;
}

.filter-grid input,
.filter-grid select {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid #f3f4f6;
  border-radius: 14px;
  outline: none;
  background: #ffffff;
}

.filter-grid input:focus,
.filter-grid select:focus {
  border-color: #f9a8d4;
  box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.12);
}

.filter-status {
  margin-top: 14px;
  color: var(--color-muted);
  font-size: 14px;
}

.no-results {
  display: none;
  padding: 44px;
  border-radius: var(--radius-xl);
  text-align: center;
  color: var(--color-muted);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.no-results.is-visible {
  display: block;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.pagination a,
.pagination span {
  min-width: 44px;
  color: var(--color-pink-deep);
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(236, 72, 153, 0.12);
}

.pagination .is-current {
  color: #ffffff;
  background: linear-gradient(90deg, var(--color-pink), var(--color-orange));
}

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

.detail-panel {
  overflow: hidden;
}

.video-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.video-shell video {
  width: 100%;
  height: 100%;
  background: #000000;
}

.video-start {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  color: #ffffff;
  background: linear-gradient(90deg, var(--color-pink), var(--color-orange));
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32);
}

.video-start.is-hidden {
  display: none;
}

.detail-content {
  padding: 28px;
}

.breadcrumb {
  margin: 0 0 18px;
  color: var(--color-muted);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: var(--color-pink-deep);
}

.detail-content h1 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.14;
}

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

.detail-block {
  margin-top: 24px;
}

.detail-block h2 {
  margin: 0 0 8px;
  font-size: 20px;
}

.detail-block p {
  margin: 0;
  color: #374151;
}

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

.detail-side .poster {
  border-radius: 18px;
}

.side-info {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.side-info div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
  background: linear-gradient(90deg, #fdf2f8, #fff7ed);
}

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

.index-panel {
  padding: 24px;
  margin-bottom: 22px;
}

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

.index-chip:hover {
  color: #ffffff;
  background: linear-gradient(90deg, var(--color-pink), var(--color-orange));
}

.site-footer {
  color: #e5e7eb;
  background: #111827;
}

.footer-inner {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  padding: 46px 0;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr 1fr;
  gap: 28px;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: #f9a8d4;
}

.site-footer p,
.site-footer li {
  color: #9ca3af;
}

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

.site-footer a:hover,
.back-top:hover {
  color: #f9a8d4;
}

.footer-logo-row strong {
  display: block;
  color: #ffffff;
  font-size: 22px;
}

.footer-logo-row p {
  margin: 0;
  font-size: 12px;
}

.footer-bottom {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
}

.back-top {
  color: #9ca3af;
  border: 0;
  background: transparent;
  cursor: pointer;
}

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

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

  .hero-inner,
  .detail-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    display: none;
  }

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

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

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

  .detail-side {
    position: static;
  }
}

@media (max-width: 760px) {
  .nav-wrap {
    height: 66px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    font-size: 21px;
  }

  .brand-text strong {
    font-size: 20px;
  }

  .hero,
  .hero-inner {
    min-height: 590px;
  }

  .hero-inner {
    padding: 42px 0 84px;
  }

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

  .hero-stats,
  .feature-strip,
  .category-grid,
  .filter-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .rank-row {
    grid-template-columns: 42px 72px 1fr;
  }

  .rank-hot {
    grid-column: 3;
    justify-self: start;
  }

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