/* FusionBots - Retro-futuristic Neon Theme */

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

body {
    background-color: #0a0a0f;
    font-family: 'Courier New', Courier, monospace;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

#game-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

canvas {
    display: block;
    border: 2px solid #333;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.3), 0 0 40px rgba(255, 45, 120, 0.2);
}
