#page-loader {
  position: fixed;
  inset: 0;
  background: #0b0b0b;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spinner {
  width: 48px;
  height: 48px;
  border: 4px solid #2c2c2c;
  border-top: 4px solid #00e5ff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

body.loading {
  overflow: hidden;
}