/* Splash Screen Styles */
#splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.loader {
  width: clamp(35px, 8vmin, 55px);
  height: clamp(35px, 8vmin, 55px);
  border-radius: 50%;
  background: conic-gradient(#5A00C1, #9B4CF5, #E3CCFC, transparent);
  -webkit-mask: radial-gradient(farthest-side, transparent 70%, black 71%);
  mask: radial-gradient(farthest-side, transparent 70%, black 71%);
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Popup Blocked Fallback Styles */
#popup {
  display: none;
  position: fixed;
  top: 2vh;
  left: 50%;
  width: 90%;
  max-width: 400px;
  transform: translateX(-50%);
  background: #fff;
  padding: 16px;
  border: 1px solid #ccc;
  z-index: 10000;
  border-radius: 10px;
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  color: #333;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.popup-title {
  margin-top: 0.5rem;
}

.popup-text {
  line-height: 1.4;
}

.popup-btn-primary {
  height: 30px;
  width: 100px;
  font-size: 16px;
  margin-right: 10px;
  border-radius: 8px;
  box-shadow: none;
  background-color: #012dc7;
  color: white;
  border: none;
  cursor: pointer;
}

.popup-btn-secondary {
  height: 30px;
  width: 100px;
  font-size: 16px;
  border-radius: 8px;
  box-shadow: none;
  background-color: white;
  color: black;
  border: 1px solid #ccc;
}
