/* Full-screen overlay */
.premium-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 0, 30, 0.55);
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.4s ease forwards;
}

/* Loader container */
.premium-loader-box {
  text-align: center;
  color: white;
  font-size: 18px;
  font-weight: 500;
}

/* Glowing spinner */
.premium-spinner {
  width: 55px;
  height: 55px;
  border: 6px solid rgba(255, 255, 255, 0.25);
  border-top-color: #b05dd6;
  border-radius: 50%;
  animation: spin 1s linear infinite, glow 1.5s ease-in-out infinite;
  margin: 0 auto 20px auto;
}

/* Text */
.premium-text {
  font-size: 17px;
  opacity: 0;
  animation: fadeInText 1s ease forwards 0.3s;
  color:#ffffff;
}

/* Animations */
@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes glow {
  0% { box-shadow: 0 0 8px #b05dd6; }
  50% { box-shadow: 0 0 18px #d8a7f0; }
  100% { box-shadow: 0 0 8px #b05dd6; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInText {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}
