/* Mushroom Shooter — aim & fire (loads after mushroom-match.css) */

.mushroom-shooter-layout {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 1.25rem;
    align-items: start;
}

.mushroom-shooter-canvas-wrap {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.mushroom-shooter-canvas {
    display: block;
    width: 100%;
    height: auto;
    min-height: 480px;
    border-radius: 18px;
    border: 2px solid rgba(120, 180, 120, .35);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .18);
    touch-action: none;
    cursor: crosshair;
    background: #0d1f17;
}

.mushroom-shooter-section .mushroom-hud {
    position: sticky;
    top: 1rem;
}

@media (max-width: 900px) {
    .mushroom-shooter-layout {
        grid-template-columns: 1fr;
    }

    .mushroom-shooter-section .mushroom-hud {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .mushroom-shooter-canvas-wrap {
        max-width: 100%;
    }
}
