/* Global styles */
* {
    box-sizing: border-box;
}

html, body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: #000;
}

#app {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

/* Canvas styles for game - убираем ограничения для теста */
canvas {
    display: block !important;
    margin: 0 auto !important;
    /* Временно убираем ограничения */
    /* max-width: 98vw !important; */
    /* max-height: 95vh !important; */
    width: auto !important;
    height: auto !important;
    object-fit: none !important;
    position: relative !important;
}


