body {
  margin: 0;
  padding: 0;
  background-color: #020205; /* Fondo ultra oscuro acorde a los docs */
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
  overflow-x: hidden;
}

/* Spinner de carga inicial con tu color #000ffa */
#loader {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: #020205;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(0, 15, 250, 0.1);
  border-top: 3px solid #000ffa;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  box-shadow: 0 0 15px #000ffa;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loaded #loader {
  opacity: 0;
  pointer-events: none;
}