/* LOCK BODY */
body.page-loading {
  margin: 0;
  height: 100vh;
  overflow: hidden;
}

/* BASE CONTAINER */
.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2469ff; /* Biru Tixlane */

  /* Transisi halus saat nanti kelas .fade-out ditambahkan */
  transition:
    opacity 0.8s ease-in-out,
    visibility 0.8s ease-in-out;
  opacity: 1;
  visibility: visible;
}

/* LOGO & ANIMATION */
.logo {
  height: 120px;
  /* Animasi pulse langsung jalan */
  animation: pulse 1.2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.05);
  }
}

/* STATE SAAT SELESAI (HILANG) */
.splash-screen.fade-out {
  opacity: 0;
  visibility: hidden;
}
