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

body {
    background: #000;
    overflow: hidden;
    font-family: 'Press Start 2P', monospace;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
}

#canvas {
    display: block;
    cursor: pointer;
    image-rendering: pixelated;
}

#controls {
    display: none;
}

#game-footer {
    position: fixed;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

#game-footer a {
    color: #333;
    text-decoration: none;
    font-family: 'VT323', monospace;
    font-size: 12px;
    transition: color 0.3s;
}

#game-footer a:hover {
    color: #660000;
}