/* Loader Animation */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgb(9, 9, 9); /* Solid black background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  pointer-events: none;
  animation: fadeOut 0.5s ease-out 1s forwards; /* Fade out after 2 seconds */
}

.loader {
  width: 200px;
  height: 200px;
  animation: scaleUp 1s ease-out forwards;
}

@keyframes scaleUp {
  0% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 1;
  }
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}
