#app-splash {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  background: #ffffff;
  z-index: 9999;
}
.dark #app-splash {
  background: #0a0a0a;
}
.app-splash-logo {
  animation: splash-pulse 1.6s ease-in-out infinite;
}
.app-splash-bar {
  width: 160px;
  height: 3px;
  border-radius: 999px;
  background: #e5e7eb;
  overflow: hidden;
}
.dark .app-splash-bar {
  background: #27272a;
}
.app-splash-bar-inner {
  height: 100%;
  width: 45%;
  border-radius: 999px;
  background: #10b981;
  animation: splash-slide 1.2s ease-in-out infinite;
}
@keyframes splash-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.93);
  }
}
@keyframes splash-slide {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(400%);
  }
}
