/**
 * Sinhala & Tamil New Year Animation
 * style.css
 */

#stny-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;

    /* Critical: never block clicks / scrolling */
    pointer-events: none;

    /* Let the browser composite on GPU */
    will-change: transform;

    /* Transparent so page content shows through */
    background: transparent;
}

/* Mobile: cap canvas to viewport so it never causes scroll */
@media ( max-width: 768px ) {
    #stny-canvas {
        width: 100vw;
        height: 100vh;
        /* prevent overscroll artefacts */
        overflow: hidden;
    }
}
