/* ═══════════════════════════════════════════════════════
   🔢 EFFECT 67 — Google-style Page Wiggle Easter Egg
   Triggered once per day for Zenjin_pseudosc posts.
   Perf-hardened: all animations via Web Animations API,
   CSS only defines static styles.
   ═══════════════════════════════════════════════════════ */

/* Floating "67" numbers — static styles only */
.effect67-number {
    position: fixed;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.12);
    pointer-events: none;
    z-index: 999999;
    user-select: none;
    contain: strict;
    will-change: transform, opacity;
}

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