ÿØÿà JFIFÿØÿà JFIF ÿØÿà JFIFÿØÿà JFIF ÿþ$
<?php include 'topbar.php'; ?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>The Glitz Contest - Contest Ended</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body style="margin:0; font-family: 'Segoe UI', Tahoma, sans-serif; color: white; text-align: center; overflow:hidden;">
<!-- Confetti Canvas -->
<canvas id="confetti-canvas" style="position:fixed; top:0; left:0; width:100%; height:100%; z-index:999; pointer-events:none;"></canvas>
<div style="background-color:black; color:white; position:relative; z-index:1; display:flex; flex-direction:column; justify-content:center; align-items:center; height:80vh; padding:20px;">
<h1 style="font-size:3.5em; margin-bottom:10px; text-shadow: 2px 2px 8px rgba(0,0,0,0.4);">
🎉 The Contest is Over! 🎉
</h1>
<p style="font-size:1.3em; max-width:600px; line-height:1.5;">
Thank you to everyone who participated in <strong>The Glitz Contest</strong>!
Stay tuned for the announcement of winners and our next exciting event.
</p>
<a href="/" style="margin-top:25px; display:inline-block; padding:12px 25px; background:#fff; color:#886018; font-weight:bold; border-radius:30px; text-decoration:none; transition:0.3s;">
Back to Home
</a>
</div>
<?php include 'bottombar.php'; ?>
<!-- Confetti Script -->
<script>
(function() {
var canvas = document.getElementById('confetti-canvas');
var ctx = canvas.getContext('2d');
var confetti = [];
var colors = ['#FFD700', '#FF69B4', '#00CED1', '#ADFF2F', '#FF4500'];
function resizeCanvas() {
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
}
window.addEventListener('resize', resizeCanvas);
resizeCanvas();
function createConfettiPiece() {
return {
x: Math.random() * canvas.width,
y: Math.random() * canvas.height - canvas.height,
r: Math.random() * 6 + 4,
d: Math.random() * 2 + 1.5, // Increased speed
color: colors[Math.floor(Math.random() * colors.length)],
tilt: Math.random() * 10 - 10
};
}
for (var i = 0; i < 150; i++) {
confetti.push(createConfettiPiece());
}
function drawConfetti() {
ctx.clearRect(0, 0, canvas.width, canvas.height);
confetti.forEach(function(c) {
ctx.beginPath();
ctx.lineWidth = c.r;
ctx.strokeStyle = c.color;
ctx.moveTo(c.x + c.tilt + c.r / 4, c.y);
ctx.lineTo(c.x + c.tilt, c.y + c.tilt + c.r / 4);
ctx.stroke();
});
updateConfetti();
}
function updateConfetti() {
confetti.forEach(function(c) {
c.y += c.d;
c.tilt += 0.1 * Math.sin(c.y / 20);
if (c.y > canvas.height) {
var index = confetti.indexOf(c);
confetti[index] = createConfettiPiece();
}
});
}
function animate() {
drawConfetti();
requestAnimationFrame(animate);
}
animate();
})();
</script>
</body>
</html>
ÿØÿà JFIF ÿþ$
ÿØÿà JFIF ÿþ$
ÿÂ