.footer-section {
  position: relative;
  overflow: hidden;
  background: rgba(15, 10, 25, 0.95);
  color: #fff;
  padding: 80px 10%;
  border-top: 2px solid rgba(122, 92, 255, 0.6);
  animation: fadeInUp 1.1s ease both;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

#footer-nebula,
#footer-fog-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: space-between;
  position: relative;
  z-index: 5;
}

.footer-brand h2 {
  font-family: var(--font-title);
  color: var(--purple-light);
  font-size: 2.4rem;
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(122, 92, 255, 0.7);
}

.footer-brand p {
  opacity: 0.9;
  font-size: 1.05rem;
}

.footer-links h3,
.footer-socials h3 {
  font-family: var(--font-title);
  color: var(--purple-light);
  margin-bottom: 10px;
  text-shadow: 0 0 6px rgba(122, 92, 255, 0.6);
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #fff;
  opacity: 0.85;
  transition: 0.3s;
  text-decoration: none;
  font-weight: bold;
}

.footer-links ul li a:hover {
  color: var(--purple-light);
  text-shadow: 0 0 12px rgba(122, 92, 255, 0.8);
}

.footer-socials .social-icons {
  display: flex;
  gap: 20px;
  font-size: 1.8rem;
}

.footer-socials .social-icons a {
  color: #fff;
  transition: 0.3s;
}

.footer-socials .social-icons a:hover {
  color: var(--purple-light);
  transform: scale(1.3);
  text-shadow: 0 0 10px rgba(122, 92, 255, 0.9);
}

.footer-bottom {
  margin-top: 40px;
  text-align: center;
  opacity: 0.8;
  font-size: 1rem;
  text-shadow: 0 0 8px rgba(122, 92, 255, 0.5);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
