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

body {
    font-family: Consolas, "Courier New", monospace;
    overflow: hidden;
    background: #111827;
    color: #e5e7eb;
}

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

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

#phaser-game canvas {
    display: block;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    cursor: pointer;
    max-width: 100%;
    max-height: 100%;
}

/* Light theme support */
@media (prefers-color-scheme: light) {
    body {
        background: #f8fafc;
        color: #0f172a;
    }
}

