/* Emergency loader disable to unblock production homepage */
#custom-loader{display:none !important;visibility:hidden !important;opacity:0 !important;pointer-events:none !important;}
/* GPOWER LOADER */
#custom-loader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, #222831 0%, #1A1F25 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
#custom-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.circle-loader {
  position: relative;
  width: 80px;
  height: 80px;
}
.outer-dotted {
  position: absolute;
  inset: 0;
  border: 3px solid rgba(53,178,51,0.12);
  border-top-color: #35B233;
  border-right-color: #35B233;
  border-radius: 50%;
  animation: cw 0.8s linear infinite;
  filter: drop-shadow(0 0 6px rgba(53,178,51,0.6));
  will-change: transform;
}
.inner-dotted {
  position: absolute;
  inset: 13px;
  border: 2.5px solid rgba(53,178,51,0.10);
  border-bottom-color: #35B233;
  border-left-color: #35B233;
  border-radius: 50%;
  animation: ccw 0.6s linear infinite;
  filter: drop-shadow(0 0 5px rgba(53,178,51,0.5));
  will-change: transform;
}
@keyframes cw  { to { transform: rotate(360deg);  } }
@keyframes ccw { to { transform: rotate(-360deg); } }
.loader-text {
  color: #35B233;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(53,178,51,0.5);
  animation: pulse 1s ease-in-out infinite alternate;
}
@keyframes pulse {
  from { opacity: 0.5; }
  to   { opacity: 1;   }
}