/* Reset and full-screen canvas with advanced styling */
html, body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 100%;
    width: 100%;
    background: linear-gradient(135deg, #222, #111);
}
#explosionCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 9999;
    background: radial-gradient(circle, #222, #000);
}
/* Optional: Add some CSS for game elements if needed */