/* Базовые сбросы */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    touch-action: none;
    -webkit-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    background-color: #000000;
    color: rgba(255, 255, 255, 0.87);
    font-family: Arial, sans-serif;
}

body {
    position: fixed;   /* фиксируем body, чтобы не было «отскока» на iOS */
    inset: 0;
}

#app {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#game-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Canvas растягивается на весь контейнер */
#game-container canvas {
    display: block;
    max-width: 100%;
    max-height: 100%;
}