body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    overflow: hidden;
}

#game-container {
    width: 100vw;
    height: 100vh;
    position: relative;
}

#gameCanvas {
    width: 100%;
    height: 100%;
}

#ui-overlay {
    position: absolute;
    top: 10px;
    left: 10px;
    color: white;
    font-size: 18px;
}

#mini-map {
    width: 150px;
    height: 150px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    margin-bottom: 10px;
}

#boost-meter {
    width: 150px;
    height: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    margin-top: 10px;
}

#lobby {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 20px;
    border-radius: 10px;
}

.hidden {
    display: none;
}