:root {
  color-scheme: dark;
  --bg: #000000;
  --bg-elevated: #131316;
  --line: rgba(255, 255, 255, 0.07);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #f4f4f5;
  --muted: #71717a;
  --subtle: #52525b;
  --accent: #ffffff;
  --brand: #ffa8c5;
  --brand-text: #08080a;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Microsoft YaHei", sans-serif;
  letter-spacing: -0.01em;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

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

button {
  font: inherit;
  cursor: pointer;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 56px;
  padding: 0 32px;
  height: 60px;
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(16px);
}

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

.brand-logo {
  display: block;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.brand-name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.primary-nav {
  position: relative;
  display: flex;
  flex: 1;
  align-self: stretch;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}

.primary-nav::-webkit-scrollbar {
  display: none;
}

.primary-nav button {
  position: relative;
  z-index: 1;
  padding: 6px 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(244, 244, 245, 0.72);
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
  transition: color 200ms ease;
}

.primary-nav button:hover {
  color: var(--text);
}

.primary-nav button.active {
  color: var(--brand-text);
  font-weight: 600;
}

.nav-indicator {
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 32px;
  background: var(--brand);
  pointer-events: none;
  border-radius: 999px;
  will-change: transform, width;
}

.topbar-actions {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.topbar-link {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--muted);
  transition:
    color 200ms ease,
    background 200ms ease;
}

.topbar-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.topbar-link svg {
  display: block;
  width: 18px;
  height: 18px;
}

.topbar-link-text {
  width: auto;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.topbar-star {
  width: auto;
  padding: 0 10px 0 9px;
  gap: 6px;
  border: 1px solid var(--line-strong);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.topbar-star:hover {
  border-color: rgba(255, 255, 255, 0.28);
}

.topbar-star svg {
  width: 16px;
  height: 16px;
}

.topbar-star-count {
  display: inline-flex;
  align-items: center;
  min-width: 18px;
  justify-content: center;
  padding-left: 6px;
  border-left: 1px solid var(--line-strong);
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  transition: color 200ms ease;
}

.topbar-star:hover .topbar-star-count {
  color: var(--text);
}

.layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  flex: 1 0 auto;
}

.layout[data-view="home"] {
  grid-template-columns: 1fr;
}

.layout[data-view="home"] .sidebar {
  display: none;
}

.sidebar {
  position: sticky;
  top: 60px;
  align-self: start;
  height: calc(100vh - 60px);
  padding: 18px 12px;
  overflow-y: auto;
  border-right: 1px solid var(--line);
}

.sidebar::-webkit-scrollbar {
  width: 6px;
}

.sidebar::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.sub-wrap {
  position: relative;
}

.sub-pill {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-radius: 8px;
  background: var(--brand);
  pointer-events: none;
  opacity: 0;
  z-index: 0;
  will-change: transform, width, height;
}

.sub-nav {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sub-nav li button {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: rgba(244, 244, 245, 0.72);
  font-size: 14px;
  text-align: left;
  transition: color 200ms ease;
}

.sub-nav li button::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.5;
}

.sub-nav li button:hover {
  color: var(--text);
}

.sub-nav li button.active {
  color: var(--brand-text);
  font-weight: 600;
}

.content {
  padding: 24px 32px 64px;
}

.home {
  width: min(1560px, 100%);
  margin: 0 auto;
}

.home-hero {
  padding: 72px 0 56px;
  text-align: center;
}

.home-hero h1 {
  max-width: 820px;
  margin: 0 auto;
  color: var(--text);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.home-hero p {
  max-width: 520px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.home-sections {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding-top: 16px;
}

.home-section {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.home-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.home-section-head h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.home-view-all {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  transition: color 200ms ease;
}

.home-view-all:hover {
  color: var(--text);
}

.home-section-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: start;
  gap: 18px;
}

.home-tile {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: var(--bg-elevated);
  cursor: pointer;
  will-change: transform;
}

.home-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    110deg,
    var(--bg-elevated) 30%,
    rgba(255, 255, 255, 0.045) 50%,
    var(--bg-elevated) 70%
  );
  background-size: 200% 100%;
  animation: shimmer 1.6s linear infinite;
  transition: opacity 0.45s ease;
}

.home-tile.is-loaded::before {
  opacity: 0;
  animation: none;
}

.home-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.home-tile img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition:
    transform 320ms ease,
    opacity 0.45s ease;
}

.home-tile.is-loaded img {
  opacity: 1;
}

.home-tile:hover img,
.home-tile:focus-visible img {
  transform: scale(1.04);
}

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

.grid[data-sub="KV海报"] {
  gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
}

.home-section[data-sub="KV海报"] .home-section-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 0;
  border-radius: 12px;
  background: var(--bg-elevated);
  cursor: pointer;
  will-change: transform;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    110deg,
    var(--bg-elevated) 30%,
    rgba(255, 255, 255, 0.045) 50%,
    var(--bg-elevated) 70%
  );
  background-size: 200% 100%;
  animation: shimmer 1.6s linear infinite;
  transition: opacity 0.45s ease;
}

