body {
    margin: 0;
    padding: 0;
    background-color: #000;
    overflow: hidden; /* Prevent scrolling */
    touch-action: none; /* Prevent browser handling of touch gestures */
}

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

#orientation-warning {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    color: #0ff; /* Neon Cyan */
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Courier New', Courier, monospace;
    font-size: 20px;
    z-index: 1000;
}

/* Optional: Font import if you want a specific retro font later */
