#preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  /*background: #fff;*/
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loader-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.loader-dots span {
  width: 12px;
  height: 12px;
  background: #01E0E0;
  border-radius: 50%;
  animation: pulse 1s infinite ease-in-out;
}

.loader-dots span:nth-child(2) { animation-delay: 0.2s; }
.loader-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes pulse {
  0%, 100% { transform: scale(0.8); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; }
}

#preloader p {
  margin-top: 15px;
  font-size: 16px;
  color: #666;
}

/* === Page Content === */
.page-content {
  padding: 40px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.6s ease;
}