/* === SPLASH SCREEN STYLES === */
.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a0e27 0%, #16213e 50%, #0f3460 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: hidden;
}

.splash-content {
  text-align: center;
  position: relative;
}

.splash-logo {
  width: 120px;
  height: 120px;
  margin-bottom: 30px;
  opacity: 0;
  filter: drop-shadow(0 0 30px #060b0ccc);
}

.splash-title {
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(135deg, hsl(0, 0%, 0%), hsl(0, 0%, 100%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  opacity: 0;
  letter-spacing: 3px;
  text-shadow: 0 0 30px #060b0ccc;
}

.splash-subtitle {
  font-size: 1.2rem;
  color: #fff;
  margin-top: 15px;
  opacity: 0;
  font-weight: 300;
  letter-spacing: 2px;
}

.splash-loader {
  width: 290px;
  height: 5px;
  background: #00000033;
  border-radius: 10px;
  margin-top: 40px;
  overflow: hidden;
  position: relative;
}

.loader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #fff, #fff);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 188, 212, 0.8);
}

/* === HIDDEN STATE === */
.splash-screen.hidden {
  pointer-events: none;
}
/* ...existing code... */

.splash-progress {
  font-size: 1.5rem;
  color: #fff;
  margin-top: 15px;
  opacity: 0;
  font-weight: 600;
  letter-spacing: 1px;
  font-family: 'Courier New', monospace;
}

/* Animated opacity untuk progress text */
.splash-content .splash-progress {
  animation: fadeInProgress 0.8s ease-out 1.3s forwards;
}

@keyframes fadeInProgress {
  to {
    opacity: 3;
  }
}