/* Footer, links, credits, .dx-link, .dx-muted */

.dx-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 7, 12, 0.55);
}

.dx-footer-top {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.35), rgba(96, 165, 250, 0.25), transparent);
}

.dx-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 0;
  flex-wrap: wrap;
}

.dx-footer-left {
  min-width: 0;
}

.dx-footer-title {
  font-weight: 800;
  letter-spacing: -0.03em;
}

.dx-footer-muted {
  color: var(--dx-text-3);
  font-size: 12px;
}

.dx-footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.dx-footer-links .dx-link {
  font-size: 13px;
}

.dx-footer-credits {
  margin-top: 10px;
  font-size: 12px;
}

.dx-link {
  color: rgba(245, 247, 255, 0.86);
  text-decoration: none;
  border-bottom: 1px dashed rgba(245, 247, 255, 0.35);
}
.dx-link:hover {
  border-bottom-color: rgba(245, 247, 255, 0.7);
}

.dx-muted {
  color: var(--dx-text-3);
}

