/* Custom Cursor */
.custom-cursor {
    position: fixed;
    width: 15px;
    height: 15px;
    border: 2px solid #DC2626; /* Static color */
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, border-color 0.2s ease;
    display: none;
}

.cursor-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3px;
    height: 3px;
    background-color: #DC2626; /* Static color */
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: background-color 0.2s ease;
}

.cursor-trail {
    position: fixed;
    width: 10px;
    height: 10px;
    background: rgba(220, 38, 38, 0.3);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: all 0.1s ease;
    display: none;
}

/* Hide default cursor on all elements when custom cursor is active */
body.custom-cursor-active * {
    cursor: none !important;
}

/* Animations */
.cursor-click { animation: clickPulse 0.3s ease-out; }
@keyframes clickPulse {
    0% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.5); }
    100% { transform: translate(-50%, -50%) scale(1); }
}

.cursor-breathing { animation: breathe 2s infinite ease-in-out; }
@keyframes breathe {
    0% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
    100% { transform: translate(-50%, -50%) scale(1); }
}

.cursor-pop-delete { animation: popDelete 0.5s forwards; }
@keyframes popDelete {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
}