﻿/* Ensure the particle canvas is fixed and covers the whole screen */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999; /* Ensure it's above other elements */
}

/* Apply an animation effect when buttons trigger explosions */
.explosion-button {
    transition: transform 0.2s ease-out;
}

    .explosion-button.active {
        transform: scale(1.2);
    }
