.bottom-footer {
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  min-height: var(--ld-footer-min-height, 0px);
}

.bottom-footer--static {
  position: static;
}

.bottom-footer:not(.bottom-footer--static) {
  position: fixed;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  color: #7b7b93;
  font-size: 14px;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-link {
  color: #7b7b93;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: #7c6ff9;
}

