/* units_vfx.css - Specialized Visual Effects for Units (Drag Ghosts, Aura Effects, etc.) */

/* [User Request] Drag Follow Visual */
.drag-ghost {
    pointer-events: none !important;
    z-index: 9999 !important;
    position: fixed !important;
    font-size: 32px;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.6)) brightness(1.2);
    animation: ghostFloat 0.8s infinite alternate ease-in-out;
}

@keyframes ghostFloat {
    from { transform: translate(-50%, -50%) scale(1.2); }
    to { transform: translate(-50%, -55%) scale(1.3); }
}
