/* Custom Trailing Cursor */
body.custom-cursor-active { cursor: none; }
body.custom-cursor-active a, 
body.custom-cursor-active button, 
body.custom-cursor-active .bento-item, 
body.custom-cursor-active .faq-header { cursor: none; }

.custom-cursor-dot {
    position: fixed;
    top: 0; left: 0;
    width: 6px; height: 6px;
    background: var(--gradient-primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s;
}

.custom-cursor-ring {
    position: fixed;
    top: 0; left: 0;
    width: 40px; height: 40px;
    border: 1.5px solid rgba(0, 179, 134, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s, border-color 0.3s;
}

.custom-cursor-ring.hovering {
    width: 60px; height: 60px;
    background: rgba(0, 179, 134, 0.1);
    border-color: rgba(0, 179, 134, 0.8);
}\n

