/* Force the HTML and Body to take up the full dimensions */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #0b0c10; /* Deep space background */
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden; /* Prevent scrolling */
    touch-action: none; /* Prevent default touch actions like pull-to-refresh on mobile */
}

/* Container for the game canvas */
#game-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

/* Canvas styling */
canvas {
    display: block;
    margin: 0 auto;
    user-select: none;
    -webkit-user-select: none;
    outline: none;
}