#page-loader {
  position: fixed;
  inset: 0;
  background: rgba(2, 3, 10, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

#page-loader.active {
  opacity: 1;
  pointer-events: all;
}

.loader {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid rgba(245,210,122,0.2);
  border-top-color: #f5d27a;
  animation: spin 1s linear infinite;
  box-shadow: 0 0 30px rgba(245,210,122,0.4);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
