/* ==========================================================================
   DESKTOP.CSS (Loaded exclusively on Mac / PCs with mouse input)
   ========================================================================== */

html, body {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: #050508;
    
    /* Absolute centering frame layout */
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

#gameWorld {
    position: relative;
    width: 800px;
    height: 560px;
    max-width: 100vw;
    max-height: 100vh;
    aspect-ratio: 10 / 7;
    background: #0b0c10;
    border: 4px solid #1f2833;
    box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.7);
    overflow: hidden;
    box-sizing: border-box;
}

#levelCanvas {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

/* Hide mobile controls entirely on desktop viewports */
#touchControls {
    display: none !important;
}