/* مخفی کردن نشانگر پیش‌فرض سیستم فقط در دستگاه‌های دارای ماوس */
@media (hover: hover) and (pointer: fine) {
    * {
        cursor: none !important;
    }
    a, button, input, textarea, [role="button"] {
        cursor: none !important;
    }
}

/* نشانگر نقطه‌ای مرکزی */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: #00e5ff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: opacity 0.15s ease;
}

/* حلقه بیرونی */
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
    /* اختیاری: یک سایه نرم */
    border: 2px solid rgba(0, 229, 255, 0.5);  /* حلقه */
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.15);
}

/* حالت hover روی عناصر تعاملی */
.cursor-outline.hover {
    width: 70px;
    height: 70px;
    border-color: rgba(255, 255, 255, 0.8);
    background-color: rgba(0, 229, 255, 0.1);
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.3);
}

/* وقتی ماوس از پنجره خارج می‌شود، نشانگرها محو شوند */
.cursor-dot.hidden,
.cursor-outline.hidden {
    opacity: 0;
}