@import url('https://fonts.googleapis.com/css2?family=Aptos:wght@700&display=swap');

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
  transition: opacity 0.5s ease-out;
}

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

.splash-logo {
  width: 120px;
  height: 120px;
  animation: fadeIn 0.8s ease-out forwards, pulse 2s ease-in-out infinite;
}

.splash-title {
  margin-top: 20px;
  font-size: 32px;
  color: #4263EB;
  font-family: 'Aptos', sans-serif;
  font-weight: 700;
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
  animation-delay: 0.3s;
  letter-spacing: 1px;
}

.loading-bar {
  margin-top: 30px;
  width: 200px;
  height: 4px;
  background-color: #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
  animation-delay: 0.6s;
}

.loading-progress {
  height: 100%;
  background: linear-gradient(90deg, #4263EB, #6384FF, #4263EB);
  background-size: 200% 100%;
  animation: shimmer 2s infinite linear;
  width: 0%;
  border-radius: 4px;
  transition: width 0.3s ease-out;
}

.splash-footer {
  position: absolute;
  bottom: 40px;
  font-size: 14px;
  color: #666;
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
  animation-delay: 0.9s;
  font-weight: 500;
} 