.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(110, 231, 183, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1.5px solid rgba(167, 243, 208, 0.9);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
    mix-blend-mode: normal;
}
.custom-cursor.grow {
    width: 36px;
    height: 36px;
    background: rgba(52, 211, 153, 0.8);
}

@media (hover: none) and (pointer: coarse) {
    .custom-cursor {
        display: none !important;
    }
    body {
        cursor: auto;
    }
}
@media (max-width: 1024px) {
    .custom-cursor {
        display: none !important;
    }
    body {
        cursor: auto;
    }
}