.theme-button-wrap {
    display: inline-flex;
    background-color: #3C0145;
    border-radius: 63px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.theme-button-wrap:hover {
    transform: translateY(-2px);
}

.btn-link-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 4px 4px 4px 32px;
    text-decoration: none;
    color: #fff;
    z-index: 2;
}

.btn-text-wrap {
    position: relative;
    height: 24px;
    overflow: hidden;
}

.btn-text-box {
    transition: transform 0.3s ease;
    font-family: sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    white-space: nowrap;
}

.btn-link-wrap:hover .btn-text-box {
    transform: translateY(-100%);
}

.arrow-wrap {
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.arrow-wrap img {
    width: 20px;
    height: 20px;
    filter: brightness(0);
}

.btn-link-wrap:hover .arrow-wrap {
    /* transform: rotate(-45deg); */
}