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

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #050510;
    font-family: 'Press Start 2P', monospace;
}

#canvas {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#mobile-controls {
    display: none;
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 10;
    touch-action: none;
}

#joystick-zone {
    width: 140px;
    height: 140px;
    position: relative;
}

#joystick-base {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(0, 255, 200, 0.25);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

#joystick-knob {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 255, 200, 0.35);
    border: 2px solid rgba(0, 255, 200, 0.6);
    transition: none;
}

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

#footer a {
    color: rgba(255, 255, 255, 0.18);
    text-decoration: none;
    font-family: 'Press Start 2P', monospace;
    font-size: 8px;
    letter-spacing: 1px;
    transition: color 0.3s;
}

#footer a:hover {
    color: rgba(0, 255, 200, 0.5);
}

@media (pointer: coarse) {
    #mobile-controls {
        display: block;
    }
}