/* ========================================
   SCSS VARIABLES & MIXINS
   ======================================== */
/* ========================================
   CANVAS LOADER STYLES
   ======================================== */
.loader-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #0a0a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1);
  overflow: hidden;
}
.loader-overlay.fade-out {
  opacity: 0;
  pointer-events: none;
}

#loader-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.loader-foreground {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
  margin-top: 350px;
}

.loader-text-glitch {
  font-family: "Space Age", sans-serif;
  font-size: 2.2rem;
  letter-spacing: 6px;
  color: #fff;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  transition: transform 0.05s ease;
}
.loader-text-glitch .cursor {
  display: inline-block;
  width: 5px;
  height: 2.2rem;
  background: #f4a01c;
  margin-left: 10px;
  animation: blink 0.8s step-end infinite;
  box-shadow: 0 0 10px #f4a01c;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}
.loader-progress-wrapper {
  width: 400px;
  position: relative;
}

.loader-progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.loader-progress-label .loader-progress-percent {
  color: #f4a01c;
  text-shadow: 0 0 10px rgba(244, 160, 28, 0.6);
}

.loader-progress {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.loader-progress .loader-progress-bar {
  height: 100%;
  width: 0%;
  background: #f4a01c;
  box-shadow: 0 0 20px #f4a01c;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .loader-foreground {
    margin-top: 250px;
  }
  .loader-text-glitch {
    font-size: 1.5rem;
  }
  .loader-progress-wrapper {
    width: 280px;
  }
}

/*# sourceMappingURL=animations.css.map */
