body {
    margin: 0;
    padding: 0;
    background:
        radial-gradient(circle at 15% 10%, rgba(245, 137, 90, 0.22) 0%, rgba(245, 137, 90, 0) 40%),
        radial-gradient(circle at 82% 14%, rgba(115, 168, 255, 0.2) 0%, rgba(115, 168, 255, 0) 42%),
        linear-gradient(180deg, #2b1b3f 0%, #1b142f 56%, #0f0b1d 100%);
    font-family: "Courier New", monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #fff3da;
}

#app {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

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

canvas {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    max-height: 100%;
    image-rendering: pixelated;
}
