/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 31 2026 | 02:11:20 */
/* =========================================================
   AR CRAFTIX - GLOBAL HEADER + HERO MOUSE LIGHT
   Normal cursor + soft glow, no clipping
========================================================= */

#arc-mouse-light{
    position:fixed !important;

    /* Circle size */
    width:220px !important;
    height:220px !important;

    left:0;
    top:0;

    border-radius:50%;

    background:radial-gradient(
        circle,
        rgba(35,78,180,.19) 0%,
        rgba(31,65,150,.12) 24%,
        rgba(25,50,115,.065) 43%,
        rgba(18,35,80,.025) 58%,
        rgba(10,20,45,.008) 68%,
        transparent 78%
    ) !important;

    transform:translate(-50%, -50%);

    /* No visible outer circle */
    border:none !important;
    outline:none !important;
    box-shadow:none !important;

    filter:blur(8px);

    pointer-events:none !important;

    opacity:0;

    /*
     * High enough to remain visible over
     * navbar/header backgrounds.
     */
    z-index:99999 !important;

    transition:opacity .25s ease;

    will-change:left, top;

    /* Makes glow feel like light rather than a layer */
    mix-blend-mode:screen;
}


/* Visible */
#arc-mouse-light.arc-light-visible{
    opacity:1;
}


/* Normal cursor stays */
body.home,
body.home .top-header,
body.home #navbar,
body.home aside#fitness_hub_about-1{
    cursor:auto !important;
}


/* Mobile / touch off */
@media (max-width:767px), (pointer:coarse){

    #arc-mouse-light{
        display:none !important;
    }
}