.liquidGlass-wrapper {
    position: relative;
    display: flex;
    overflow: hidden;
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2);
}

.liquidGlass-effect {
    position: absolute;
    z-index: 0;
    inset: 0;
    backdrop-filter: blur(3px);
    filter: url(#glass-distortion);
    -webkit-filter: url(#glass-distortion);
    overflow: hidden;
    isolation: isolate;
}

.liquidGlass-tint {
    z-index: 1;
    position: absolute;
    inset: 0;
    background: rgba(239, 232, 136, 0.100);
}

.liquidGlass-shine {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
    box-shadow: inset -2px 2px 2px 0px rgba(255, 255, 255, 0.25),
        inset 2px -2px 2px 0px rgba(255, 255, 255, 0.25);
    transition: .35s;
}

.liquidGlass-text {
    z-index: 3;
    width: 100%;
}

.button.rounded .liquidGlass-text {
    display: flex;
    justify-content: center;
    align-content: center;
}

a:hover .liquidGlass-shine {
    box-shadow: inset -2px 2px 2px 0px rgba(255, 255, 255, 0.5),
    inset 2px -2px 2px 0px rgba(255, 255, 255, 0.5);
}

.button:hover .liquidGlass-shine {
    box-shadow: inset -2px 2px 2px 0px rgba(255, 255, 255, 0.5),
    inset 2px -2px 2px 0px rgba(255, 255, 255, 0.5);
}

.button .liquidGlass-shine::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    top: 0;
    left: -100px;
    opacity: 0.5;
    background-image: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 30%,
        rgba(255, 255, 255, 0.8),
        rgba(255, 255, 255, 0) 70%
    );
    animation: shine 3s ease-in-out infinite;
}

.button.rounded .liquidGlass-shine::before {
    display: none;
}

@keyframes shine {
    0% {
        left: -100px;
        opacity: 0;
    }
    5% {
        opacity: 0.6;
    }
    50% {
        left: 100%;
        opacity: 0.8;
    }
    60% {
        opacity: 0;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}