/* /assets/footer.css */
footer {
  margin-top: 60px;
  padding: 30px 20px;
  text-align: center;
  color: #aab2bd;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(3,5,7,0.4);
  backdrop-filter: blur(6px);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-links a {
  color: #ffd970;
  text-decoration: none;
  font-weight: 600;
  transition: color .25s ease;
}
.footer-links a:hover {
  color: #fff;
  text-shadow: 0 0 8px rgba(243,195,0,0.6);
}
@media (min-width: 640px) {
  .footer-inner { flex-direction: row; justify-content: space-between; }
}
