
#runverse-loader {
  display: none;
  position: fixed;
  z-index: 99999;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
}

.runverse-loader-animation {
  position: relative;
  width: 80px; height: 80px;
}

.bat {
  position: absolute;
  width: 100%;
  text-align: center;
  font-size: 48px;
  font-weight: bold;
  color: #e91e63;
  animation: r-bounce 1s infinite ease-in-out;
}

.ball {
  position: absolute;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #fff;
  bottom: 0;
  left: 50%;
  margin-left: -6px;
  animation: ball-bounce 0.5s infinite alternate;
}

@keyframes r-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes ball-bounce {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}
