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

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

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

#gameCanvas {
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    background: #000;
    border: 4px solid #e94560;
    box-shadow: 0 0 30px rgba(233, 69, 96, 0.5);
}
