:root {
  --veyron-bg: #06050a;
  --veyron-bg-mid: #12111a;
  --veyron-purple: #7c8cff;
  --veyron-purple-dim: #5763de;
  --veyron-text: #f1f5f9;
  --veyron-muted: #94a3b8;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background: var(--veyron-bg);
}

#veyron-boot {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(52, 55, 139, 0.42), transparent 55%),
    radial-gradient(ellipse 70% 50% at 85% 100%, rgba(118, 75, 162, 0.22), transparent 50%),
    linear-gradient(165deg, var(--veyron-bg-mid) 0%, var(--veyron-bg) 55%, #030208 100%);
  transition: opacity 0.38s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.38s;
}

#veyron-boot.veyron-boot--hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.veyron-boot__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 36px 40px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(18, 17, 26, 0.72);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.veyron-boot__brand {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--veyron-text);
  text-shadow: 0 2px 18px rgba(124, 140, 255, 0.25);
}

.veyron-boot__brand span {
  color: var(--veyron-purple);
}

.veyron-boot__tagline {
  margin: -10px 0 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--veyron-muted);
  letter-spacing: 0.02em;
}

.veyron-boot__ring {
  position: relative;
  width: 52px;
  height: 52px;
}

.veyron-boot__ring::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid rgba(124, 140, 255, 0.14);
}

.veyron-boot__ring::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--veyron-purple);
  border-right-color: rgba(124, 140, 255, 0.35);
  animation: veyron-spin 1.35s cubic-bezier(0.45, 0.05, 0.25, 0.95) infinite;
}

.veyron-boot__dots {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 14px;
}

.veyron-boot__dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--veyron-purple);
  box-shadow: 0 0 12px rgba(124, 140, 255, 0.45);
  animation: veyron-pulse 0.92s ease-in-out infinite;
}

.veyron-boot__dots span:nth-child(2) {
  animation-delay: 0.16s;
}

.veyron-boot__dots span:nth-child(3) {
  animation-delay: 0.32s;
}

@keyframes veyron-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes veyron-pulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.55);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}
