/* === Funbox Loader CSS === */

#page-loader {
  position: fixed;
  inset: 0;
  background: #0e0e0e;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.circle {
  width: 34px;
  height: 34px;
  border: 3px solid rgba(255, 77, 0, 0.25);
  border-top-color: #ff4d00;
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
