body, html {
    margin: 0;
    padding: 0;
    background-color: #050505;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
}

#gameWrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Start point before client.js scaling */
    width: 1200px;
    height: 800px;
}

canvas {
    display: block;
    image-rendering: pixelated;
}

/* Touch Zonen für Mobile überlagern das ganze Bild */
.touch-controls {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    z-index: 10;
}

.touch-zone {
    flex: 1;
    height: 100%;
    /* Uncomment below to debug hitboxes! */
    /* border: 1px solid rgba(255,255,255,0.1); */
    /* background: rgba(0, 255, 0, 0.05); */
    user-select: none;
    touch-action: none;
}
