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

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

#game-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

#canvas {
    flex: 1;
    display: block;
    width: 100%;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: none;
}

#game-footer {
    background: #0d0d24;
    color: #666;
    font-family: 'Press Start 2P', monospace;
    font-size: 8px;
    text-align: center;
    padding: 6px 10px;
    border-top: 1px solid #1a1a3e;
    flex-shrink: 0;
}

#game-footer a {
    color: #00ffff;
    text-decoration: none;
}

#game-footer a:hover {
    text-decoration: underline;
}