body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    background-image: url('image/BDS-GAME.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1a1a2e; /* Dark blue base with gradient */

    font-family: 'Press Start 2P', cursive;
    touch-action: none; /* Prevent default touch behaviors */
}
canvas {
    border: 2px solid #333;
    background-color: #000;
}
#score {
    margin-bottom: 10px;
    color: #00ff00; /* Neon green for 80s vibe */
    text-shadow: 2px 2px #ff00ff; /* Magenta shadow for retro effect */
    z-index: 999;
    font-size: 22px;
}
#startButton {
    display: none;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 15px 30px;
    font-size: 18px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    z-index: 10;
    font-family: 'Press Start 2P', cursive;
}
#startButton:hover {
    background-color: #45a049;
}