/* =============================================================================
   Kulki / Bubbles — game-specific styles (canvas frame, hint line).
   Loaded together with games.css via $extraCss. Uses site design tokens;
   the in-game visuals (bubbles, shooter, guide line, next-bubble preview,
   colourblind symbols) are drawn on the canvas by game-kulki.js, like the
   classic palettes in games-cegielki.css.
   ============================================================================= */

.kul-canvas-wrap {
    max-width: 480px;
    margin: 0 auto;
}

#kulCanvas {
    display: block;
    width: 100%;
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
    cursor: crosshair;
}

#kulCanvas:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Aiming hint under the board. */
.kul-hint {
    max-width: 480px;
    margin: 0.5rem auto 0;
    min-height: 1.4em;
    text-align: center;
    color: var(--color-gray-700);
    font-size: 0.9rem;
}

/* ---------------- Stats modal extra ---------------- */

.kul-best-line {
    margin-top: 0.75rem;
    color: var(--color-gray-700);
}
