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

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

#canvas {
    display: block;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    cursor: pointer;
    max-width: 100vw;
    max-height: calc(100vh - 30px);
    background: #1a0a2e;
}

#controls {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    gap: 10px;
    z-index: 10;
}

#game-footer {
    position: fixed;
    bottom: 5px;
    width: 100%;
    text-align: center;
    z-index: 100;
}

#game-footer a {
    color: #666;
    text-decoration: none;
    font-family: 'Press Start 2P', monospace;
    font-size: 8px;
}

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

@media (max-width: 768px) {
    #canvas {
        width: 100vw;
        height: calc(100vh - 30px);
    }
}