.ai-button-text {
    position: relative;
    display: inline-flex;
    z-index: 1;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    border-radius: 2em;
    background: transparent;
    font-size: 1em;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    transition: padding 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), margin 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), gap 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), color 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    padding: 0.7em 1.4em;
    margin: 0em 0.4em;
    gap: 0.6em;
    color: #8900d2;
}

.ai-button-text::before {
    content: "";
    position: absolute;
    z-index: -1;
    background: #000000;
    width: 200%;
    height: 200%;
    translate: 0% -100%;
    transform: rotateZ(-15deg);
    transition: 1s translate cubic-bezier(0.2, 0.8, 0.2, 1);
}

.ai-button-text:hover {
    padding: 0.7em 1.6em;
    margin: 0em 0em;
    gap: 1em;
    color: #ffffff;
    background: linear-gradient(90deg, #f3fff3 60%, #e3e9f7 100%);
    text-shadow: 0 0 8px #a600ff88, 0 0 16px #00ffe7cc;
    text-decoration: none;
    box-shadow: 0 0 24px 8px #a600ff44, 0 0 32px 12px #00ffe722;
}

.ai-button-text:hover::before {
    translate: 0% 0%;
}

.ai-button-text svg {
    width: 2em;
    height: 2em;
    fill: currentColor;
    color: inherit;
    transition: color 0.3s, filter 0.3s, transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    filter: drop-shadow(0 2px 8px #a600ff22);
}

.ai-button-text:hover svg {
    color: inherit;
    filter: drop-shadow(0 0 8px #a600ff88) drop-shadow(0 0 16px #00ffe7cc);
    animation: wobble 0.7s cubic-bezier(0.4, 0.8, 0.2, 1);
}

@keyframes wobble {
    0% {
        transform: scale(1) rotateY(180deg) rotateZ(0deg);
    }

    60% {
        transform: scale(1.2) rotateZ(0deg);
    }

    95% {
        transform: scale(0.95) rotateZ(95deg);
    }

    100% {
        transform: scale(1) rotateY(0deg) rotateZ(90deg);
    }
}