body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #1e1e28; /* Match Pygame COLOUR_BG (30, 30, 40) */
    font-family: 'Courier New', Courier, monospace; /* Fallback retro font */
}

#game-container {
    width: 100%;
    height: 100%;
}

canvas {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    border: 2px solid #333;
}

#name-input-dom {
    background-color: #14141e;
    color: #00ff00;
    border: 2px solid #ffffff;
    font-size: 30px;
    font-family: 'Courier New', Courier, monospace;
    padding: 10px;
    width: 300px;
    text-align: center;
    outline: none;
}
#name-input-dom:focus {
    border-color: #ffd700;
}
