<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

#speedometer {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
}

#sound-controls {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100;
}

#mute-button {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#mute-button:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

#mute-button.muted {
    background-color: rgba(255, 0, 0, 0.7);
}

#instructions {
    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;
    text-align: center;
    z-index: 1000;
}

#instructions h2 {
    margin-bottom: 15px;
}

#instructions ul {
    list-style-type: none;
    margin: 15px 0;
    text-align: left;
}

#instructions li {
    margin: 8px 0;
}

#start-button {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 10px 0;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

#start-button:hover {
    background-color: #45a049;
} </pre></body></html>