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

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

#game-wrapper {
    position: relative;
    border: 3px solid #333;
    box-shadow: 0 0 30px rgba(0, 200, 255, 0.3), 0 0 60px rgba(255, 0, 100, 0.2);
    border-radius: 4px;
}

canvas {
    display: block;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}

footer {
    margin-top: 16px;
    color: #555;
    font-size: 10px;
    font-family: 'Press Start 2P', monospace;
}

footer a {
    color: #0cf;
    text-decoration: none;
}

footer a:hover {
    color: #fff;
}