body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #000;
    touch-action: manipulation;
}

#game-canvas {
    display: block;
    width: 100%;
    height: 100vh;
}

#score-container {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
    color: white;
}

#missed-container {
    position: absolute;
    top: 20px;
    right: 20px;
    text-align: right;
    z-index: 10;
    color: white;
}

#score {
    font-size: 2em;
    color: white;
    font-family: Arial, sans-serif;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
}
