/* ════════════════════════════════════════════════════════════
   footer.css — Site footer styles
   SXDWallet · 2026
════════════════════════════════════════════════════════════ */

.site-footer {
  width: 100%;
  border-top: 1px solid var(--border);
  background: rgba(10,15,13,.6);
  backdrop-filter: blur(8px);
}

.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 28px var(--px) 32px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}

.footer-logo {
  font-family: var(--font); font-size: 20px;
  font-weight: 800; color: var(--g);
}

.footer-text {
  font-size: 11px; color: var(--muted);
  text-align: center; line-height: 1.75;
}

.footer-links {
  display: flex; gap: 20px; flex-wrap: wrap;
  justify-content: center; margin-top: 4px;
}
.footer-links a {
  font-size: 12px; color: var(--muted); transition: color .2s;
}
.footer-links a:hover { color: var(--g); }

.footer-copy {
  font-size: 10px; color: var(--muted);
  margin-top: 6px; text-align: center; opacity: .7;
}