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

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #0a1628;
    font-family: 'Chakra Petch', sans-serif;
    touch-action: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

canvas {
    display: block;
    margin: 0 auto;
}

#controls {
    display: none;
}

#game-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 6px 10px;
    font-size: 11px;
    color: #4a6080;
    font-family: 'JetBrains Mono', monospace;
    background: rgba(10, 22, 40, 0.9);
    z-index: 100;
}

#game-footer a {
    color: #6ba3d6;
    text-decoration: none;
}

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