/* ═══════════════════════════════════════════════════════
   🔥 TISON RAIN — Easter Egg for user "Tison"
   Perf-hardened: no CSS animations (using Web Animations API),
   no drop-shadow on mobile, strict containment.
   ═══════════════════════════════════════════════════════ */

.tison-rain-container {
    position: fixed;
    top: -120px;
    z-index: 999998;
    pointer-events: none;
    user-select: none;
    contain: strict;
}

.tison-rain-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(255, 140, 0, 0.5))
            drop-shadow(0 0 20px rgba(255, 80, 0, 0.3));
}

/* ─── MOBILE: zero filters, minimal containment ─── */
.tison-rain-container.tison-mobile img {
    filter: none;
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .tison-rain-container {
        display: none !important;
    }
}
