/* =========================================
   JUPITER SYSTEMS GLOBAL LOADER
   ========================================= */

.loader-overlayinit {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* =========================================
   LOADER BOX
   ========================================= */

.jupiter-loader {
  width: 300px;
  padding: 35px 35px 28px;
  background: #080a0c;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.60);
  animation: loader-enter 0.35s ease-out;
}


/* =========================================
   LOGO AREA
   ========================================= */

.jupiter-logo-area {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* =========================================
   LOGO
   ========================================= */

.jupiter-logo {
  position: relative;
  width: 115px;
  height: 115px;
  object-fit: contain;
  border-radius: 22px;
  z-index: 5;
  animation: logo-breathe 1.8s ease-in-out infinite;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.08);
}


/* =========================================
   LOGO GLOW
   ========================================= */

.logo-glow {
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient( circle, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.08) 35%, transparent 70% );
  filter: blur(8px);
  animation: logo-glow-animation 1.8s ease-in-out infinite;
  z-index: 2;
}


/* =========================================
   OUTER ORBIT 1
   ========================================= */

.orbit {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}


/* Pink / Orange orbit */

.orbit-1 {
  width: 145px;
  height: 145px;
  border: 3px solid transparent;
  border-top-color: #ff7b22;
  border-right-color: #f34b91;
  animation: orbit-clockwise 1.5s linear infinite;
  filter: drop-shadow( 0 0 6px rgba(255, 100, 100, 0.7) );
  z-index: 3;
}


/* Green / Blue orbit */

.orbit-2 {
  width: 132px;
  height: 132px;
  border: 2px solid transparent;
  border-bottom-color: #38b878;
  border-left-color: #62c9ed;
  animation: orbit-counter 2s linear infinite;
  filter: drop-shadow( 0 0 6px rgba(80, 200, 220, 0.7) );
  z-index: 4;
}


/* =========================================
   MESSAGE
   ========================================= */

.loader-message {
  min-height: 22px;
  margin-top: 22px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
}


/* =========================================
   DOTS
   ========================================= */

.loader-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}


  .loader-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #62c9ed;
    animation: loading-dot 1.2s ease-in-out infinite;
  }


    .loader-dots span:nth-child(1) {
      animation-delay: 0s;
    }

    .loader-dots span:nth-child(2) {
      animation-delay: 0.15s;
    }

    .loader-dots span:nth-child(3) {
      animation-delay: 0.30s;
    }


/* =========================================
   ANIMATIONS
   ========================================= */

@keyframes logo-breathe {

  0%, 100% {
    transform: scale(0.96);
  }

  50% {
    transform: scale(1.04);
  }
}


@keyframes logo-glow-animation {

  0%, 100% {
    transform: scale(0.85);
    opacity: 0.35;
  }

  50% {
    transform: scale(1.15);
    opacity: 0.75;
  }
}


@keyframes orbit-clockwise {

  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}


@keyframes orbit-counter {

  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}


@keyframes loading-dot {

  0%, 80%, 100% {
    transform: translateY(0);
    opacity: 0.35;
  }

  40% {
    transform: translateY(-5px);
    opacity: 1;
  }
}


@keyframes loader-enter {

  from {
    opacity: 0;
    transform: scale(0.92) translateY(10px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
