html,
body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 100%;
    background-color: #000;
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: block;
    background-color: #000;
}

#debugVariables {
    position: fixed;
    top: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    border-radius: 5px;
    font-family: monospace;
    z-index: 1000;
    max-height: 80vh;
    overflow-y: auto;
    min-width: 200px;
}

.debug-variable {
    margin: 5px 0;
    padding: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.debug-variable label {
    display: inline-block;
    margin-right: 10px;
    color: #8ff;
}