/* ── Post-Login Bootstrap Overlay ── */
.bootstrap-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #0a0a0f;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 32px;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.bootstrap-overlay.fade-out {
  opacity: 0;
  pointer-events: none;
}

.bootstrap-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  animation: bootstrapPulse 2s ease-in-out infinite;
}

.bootstrap-logo svg {
  width: 32px;
  height: 32px;
  color: var(--accent, #7c3aed);
  filter: drop-shadow(0 0 12px rgba(124, 58, 237, 0.5));
}

.bootstrap-logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #fff;
}

.bootstrap-logo-text .accent {
  color: var(--accent, #7c3aed);
}

.bootstrap-status {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.bootstrap-bar {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  overflow: hidden;
}

.bootstrap-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent, #7c3aed), #a855f7);
  border-radius: 3px;
  transition: width 0.3s ease;
  box-shadow: 0 0 8px rgba(124, 58, 237, 0.4);
}

.bootstrap-text {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.5px;
}

@keyframes bootstrapPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}
