.footer {
  max-width: 1280px;
  padding: 34px 24px 12px;
  margin: 22px auto 0;
  color: rgba(246, 247, 255, 0.72);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer__brand {
  gap: 14px;
}

.footer__brand strong {
  letter-spacing: 0.04em;
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(94, 231, 255, 0.1), rgba(168, 85, 247, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 18px rgba(94, 231, 255, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(94, 231, 255, 0.42);
  box-shadow: 0 0 28px rgba(94, 231, 255, 0.22);
}

.discord-icon--footer {
  width: 22px;
  height: 22px;
}

.footer__copyright {
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px 24px 44px;
  color: rgba(246, 247, 255, 0.52);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}
