.mg-body {
    background: #1a0010;
    position: relative;
    overflow: hidden;
}

.mg-canvas {
    display: block;
    width: 100%;
    height: 100%;
}

.mg-hud {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    justify-content: space-between;
    font-family: 'Press Start 2P', monospace;
    font-size: 10px;
    color: white;
    pointer-events: none;
}

.mg-overlay {
    display: none;
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .78);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 13px;
}

.mg-overlay.show {
    display: flex;
}

.mg-title {
    font-family: 'Press Start 2P', monospace;
    font-size: 17px;
    color: var(--pink);
    text-align: center;
}

.mg-sub {
    font-family: 'Press Start 2P', monospace;
    font-size: 9px;
    color: white;
    text-align: center;
    line-height: 2;
    white-space: pre-line;
}

.mg-result {
    font-family: 'Press Start 2P', monospace;
    font-size: 12px;
    color: white;
    text-align: center;
}

.mg-btn {
    background: var(--pink);
    color: white;
    border: 2px solid white;
    border-radius: 16px;
    padding: 10px 26px;
    font-family: 'Press Start 2P', monospace;
    font-size: 10px;
    cursor: pointer;
}

.mg-btn2 {
    background: #666;
    color: white;
    border: 2px solid white;
    border-radius: 16px;
    padding: 10px 26px;
    font-family: 'Press Start 2P', monospace;
    font-size: 10px;
    cursor: pointer;
}
