.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff; /* ganti sesuai warna brand PT Pratama Product */
  transition: opacity 0.5s ease, visibility 0.5s ease;
  opacity: 1;
  visibility: visible;
}

.splash-screen--hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-screen__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.splash-screen__logo {
  width: 140px;
  max-width: 60vw;
  animation: splash-pulse 1.4s ease-in-out infinite;
}

@keyframes splash-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.75;
  }
}

/* indikator titik loading di bawah logo (opsional, hapus jika tidak perlu) */
.splash-screen__dots {
  display: flex;
  gap: 8px;
}

.splash-screen__dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #999;
  animation: splash-dot 1.2s ease-in-out infinite;
}

.splash-screen__dots span:nth-child(2) {
  animation-delay: 0.15s;
}

.splash-screen__dots span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes splash-dot {
  0%, 80%, 100% {
    transform: scale(0.6);
    opacity: 0.4;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}
