body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
}

#gameArea {
    position: relative;
    width: 800px;
    height: 600px;
    background-color: #222;
    overflow: hidden;
    border: 2px solid #000;
}

#player {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 50px;
    height: 50px;
    background-color: #ff0000;
    transform: translateX(-50%);
}

#score, #status {
    position: absolute;
    top: 10px;
    color: #fff;
    font-size: 24px;
}

#score {
    left: 10px;
}

#status {
    right: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

#gameOver {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 48px;
    text-align: center;
}

.hidden {
    display: none;
}

.fallingObject {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #00ff00;
}
