/* ========== cursor.css - تم آبی-بنفش ========== */
*,
*::before,
*::after {
    cursor: none !important;
}

.custom-cursor {
    position: fixed;
    width: 32px;
    height: 32px;
    border: 2px solid #3b82f6;
    border-radius: 50%;
    background-color: rgba(59, 130, 246, 0.15);
    backdrop-filter: blur(2px);
    pointer-events: none;
    z-index: 999999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.5);
    will-change: left, top;
}

.custom-cursor.click {
    width: 28px;
    height: 28px;
    background-color: rgba(59, 130, 246, 0.3);
}

@media (max-width: 600px) {
    .custom-cursor {
        width: 28px;
        height: 28px;
    }
    .custom-cursor.click {
        width: 24px;
        height: 24px;
    }
}