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

body {
    background: #1a1a2e;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: 'Press Start 2P', monospace;
    overflow: hidden;
}

#game-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(42, 157, 143, 0.3);
}

canvas {
    display: block;
}
