/**
 * Mini Site Tools - Decor Feature
 * Scoped strictly to #mst-decor-overlay to avoid conflicts.
 */

#mst-decor-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 99999;
    overflow: hidden;
}

.mst-particle {
    position: absolute;
    top: -20px; /* Start slightly above viewport */
    will-change: transform, opacity;
}

/* Snow specific */
.mst-particle.type-snow {
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 2px rgba(255,255,255,0.8);
}

/* Tet specific */
.mst-particle.type-tet {
    /* Colors handled via inline style or JS randomizer, default shape is rect */
}

/* Christmas specific */
.mst-particle.type-christmas {
    /* Colors handled via inline style */
}
