body {
  background-color: #0f0e0d;
  background-image:
    radial-gradient(ellipse at 50% 0%, #0f1120 0%, transparent 60%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  padding: 2rem 1rem;
  position: relative;
  overflow-x: hidden;
}

h1
{
  color: rgb(217, 255, 0);
  font-family: monospace;
  font-weight: bold;
  padding: 50px;
  background-color: black;
  border-radius: 40px;
}

#loader {
  position: fixed;
  inset: 0;
  background: black;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease;
}

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

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.loader-dots {
  display: flex;
  gap: 8px;
}

.loader-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00ff00;
  box-shadow: 0 0 8px #00ff00;
  animation: dot-pulse 1.2s ease-in-out infinite;
}

.loader-dots span:nth-child(2) { animation-delay: 0.2s; }
.loader-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes dot-pulse {
  0%, 100% { opacity: 0.2; transform: scale(0.8); }
  50%       { opacity: 1;   transform: scale(1.2); }
}

.loader-text {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #00ff0066;
  font-family: 'Courier New', monospace;
  animation: fade-flicker 2s ease-in-out infinite;
}

@keyframes fade-flicker {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}