#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;
}

.spinner{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 5px solid #eee;
  border-top: 5px solid #01E0E0;
  animation: rotate 0.8s linear infinite;
}

@keyframes rotate{
  to{
    transform: rotate(360deg);
  }
}

#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;
}