@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&family=VT323&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'VT323', monospace;
  color: #fff;
  background: #1a001a;
  overflow-x: hidden;
}

.container {
  padding: 3rem;
  max-width: 800px;
  margin: 0 auto;
  background-color: rgba(0, 0, 0, 0.6);
  border: 2px solid #ff00ff;
  border-radius: 15px;
  backdrop-filter: blur(5px);
  box-shadow: 0 0 25px #ff00ff;
}

h1, h2 {
  font-family: 'Orbitron', sans-serif;
  text-shadow: 2px 2px #ff00ff;
}

nav {
  margin: 1.5rem 0;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

nav a {
  color: #ffccff;
  text-decoration: none;
  background: #330033;
  padding: 0.5rem 1rem;
  border: 1px solid #ff00ff;
  border-radius: 5px;
  transition: background 0.3s;
}

nav a:hover {
  background: #660066;
}

ul {
  list-style: square;
}

.stars {
  position: fixed;
  width: 100%;
  height: 100%;
  background: url('https://www.transparenttextures.com/patterns/stardust.png');
  opacity: 0.3;
  z-index: -1;
  animation: moveStars 200s linear infinite;
}

@keyframes moveStars {
  from { background-position: 0 0; }
  to { background-position: 10000px 10000px; }
}

.sparkle {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #ff00ff;
  border-radius: 50%;
  box-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff;
  animation: fadeOut 1s ease-out;
  pointer-events: none;
}

@keyframes fadeOut {
  0% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(3); }
}