footer {
  background: linear-gradient(135deg, #0a0a24 0%, #0a0a0a 80%);
  color: var(--white);
  padding: 40px 0;
  text-align: center;
  box-shadow: 0 -5px 25px rgba(0,0,0,0.7) inset;
}

.social-links {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--bonus-blue);
  color: var(--white);
  margin: 0 10px;
  font-size: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.social-links a:hover {
  transform: translateY(-5px) scale(1.08);
  background-color: var(--power-up-pink);
  box-shadow: 0 0 16px var(--power-up-pink), 0 1px 4px rgba(0,0,0,0.25);
}

footer p {
  margin-top: 20px;
  font-size: 1.1rem;
  color: #ffffff;
  opacity: 0.7;
  letter-spacing: 1.2px;
}

/* Media queries (como ya tienes) */
@media (max-width: 768px) {
  footer {
    padding: 30px 20px;
  }
  .social-links {
    flex-wrap: wrap;
    gap: 15px;
  }
  .social-links a {
    width: 40px;
    height: 40px;
    font-size: 18px;
    margin: 5px;
  }
}
@media (max-width: 480px) {
  .social-links a {
    width: 35px;
    height: 35px;
    font-size: 16px;
    margin: 4px;
  }
}
