﻿/*
Theme Name:     modown Child
Theme URI:      https://www.jieyoupu.com/
Description:    modown 主题的子主题
Author:         江南老桃
Author URI:     https://www.jieyoupu.com/
Template:       modown
Version:        1.0.0
Text Domain:    modown-laotao
*/

/* ========================
   自定义鼠标特效样式
   ======================== */
.mouse-particle {
    position: fixed;
    pointer-events: none;
    width: 8px;
    height: 8px;
    background: currentColor;
    border-radius: 50%;
    animation: particleFlow 0.8s ease-out forwards;
    z-index: 9999;
    mix-blend-mode: screen;
}

@keyframes particleFlow {
    0% { opacity: 1; transform: scale(1) translate(0, 0); }
    100% { opacity: 0; transform: scale(2.5) translate(15px, 15px); }
}

@media (hover: none) {
    .mouse-particle { display: none !important; }
}