/* 🛡️ Богатырский Путь — Стили страницы / Page styles */
/* 🎨 Славянская тема, золото + тёмно-красный / Slavic theme, gold + dark-red */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* 🌑 Тёмный фон / Dark background */
    background: linear-gradient(135deg, #2F4F4F 0%, #000000 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
    font-family: "Times New Roman", serif;
}

/* 🎮 Контейнер игры / Game container */
#game-container {
    border: 5px solid #8B4513;
    border-radius: 10px;
    box-shadow:
        0 0 20px rgba(139, 69, 19, 0.5),
        0 0 40px rgba(255, 215, 0, 0.2);
    overflow: hidden;
}

/* 🎮 Canvas игры — убрать фокусную рамку / Game canvas — remove focus outline */
#game-container canvas {
    display: block;
    outline: none;
    image-rendering: pixelated; /* 🔲 Пиксельный рендеринг / Pixelated rendering */
    image-rendering: crisp-edges;
}

/* 📱 Мобильные устройства / Mobile devices */
@media (max-width: 850px) {
    #game-container {
        border-width: 3px;
        border-radius: 5px;
    }
}

@media (max-width: 500px) {
    body {
        align-items: flex-start;
    }
    #game-container {
        border: none;
        border-radius: 0;
        box-shadow: none;
    }
}