/**
 * Arrow Button Block Styles
 */

.arrow-button {
    margin: 20px 0;
}

.arrow-button-link {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    font-size: 18px;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.button-text,
.button-arrow {
    background-clip: text;
    -webkit-background-clip: text;
    color: #ffffff;
    transition: transform 0.3s ease, background 0.3s ease, -webkit-text-fill-color 0.3s ease, color 0.3s ease;
}

.arrow-button-link:hover .button-text,
.arrow-button-link:hover .button-arrow {
    background: linear-gradient(90deg, #EF25C7, #9D01FB, #EF25C7);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 3s ease infinite;
    transform: translateY(-2px);
}

.arrow-button-link:focus, .arrow-button-link:active{
    color: white;
    background-color: transparent;
}

.button-text {
    margin-right: 10px;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.button-arrow {
    font-size: 1.2em;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.arrow-button-link:hover .button-arrow {
    transform: translateX(5px) translateY(-2px);
}
