/*!
 * solitaire-victory.css — pairs with solitaire-victory.js
 * Version: 1.0.0 | License: MIT | https://goboldlyforward.github.io/solitaire-victory/
 */

/* Host element the plugin mounts into. */
.solitaire-victory {
  position: relative;
}

/* The canvas fills its host. */
.solitaire-victory__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* Zero-config stacking: host content that isn't the canvas floats above it. */
.solitaire-victory > :not(.solitaire-victory__canvas) {
  position: relative;
  z-index: 1;
}

/* Fullscreen celebration overlay (no target / SolitaireVictory.celebrate()).
 * pointer-events: none so the page stays fully interactive underneath. */
.solitaire-victory--overlay {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  pointer-events: none;
}
