body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    background-color: #f0e6d2;
}

#game-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

canvas {
    display: block;
}

#ui {
    position: absolute;
    top: 20px;
    left: 20px;
    pointer-events: none;
    z-index: 100;
}

#score {
    font-size: 24px;
    font-weight: 600;
    color: #5d4037;
    background: rgba(255, 255, 255, 0.7);
    padding: 10px 20px;
    border-radius: 10px;
    margin-bottom: 10px;
}

#instructions {
    font-size: 16px;
    color: #795548;
    background: rgba(255, 255, 255, 0.5);
    padding: 5px 15px;
    border-radius: 5px;
    margin-bottom: 10px;
}
