
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #eee;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.8s ease;
}

.loader-logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  animation: pulseGlow 1.5s infinite ease-in-out;
  box-shadow: 0 0 10px #28A4FA, 0 0 20px #28A4FA, 0 0 40px #60D9D4;
}

@keyframes pulseGlow {
  0% {
    transform: scale(1);
    box-shadow: 0 0 10px #28A4FA, 0 0 20px #28A4FA, 0 0 40px #60D9D4;
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 20px #28A4FA, 0 0 35px #28A4FA, 0 0 60px #60D9D4;
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 10px #28A4FA, 0 0 20px #28A4FA, 0 0 40px #60D9D4;
  }
}

.fade-out {
  opacity: 0;
  pointer-events: none;
}
