body {
    margin: 0;
    padding: 0;
    background: #000;
    overflow: hidden;
    color: #fff;
    font-family: 'Outfit', sans-serif;
}

#game-container {
    width: 100%;
    max-width: 400px;
    height: 600px;
    display: block;
    background: #000;
    position: relative;
    touch-action: none;
    border: 4px solid #f2a900;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(242, 169, 0, 0.3);
    box-sizing: border-box;
    margin: 0 auto;
    overflow: hidden;
}

@media (max-width: 768px) {
    #game-container {
        max-width: 100vw;
        height: calc(100dvh - 60px);
        border: none;
        border-radius: 0;
    }

    body.immersive-mode #game-container {
        height: 100dvh;
    }
}

#gameCanvas {
    display: block;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    background: #000;
    /* JS sets width/height, but these prevent default browser scaling behaviors */
    max-width: none;
    max-height: none;
    box-sizing: border-box;
}

/* Base styles are inherited from /styles/game-ui.css, but we can override if needed */