/**
 * RA0 Edition - Mouse Effect Widget Styles
 * 마우스 효과 위젯 스타일
 */

/* 마우스 효과 컨테이너 */
.mouse-effect-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* 컨테이너는 클릭 방지 */
    z-index: 9999;
    overflow: hidden;
}

/* 마우스 이벤트는 받되 클릭은 통과시키기 */
.mouse-effect-container * {
    pointer-events: none !important;
}

/* 파티클 공통 스타일 */
.mouse-particle {
    position: absolute;
    pointer-events: none;
    user-select: none;
}

/* 호버 글로우 */
.mouse-glow {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    mix-blend-mode: screen;
    transition: opacity 0.2s ease;
}

/* 클릭 리플 */
.mouse-ripple {
    position: absolute;
    border-radius: 50%;
    border: 2px solid currentColor;
    pointer-events: none;
    animation: ripple-expand 0.6s ease-out forwards;
}

@keyframes ripple-expand {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* 웨이브 효과 */
.mouse-wave {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.3;
    animation: wave-expand 1s ease-out forwards;
}

@keyframes wave-expand {
    0% {
        transform: scale(0);
        opacity: 0.5;
    }
    100% {
        transform: scale(3);
        opacity: 0;
    }
}

/* 폭죽 효과 */
.firework-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    pointer-events: none;
}

/* 페이드 아웃 애니메이션 */
@keyframes fade-out {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* 트레일 리본 효과 */
.trail-ribbon {
    position: absolute;
    height: 3px;
    border-radius: 3px;
    pointer-events: none;
    opacity: 0.6;
}

/* 성능 모니터 (개발용) */
.fps-monitor {
    position: fixed;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #00ff00;
    padding: 5px 10px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 12px;
    z-index: 10000;
    pointer-events: none;
    display: none; /* 기본적으로 숨김 */
}