.card.is-loaded::before {
  opacity: 0;
  animation: none;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 1.5px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.02);
  pointer-events: none;
}

.card img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.45s ease;
  will-change: transform;
}

.card.is-loaded img {
  opacity: 1;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-tile::before,
  .card::before {
    animation: none;
  }
  .home-tile img,
  .card img,
  .lightbox-image {
    transition: none;
  }
}

.card-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.92) 100%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.card:hover .card-overlay,
.card:focus-within .card-overlay {
  opacity: 1;
}

.card-prompt {
  display: -webkit-box;
  margin: 0 0 12px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  line-height: 1.6;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.copy-btn {
  align-self: flex-start;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(8px);
  transition:
    background 160ms ease,
    border-color 160ms ease;
}

.copy-btn:hover {
  background: #fff;
  border-color: #fff;
  color: #000;
}

.empty-state {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 320px;
  padding: 64px 24px;
  border: 1px dashed var(--line-strong);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.015);
  text-align: center;
}

.home-section .empty-state {
  min-height: 220px;
  padding: 48px 24px;
  gap: 14px;
}

.empty-state-text {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: -0.01em;
}

.empty-state-link {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--muted);
  transition:
    color 200ms ease,
    background 200ms ease,
    border-color 200ms ease,
    transform 200ms ease;
}

.empty-state-link:hover {
  color: var(--brand-text);
  background: var(--brand);
  border-color: var(--brand);
  transform: translateY(-1px);
}

.empty-state-link svg {
  display: block;
  width: 16px;
  height: 16px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 72px;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  will-change: opacity;
}

.lightbox[data-open="true"] {
  visibility: visible;
}

