* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #87CEEB;
    overflow: hidden;
}

#game-container {
    display: flex;
    width: 100vw;
    height: 100vh;
}

#game-canvas {
    flex: 1;
    background-color: #90EE90;
    border: 2px solid #333;
}

#ui {
    width: 250px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#controls {
    margin-bottom: 20px;
}

#controls h3 {
    margin-bottom: 10px;
    color: #FFD700;
}

#controls p {
    margin-bottom: 5px;
    font-size: 14px;
}

#status {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 5px;
}

#status p {
    margin-bottom: 5px;
    font-size: 16px;
}

#player-status {
    font-weight: bold;
    color: #00FF00;
}

#speed {
    color: #FFFF00;
}
