* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Запрет выделения текста */
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

body {
    background: #1a1a2e;
    background-image: url('../assets/images/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 10px;
    font-family: Arial, sans-serif;
    overflow: hidden;
    /* Запрет контекстного меню на мобильных */
    -webkit-touch-callout: none;
}

#game-container {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    max-width: 100%;
    max-height: 100vh;
    width: auto;
    height: auto;
}

canvas {
    border-radius: 12px;
    display: block;
    max-width: 100%;
    max-height: 100vh;
    /* Запрет контекстного меню и выделения на canvas */
    -webkit-touch-callout: none;
    user-select: none;
    -webkit-user-select: none;
    outline: none;
}

@media (max-width: 480px) {
    body { padding: 5px; }
}

@media (max-height: 700px) and (orientation: portrait) {
    body {
        align-items: flex-start;
        padding-top: 10px;
    }
}