/* Boomer - Global Styles */

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

html, body {
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    overflow: hidden;
    font-family: monospace;
}

#mobile-warning {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: #ccc;
    text-align: center;
    padding: 2rem;
}

#mobile-warning h1 {
    font-size: 2.5rem;
    color: #ff6644;
    margin-bottom: 1.5rem;
    letter-spacing: 0.3rem;
}

#mobile-warning p {
    font-size: 1rem;
    line-height: 1.8;
    max-width: 400px;
}

@media (pointer: coarse), (max-width: 960px) {
    #mobile-warning {
        display: flex;
    }
    #game-container {
        display: none !important;
    }
}

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

#gameCanvas {
    display: block;
    image-rendering: pixelated;
    cursor: crosshair;
    max-width: 100%;
    max-height: 100%;
    border: 1px solid #222;
}
