/* Cursor Particle Effect Styles */

.cursor-particle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.cursor-particle {
    position: absolute;
    font-family: 'Fira Code', 'Space Mono', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    user-select: none;
    white-space: nowrap;
    pointer-events: none;
    color: #00bfff;
    text-shadow: 
        0 0 10px #00bfff,
        0 0 20px rgba(0, 191, 255, 0.6),
        0 0 30px rgba(0, 191, 255, 0.3);
    filter: drop-shadow(0 0 8px rgba(0, 191, 255, 0.5));
    animation: particleFloat 0.5s ease-out;
    transform-origin: center;
}

@keyframes particleFloat {
    0% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    100% {
        opacity: 0.8;
        transform: scale(0.9) rotate(5deg);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cursor-particle {
        font-size: 0.7rem;
    }
}
