pusk {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background-color: #1a8f18;
    height: 100px;
    width: 150px;
    border-radius: 100%;
    transform: translateX(-10px);
    overflow: hidden;
    cursor: pointer;
    transition: filter 0.05s ease;
}

pusk::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 50%, #00000063 90%),
                radial-gradient(circle, transparent 80%, #00000063 90%);
    pointer-events: none;
    z-index: 1;
}

pusk::after {
    content: "";
    position: absolute;
    width: 100%;
    height: var(--panel-height);
    background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent 6px),
                linear-gradient(to top, rgba(0,0,0,0.5), transparent 6px);
    pointer-events: none;
    z-index: 1;
}

pusk img {
    object-fit: contain;
    height: 20px;
    z-index: 2;
    filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.3));
}

pusk i {
    font-weight: bold;
    color: #fff;
    font-size: 14px;
    text-shadow: 2px 2px 2px #0006;
    z-index: 2;
}

pusk:hover::before {
    background: radial-gradient(circle, transparent 40%, #00000063 90%),
                radial-gradient(circle, transparent 70%, #00000063 90%);
}

pusk:hover::after {
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent 6px),
                linear-gradient(to top, rgba(0,0,0,0.4), transparent 6px);
}

pusk:active {
    filter: brightness(1.1);
}

pusk:focus {
    outline: 2px solid #86ff84;
    outline-offset: -2px;
    box-shadow: inset 0 0 25px 0 #4fd84d;
}
