/* Robot Arena Mutante - Estilos */

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

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #1a1a2e;
    font-family: 'Arial', sans-serif;
    overflow: hidden;
}

#game-container {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 4px solid #4a4a6a;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(100, 100, 200, 0.3);
}

canvas {
    display: block;
}
