.loading-container {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #01152d;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loading-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeInLogo 0.8s ease-in-out;
}

.loading-logo {
  width: 164.305419921875px;
  height: 164.305419921875px;
  object-fit: contain;
  margin-bottom: 18px;
}

.loading-texts {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.loading-title {
  margin: 0;
  color: #e8f3ff;
  font-size: 57.78px;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1.33;
  letter-spacing: 0;
  text-align: center;
}

.loading-subtitle {
  margin: -8px 0 0 0;
  color: #e8f3ff;
  font-size: 37.73px;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.33;
  letter-spacing: 0;
  text-align: center;
}

@keyframes fadeInLogo {
  0% {
    opacity: 0;
    transform: scale(0.92);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.loading-dots {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}

.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: #01152d;
}