body {
  margin: 0;
  padding: 0;
}

.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 10000;
  width: 100%;
  height: 100%;
  min-height: 100dvh;
  min-height: -webkit-fill-available;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: Inter, Helvetica, Arial, sans-serif;
  background:
    radial-gradient(circle at 20% 35%, rgba(0, 170, 255, 0.16), transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(0, 110, 255, 0.12), transparent 35%),
    linear-gradient(180deg, #071427 0%, #06101f 100%);
  color: #8ea0bd;
  line-height: 1.4;
  font-size: 14px;
  font-weight: 500;
  padding-top: env(safe-area-inset-top, 0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
  box-sizing: border-box;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.splash-screen__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(18rem, calc(100vw - 3rem));
  text-align: center;
}

.splash-screen__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.5rem;
  height: 5.5rem;
  margin-bottom: 1.75rem;
  border-radius: 1.15rem;
  background: #071427;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

.splash-screen__icon {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: contain;
  background: #071427;
}

.splash-screen__bar {
  width: 100%;
  height: 0.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.splash-screen__bar-fill {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #50cd89 0%, #009ef7 100%);
  transition: width 0.35s ease;
  animation: splash-progress-loading 2.4s ease-in-out infinite;
}

.splash-screen__label {
  margin-top: 0.85rem;
  color: #8ea0bd;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: none !important;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

.splash-screen--complete .splash-screen__bar-fill {
  animation: none;
  width: 100% !important;
}

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

@keyframes splash-progress-loading {
  0% {
    width: 8%;
    margin-left: 0%;
  }
  50% {
    width: 72%;
    margin-left: 14%;
  }
  100% {
    width: 8%;
    margin-left: 92%;
  }
}

#root {
  opacity: 1;
  transition: opacity 1s ease-in-out;
}
