Pulse 22 Techno stage

21:00 Elektrabel
22:30 Peat
00:00 Nika 77
01:30 Icarian PB1
03:00 Dark Rythm (Nadine b2b Patricio Strix)
04:30 Cuba
06:00 NFKS
07:30 Daria

Pulse 22 Trance stage

20:00 Francoa Le Geue
21:00 Dalphon
22:00 Alatheia
23:00 Steve Meyer
00:00 Foxxy Jay
01:00 Chris Cage
02:00 Marc Tatossian
03:00 Dreamseekers
04:00 Imperial
05:00 Stif

Balbi main stage

21:00 Toby King
23:00 Lumiere
00:00 Chuck + Mc Manda
01:30 Headbang b2b Decoy
03:00 Veronique


BUY TICKETS HERE

const color = `rgba(255, 215, 0, 1)`; // Zlatá farba particles.push(new Particle( x, y, color, size, Math.cos(angle) * speed, Math.sin(angle) * speed, lifespan )); } } function animate() { ctx.fillStyle = 'rgba(0, 0, 0, 0.1)'; ctx.fillRect(0, 0, canvas.width, canvas.height); particles = particles.filter(p => p.lifespan > 0); particles.forEach(particle => { particle.update(); particle.draw(); }); if (Math.random() < 0.05) { createFirework( Math.random() * canvas.width, Math.random() * canvas.height ); } requestAnimationFrame(animate); } animate(); window.addEventListener('resize', () => { canvas.width = window.innerWidth; canvas.height = window.innerHeight; });