body {
  margin: 0;
  overflow: hidden;
  background: #0a0a0a;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  cursor: pointer;
}

.container {
  width: 800px;
  height: 600px;
  position: relative;
}

.particle {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: white;
}

.text {
  position: absolute;
  width: 100%;
  text-align: center;
  color: white;
  font-family: Arial, sans-serif;
  font-size: 60px;
  font-weight: bold;
  opacity: 0;
  text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.shape {
  position: absolute;
  border-radius: 5px;
}

.glow {
  position: absolute;
  filter: blur(20px);
  opacity: 0.5;
}
