.ai-button-explosion {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: transparent;
    border: none;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.ai-button-explosion svg {
    z-index: 1;
    width: 70%;
    height: 70%;
    position: relative;
    fill: currentColor;
    color: black;
}

.ai-button-explosion .aura {
    position: absolute;
    display: none;
    z-index: 2;
    width: 200%;
    height: 200%;
    pointer-events: none;
}

.ai-button-explosion:hover .aura {
    display: block;
}

.ai-button-explosion .label {
    position: absolute;
    z-index: 3;
    pointer-events: none;
    font-size: 1.1em;
    font-weight: 400;
    letter-spacing: 0.02em;
    white-space: nowrap;
    color: black;
    padding: 0.4em 0.8em;
    border-radius: 0.4em;
    opacity: 0;
}

.ai-button-explosion:hover .label {
    opacity: 1;
}