/**
 * Sweet & Naughty — site-wide candy effects styles.
 *
 * Positioning and z-index are also set inline by candy-effects.js; these rules
 * act as a safety net and guarantee the overlays never block interaction.
 */

.san-candy-burst,
.san-candy-ambient {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	pointer-events: none; /* Clicks pass through to page content. */
}

/* Burst overlay sits above content so bursts are visible everywhere. */
.san-candy-burst {
	z-index: 2147483646;
}

/* Ambient sweets fall behind all page content. */
.san-candy-ambient {
	z-index: -1;
}
