/* MAX 300 LINES — footer.css */
.footer {
  padding: 36px 0 42px;
  border-top: 1px solid rgba(0, 229, 255, 0.12);
  background: linear-gradient(180deg, rgba(1, 10, 20, 0.7), rgba(1, 8, 16, 0.98));
  margin-top: auto;
}

.footer-brand {
  color: rgba(255, 255, 255, 0.96);
}

.footer-copy {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
  max-width: 34ch;
  line-height: 1.7;
}

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

.footer-links .footer-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 999px;
  background: rgba(0, 229, 255, 0.04);
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.footer-links .footer-link:hover,
.footer-links .footer-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(0, 229, 255, 0.72);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.12);
  color: var(--accent);
  outline: 2px solid rgba(132, 246, 255, 0.92);
  outline-offset: 4px;
}
