.footer {
  background: rgba(10, 20, 30, 0.8);
  border-top: 1px solid rgba(0, 200, 255, 0.35);
  color: #e8f7ff;
  text-align: center; /* <— masaüstü için garanti merkezleme */
  padding: 22px 16px;
  backdrop-filter: blur(8px);
  width: 100%; /* <— tam genişlik */
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  line-height: 1.8;
}

.footer-links a {
  color: #00c8ff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color .25s ease;
}

.footer-links a:hover {
  color: #66e3ff;
}

.footer-info {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center; /* <— masaüstü & mobil ortak */
  width: 100%; /* <— hizalamayı korur */
}

.signature {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* mobilde biraz küçültmek istersen */
@media (max-width: 600px) {
  .footer-info {
    font-size: 0.85rem;
  }
}