:root {
    --main-color: #6c5ce7;
    --neon-glow: #8a7bf0;
    --neon-glow50: #8a7bf050;
    --space-purple: #2a0944;
    --deep-space: #0f0326;
    --text-color: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Space Mono', monospace;
}
body{
  font-size: 2vh;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, var(--deep-space) 0%, var(--space-purple) 100%);
}
.stars-container {
  position: fixed;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.star {
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  animation: twinkle var(--duration) infinite ease-in-out;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}