body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

#game-container {
    text-align: center;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #0080ff;
}

#game-canvas {
    border: 2px solid #0080ff;
    background-color: #000022;
    box-shadow: 0 0 20px #0080ff;
}

#score {
    font-size: 1.2em;
    margin: 10px 0;
    color: #ffff00;
}

#instructions {
    font-size: 1em;
    margin-top: 10px;
    color: #cccccc;
}