body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #111;
    font-size: 16px;
    color: #ccc;
    font-family: 'Arial', sans-serif;
    overflow: hidden;
}

#container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
}

canvas {
    border: 1px solid #333;
    background-color: #000;
    box-shadow: 0 0 20px rgba(0, 100, 255, 0.2);
}

#controls {
    margin-top: 20px;
    text-align: center;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    width: 80%;
    max-width: 500px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

#info p {
    margin: 5px 0;
}

#speed-display {
    font-weight: bold;
    color: #4cc9f0;
}

#sliders {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.slider-control {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.slider-control label {
    flex: 1;
    text-align: left;
    font-size: 14px;
    color: #f0f0f0;
}

.slider-control input[type="range"] {
    flex: 2;
    height: 5px;
    appearance: none;
    background: #333;
    border-radius: 5px;
    outline: none;
}

.slider-control input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #4cc9f0;
    cursor: pointer;
}

.slider-control input[type="range"]::-moz-range-thumb {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #4cc9f0;
    cursor: pointer;
}