.lightbox-stage {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.lightbox-figure {
  position: relative;
  display: grid;
  grid-template-columns: 360px 1fr 360px;
  align-items: stretch;
  gap: 28px;
  margin: 0;
  width: min(1280px, 100%);
  height: 100%;
  max-height: 100%;
}

.lightbox-image-wrap {
  grid-column: 2;
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 0;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 14px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  user-select: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.lightbox-image.is-loaded {
  opacity: 1;
}

.lightbox-image-wrap.is-loading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 36px;
  height: 36px;
  margin: -18px 0 0 -18px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-top-color: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  animation: lightbox-spin 0.9s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes lightbox-spin {
  to {
    transform: rotate(360deg);
  }
}

.lightbox-caption {
  grid-column: 3;
  display: flex;
  flex-direction: column;
  max-height: 100%;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(20, 20, 22, 0.78);
  color: rgba(255, 255, 255, 0.86);
  overflow: hidden;
}

.lightbox-caption-head {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.lightbox-caption-title {
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
}

.lightbox-prompt {
  flex: 1 1 auto;
  margin: 0;
  padding-right: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  line-height: 1.7;
  white-space: pre-wrap;
  word-break: break-word;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.18) transparent;
}

.lightbox-prompt::-webkit-scrollbar {
  width: 6px;
}

.lightbox-prompt::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.lightbox-prompt::-webkit-scrollbar-track {
  background: transparent;
}

.lightbox-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.lightbox-counter {
  color: var(--muted);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.lightbox-copy {
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(8px);
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.lightbox-copy:hover {
  background: #fff;
  border-color: #fff;
  color: #000;
}

@media (max-width: 1299px) and (min-width: 861px) {
  .lightbox {
    padding: 36px 40px;
  }
  .lightbox:not([data-layout="wide"]) .lightbox-figure {
    grid-template-columns: 280px 1fr 280px;
    gap: 20px;
  }
}

@media (min-width: 861px) {
  .lightbox[data-layout="wide"] .lightbox-figure {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    gap: 16px;
    width: min(1400px, 100%);
  }

  .lightbox[data-layout="wide"] .lightbox-image-wrap {
    grid-column: 1;
    grid-row: 1;
  }

  .lightbox[data-layout="wide"] .lightbox-caption {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    max-height: min(28vh, 240px);
  }
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(20, 20, 22, 0.7);
  color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.lightbox-close svg,
.lightbox-nav svg {
  display: block;
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.lightbox-close {
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
}

.lightbox-nav {
  top: 50%;
  width: 44px;
  height: 44px;
  transform: translateY(-50%);
}

.lightbox-nav svg {
  width: 20px;
  height: 20px;
}

.lightbox-prev {
  left: 18px;
}

.lightbox-next {
  right: 18px;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: #fff;
  border-color: #fff;
  color: #000;
}

.lightbox-nav:hover {
  transform: translateY(-50%) scale(1.04);
}

.lightbox-nav[disabled] {
  opacity: 0.3;
  cursor: not-allowed;
}

body.lightbox-open {
  overflow: hidden;
}

.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  z-index: 200;
  padding: 10px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(20, 20, 22, 0.95);
  color: var(--text);
  font-size: 13px;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 12px);
  pointer-events: none;
  backdrop-filter: blur(12px);
  will-change: transform, opacity;
}

.footer {
  flex: 0 0 auto;
  border-top: 1px solid var(--line);
  background: var(--bg);
  padding: 56px 32px 28px;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  width: min(1560px, 100%);
  margin: 0 auto;
  padding-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-brand-mark img {
  display: block;
  width: 28px;
  height: 28px;
}

.footer-brand-name {
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.footer-tagline {
  margin: 0;
  max-width: 380px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col-title {
  display: block;
  margin-bottom: 18px;
  color: var(--subtle);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a,
.footer-links button {
  display: inline-block;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  text-align: left;
  transition: color 200ms ease;
}

.footer-links a:hover,
.footer-links button:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(1560px, 100%);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--subtle);
  font-size: 12px;
}

.footer-bottom a {
  color: var(--muted);
  transition: color 200ms ease;
}

.footer-bottom a:hover {
  color: var(--text);
}

.footer-meta {
  color: var(--subtle);
}

@media (max-width: 860px) {
  .topbar {
    gap: 24px;
    padding: 0 18px;
  }

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

  .sidebar {
    position: static;
    height: auto;
    padding: 12px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .sub-nav {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .sub-nav::-webkit-scrollbar {
    display: none;
  }

  .sub-nav li button {
    white-space: nowrap;
  }

  .sub-nav li button::before {
    display: none;
  }

  .content {
    padding: 18px 16px 48px;
  }

  .home-hero {
    padding: 44px 0 32px;
  }

  .home-hero h1 {
    font-size: clamp(28px, 7vw, 40px);
  }

  .home-sections {
    gap: 44px;
  }

  .home-section-head h2 {
    font-size: 22px;
  }

  .home-section-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .home-section[data-sub="KV海报"] .home-section-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .grid[data-sub="KV海报"] {
    gap: 16px;
    grid-template-columns: 1fr;
  }

  .lightbox {
    padding: 56px 12px 16px;
  }

  .lightbox-figure {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    align-items: stretch;
    gap: 12px;
  }

  .lightbox-image-wrap {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    min-height: 0;
  }

  .lightbox-image {
    border-radius: 10px;
  }

  .lightbox-caption {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    max-height: min(38vh, 320px);
    padding: 14px 16px;
  }

  .lightbox-caption-head {
    margin-bottom: 10px;
  }

  .lightbox-prompt {
    font-size: 12.5px;
    line-height: 1.65;
  }

  .lightbox-actions {
    margin-top: 10px;
    padding-top: 10px;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
  }

  .lightbox-nav {
    width: 36px;
    height: 36px;
  }

  .lightbox-close svg,
  .lightbox-nav svg {
    width: 16px;
    height: 16px;
  }

  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }

  .footer {
    padding: 40px 16px 20px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 28px;
  }

  .footer-tagline {
    max-width: none;
  }

  .footer-col-title {
    margin-bottom: 12px;
  }

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