html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  /* background:
    radial-gradient(circle at top, #f8fbff 0%, #eef5ff 38%, #f8fafc 100%); */
  background:
    radial-gradient(circle at top, #fffef7 0%, #fff7cc 40%, #fffdf5 100%);
  font-family: Arial, Helvetica, sans-serif;
}

#root {
  min-height: 100vh;
}

.boot-screen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
}

.boot-card {
  width: 100%;
  max-width: 440px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #dbe7f5;
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.10);
  padding: 34px 28px 28px;
  text-align: center;
  backdrop-filter: blur(6px);
}

.boot-brand-image {
  display: none;
}

.boot-logo-wrap {
  width: 110px;
  height: 110px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.boot-title {
  margin: 0;
  font-size: 1.9rem;
  font-weight: 700;
  color: #0f172a;
}

.boot-subtitle {
  margin: 8px 0 0;
  font-size: 1rem;
  color: #475569;
}

.boot-dots {
  display: inline-flex;
  gap: 6px;
  margin-top: 16px;
}

.boot-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2563eb;
  opacity: 0.25;
  animation: bootDotPulse 1.4s infinite ease-in-out;
}

.boot-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.boot-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

.boot-tagline {
  margin-top: 18px;
  font-size: 0.9rem;
  color: #64748b;
}


.boot-tagline-main {
  margin-top: 10px;
  font-size: 1.02rem;
  font-weight: 600;
  color: #1f2937;
  letter-spacing: 0.2px;
}

.boot-tagline-sub {
  margin-top: 6px;
  font-size: 0.9rem;
  color: #6b7280;
  letter-spacing: 0.2px;
}


.boot-status {
  margin-top: 14px;
  font-size: 0.95rem;
  color: #374151;
  min-height: 18px;
}
/* SVG Animations */

.w-ring {
  transform-origin: 50px 50px;
  animation: slowRotate 7s linear infinite;
}

.w-ring-bg {
  fill: none;
  stroke: #dbeafe;
  stroke-width: 6;
}

.w-ring-fg {
  fill: none;
  stroke: #2563eb;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 170 70;
  animation: dashMove 1.8s linear infinite;
}

.w-core {
  fill: #eff6ff;
  stroke: #bfdbfe;
  stroke-width: 1.5;
}

.w-letter {
  fill: none;
  stroke: #0f172a;
  stroke-width: 7;
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  animation: drawW 1.4s ease forwards;
}

.w-letter-accent {
  fill: none;
  stroke: #2563eb;
  stroke-width: 3.5;
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  animation: drawW 1.4s ease forwards 0.15s;
}


.boot-logo-inner {
  animation: logoFadeIn 0.8s ease forwards, logoPulse 2s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% {
    transform: scale(0.95);
  }
  50% {
    transform: scale(1.05);
  }
}
/* Animations */

@keyframes drawW {
  to { stroke-dashoffset: 0; }
}

@keyframes dashMove {
  to { stroke-dashoffset: -240; }
}

@keyframes slowRotate {
  to { transform: rotate(360deg); }
}

@keyframes bootDotPulse {
  0%, 80%, 100% {
    opacity: 0.22;
    transform: scale(0.9);
  }
  40% {
    opacity: 1;
    transform: scale(1.15);
  }
}
