#initial-loader {
  min-height: 100vh;
  background: #0d1117;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 1;
  transition: opacity .3s;
}

#initial-loader .spinner {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(59, 130, 246, 0.3);
  border-top-color: #3b82f6;
  animation: hubspin 1s linear infinite;
}

#initial-loader p {
  font-family: system-ui, sans-serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: #3b82f6;
}

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