body {
    cursor: none;
}

a,
button,
.elementor-button,
[role="button"],
input[type="submit"] {
    cursor: none;
}

.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 34px;
    height: 34px;
    background: rgba(204, 213, 24, 0.35);
    border: 1px solid rgba(204, 213, 24, 0.75);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 999999;
    transition:
        width 0.2s ease,
        height 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.custom-cursor.is-hovering {
    width: 64px;
    height: 64px;
    background: rgba(204, 213, 24, 0.18);
    border-color: rgba(204, 213, 24, 0.9);
}

@media (max-width: 1024px) {
    body,
    a,
    button,
    .elementor-button,
    [role="button"],
    input[type="submit"] {
        cursor: auto;
    }

    .custom-cursor {
        display: none;
    }
}