/* === Confetti ===
 * Celebration particle effect overlay.
 * Particles are styled inline by JS; this provides only the container.
 * Version: 1.0.0
 */

.confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: var(--z-modal);
    overflow: hidden;
}

.confetti-piece {
    position: absolute;
    will-change: transform, opacity;
}
