body {
    font-family: sans-serif;
    background-color: #222; /* Темний фон сторінки для контрасту */
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    display: flex;
    gap: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

canvas {
    background-color: #111; /* Вимога 1: Фоновий колір WebGL сцени */
    border-radius: 8px;
}

.controls {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 200px;
}

h3 { margin-top: 0; }

label {
    display: flex;
    flex-direction: column;
    font-weight: bold;
    font-size: 14px;
}

input[type="color"], input[type="range"] {
    margin-top: 5px;
    width: 100%;
}