#static-loader {
  position: fixed;
  inset: 0;
  background: #05070a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.3s ease;
}
.loader-ball {
  font-size: 3rem;
  margin-bottom: 16px;
  animation: loader-bounce 1.2s infinite ease-in-out;
}
.loader-text {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 4px;
  color: #10b981;
  text-shadow: 0 0 12px rgba(16,185,129,0.5);
  margin-bottom: 24px;
}
.loader-bar {
  width: 120px;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.loader-bar-fill {
  width: 40%;
  height: 100%;
  background: #10b981;
  border-radius: 2px;
  animation: loader-slide 1.2s infinite ease-in-out;
}
@keyframes loader-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes loader-slide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}