.loading-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(43, 81, 109, 0.85) 0%, rgba(26, 52, 71, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loading-logo {
  width: 120px;
  height: 120px;
  margin-bottom: 40px;
  animation: fadeInLogo 0.8s ease-in-out;
}

@keyframes fadeInLogo {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.loading-dots {
  display: flex;
  gap: 8px;
  margin-top: 30px;
}

.loading-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  animation: pulse 1.4s ease-in-out infinite;
}

.loading-dot:nth-child(1) {
  background-color: #4d56fd;
  animation-delay: 0s;
}

.loading-dot:nth-child(2) {
  background-color: #00aeef;
  animation-delay: 0.2s;
}

.loading-dot:nth-child(3) {
  background-color: #e6d74d;
  animation-delay: 0.4s;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #2B516D;
}
