/* Preloader styles */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.loader5 {
  display: flex;
  gap: 6px;
  justify-content: center;
  align-items: center;
}
.loader5 span {
  width: 4px;
  height: 28px;
  background: var(--cyan);
  border-radius: 2px;
  animation: bar 1s infinite ease-in-out;
}
.loader5 span:nth-child(1) { animation-delay: 0s; }
.loader5 span:nth-child(2) { animation-delay: 0.1s; }
.loader5 span:nth-child(3) { animation-delay: 0.2s; }
.loader5 span:nth-child(4) { animation-delay: 0.3s; }
.loader5 span:nth-child(5) { animation-delay: 0.4s; }
@keyframes bar {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}