/* Patikil (ti boul blan k ap flote) */
.particles {
  position: fixed;
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.particle {
  position: absolute;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  animation: floatParticle 20s linear infinite;

  /* Efè glow / lumineux */
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.9),
              0 0 12px rgba(255, 255, 255, 0.7),
              0 0 20px rgba(124, 92, 255, 0.6),
              0 0 35px rgba(90, 209, 230, 0.5);
  filter: blur(0.5px);
}

@keyframes floatParticle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  20% { opacity: 1; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}
