/* footer.css */

/* Footer (ordered links) */
.footer{ margin-top: 36px; }

.footer-inner{
  width: min(1280px, 94vw);
  margin: 0 auto;
  padding: 16px 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)), var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.footer-links{
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  align-items: center;
  margin-bottom: 6px;
}

.footer-links.ordered a{
  padding: 6px 10px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--text);
  transition: color .18s ease, background .18s ease;
}

.footer-links.ordered a:hover{
  background: var(--panel-hover);
  color: var(--accent);
}

.copyright{
  color: var(--muted);
  font-size: 12px;
}

.footer .mono{ font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.footer .dot{ margin: 0 8px; opacity: .6; }

.footer-disabled{
  cursor: not-allowed !important;
  pointer-events: none !important;
  color: gray !important;
}
