/**
 * Salvant Holiday Decorator Styles
 */
.salvant-holiday-corner {
    position: fixed;
    z-index: 9999;
    pointer-events: none;
    /* Let clicks pass through */
    width: 150px;
    height: 150px;
    background-size: contain;
    background-repeat: no-repeat;
}

.salvant-holiday-corner.top-left {
    top: 0;
    left: 0;
    z-index: 999999;
}

.salvant-holiday-corner.top-right {
    top: 0;
    right: 0;
    transform: scaleX(-1);
}

/* Mirror for right side if needed */
.salvant-holiday-corner.bottom-left {
    bottom: 0;
    left: 0;
}

.salvant-holiday-corner.bottom-right {
    bottom: 0;
    right: 0;
    transform: scaleX(-1);
}

/* Particle Canvas */
#salvant-holiday-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
}

/* Dynamic styles will be injected via PHP/Inline CSS */