body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
    background-color: #87CEEB;
    font-family: "Minecraft", 'Courier New', monospace;
    overflow-x: hidden;
}

#scroll-container {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    z-index: 0;
}

#ui-layer {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 100;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
    border: 2px solid #555;
    box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

#loading {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 200;
    background: #333;
    color: white;
    padding: 20px;
    border: 4px solid white;
    font-size: 24px;
}