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

.loader-container {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-wrapper {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 50%;
  left: 50%;
  margin-top: -25px;
  margin-left: -25px;
  opacity: 0;
}

svg {
  width: 100%;
  height: 100%;
  stroke-width: 3;
  fill: none;
}

/* Neon glow effects for each icon */
#triangle {
  stroke: #00ff4c;
  filter: drop-shadow(0 0 6px #00ff4c) drop-shadow(0 0 10px #00ff4c);
}

#circle {
  stroke: #ff1744;
  filter: drop-shadow(0 0 6px #ff1744) drop-shadow(0 0 10px #ff1744);
}

#x {
  stroke: #2979ff;
  filter: drop-shadow(0 0 6px #2979ff) drop-shadow(0 0 10px #2979ff);
}

#square {
  stroke: #f50057;
  filter: drop-shadow(0 0 6px #f50057) drop-shadow(0 0 10px #f50057);
}

/* Add a subtle reflection effect */
.loader-container::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 20px;
  bottom: -30px;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.2) 0%, rgba(0,0,0,0) 70%);
  border-radius: 50%;
}