.social__icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  max-inline-size: 65ch;
  margin-inline: auto;
  background: #4b1f6f;
}
.social__icons a {
  color: #fff;
  font-size: 1.6rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}
.social__icons a:hover {
  background: linear-gradient(135deg, var(--aqua), var(--purple));
  color: #fff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

@media (max-width: 1024px) {

  .social__icons {
    justify-content: center;
    margin-top: 2rem;
  }
}

