.splash-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f8fafc;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.splash-logo {
  width: 120px;
  height: auto;
  margin-bottom: 20px;
  object-fit: contain;
}

.splash-title {
  font-size: 24px;
  font-weight: bold;
  color: #4f46e5;
  margin: 0 0 10px 0;
  text-align: center;
  padding: 0 20px;
}

.splash-subtitle {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: #64748b;
  margin: 0 0 24px 0;
  text-align: center;
  padding: 0 20px;
}
.splash-version {
  font-size: 12px;
  color: #4f46e5;
  margin: 0 0 20px 0;
  opacity: 0.7;
}

.splash-loader {
  width: 42px;
  height: 42px;
  position: relative;
  border-radius: 999px;
  border: 3px solid rgba(79, 70, 229, 0.10);
  border-top-color: #4f46e5;
  border-right-color: #6366f1;
  animation: splash-spin 0.75s linear infinite;
  box-shadow:
    0 0 0 4px rgba(79, 70, 229, 0.035),
    0 8px 20px rgba(79, 70, 229, 0.12);
}

.splash-loader::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.18),
    rgba(99, 102, 241, 0.02)
  );
}

@keyframes splash-spin {
  to {
    transform: rotate(360deg);
  }
}
/* Responsive design */
@media (max-width: 768px) {
  .splash-title {
    font-size: 20px;
  }
  
  .splash-subtitle {
    font-size: 14px;
  }
  
  .splash-logo {
    width: 100px;
  }
}