html,
body {
  margin: 0;
  min-height: 100%;
  background: linear-gradient(145deg, #f8fbff 0%, #eaf3fb 54%, #dfeaf5 100%);
}

#motarro-boot-loader {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  display: grid;
  place-items: center;
  padding: 18px;
  box-sizing: border-box;
  background:
    radial-gradient(circle at 20% 8%, rgba(255, 255, 255, 0.9), transparent 24rem),
    radial-gradient(circle at 78% 18%, rgba(8, 123, 255, 0.18), transparent 28rem),
    linear-gradient(90deg, rgba(23, 78, 126, 0.04) 1px, transparent 1px) 0 0 / 96px 96px,
    linear-gradient(180deg, rgba(23, 78, 126, 0.03) 1px, transparent 1px) 0 0 / 96px 96px,
    linear-gradient(145deg, #f8fbff 0%, #eaf3fb 54%, #dfeaf5 100%);
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

#motarro-boot-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.boot-loader__inner {
  width: 100%;
  max-width: 360px;
  min-height: 320px;
  padding: 34px 24px 30px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 32px 90px rgba(33, 91, 142, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  text-align: center;
  box-sizing: border-box;
}

.boot-loader__brand {
  color: #e60012;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.boot-loader__tag {
  display: inline-block;
  margin-top: 14px;
  padding: 7px 15px;
  border: 1px solid rgba(8, 123, 255, 0.16);
  border-radius: 999px;
  color: rgba(8, 123, 255, 0.78);
  background: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 600;
}

.boot-loader__percent {
  margin-top: 38px;
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  color: rgba(8, 123, 255, 0.82);
  font-variant-numeric: tabular-nums;
}

.boot-loader__status {
  margin-top: 18px;
  color: rgba(8, 123, 255, 0.78);
  font-size: 14px;
  font-weight: 600;
}

.boot-loader__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
  color: rgba(123, 135, 148, 0.82);
  font-size: 12px;
  font-weight: 600;
}

.boot-loader__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #087bff;
  animation: bootDotPulse 1.8s ease-in-out infinite;
}

@keyframes bootDotPulse {
  0%,
  100% {
    transform: scale(0.85);
    opacity: 0.55;
  }
  50% {
    transform: scale(1.12);
    opacity: 1;
  }
}
