body {
  background-color: #0a0a2a;
  color: #fff;
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1 {
  font-size: 2.5em;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-align: center;
  margin-bottom: 10px;
  color: #ff00ff;
  text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff;
}

h2 {
  font-size: 1.2em;
  color: #00ffff;
  text-align: center;
  margin: 5px 0;
}

ul {
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

li {
  margin: 10px 0;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

li:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

a {
  color: #ff3366;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

a:hover {
  color: #ffff00;
  text-shadow: 0 0 5px #ffff00;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 20px 0;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

@keyframes neonPulse {
  0% { text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff; }
  50% { text-shadow: 0 0 20px #ff00ff, 0 0 30px #ff00ff, 0 0 40px #ff00ff; }
  100% { text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff; }
}

h1 {
  animation: neonPulse 2s infinite;
}