/* ===== Footer ===== */
.footer {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(179, 136, 255, 0.3);
    color: #d8c6ff;
    text-align: center;
    padding: 0.6rem 0;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    position: relative;
    bottom: 0;
    width: 100%;
  }
  
  .footer .social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 0.4rem;
  }
  
  .footer .social-links a {
    color: #b366ff;
    font-size: 1.3rem;
    transition: color 0.3s, transform 0.3s;
  }
  
  .footer .social-links a:hover {
    color: #ffffff;
    transform: translateY(-3px);
  }
  
  .footer p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
  }
  
  /* ===== Responsive ===== */
  @media (max-width: 480px) {
    .footer .social-links {
      gap: 1rem;
    }
    .footer p {
      font-size: 0.7rem;
    }
  }
  