/*
| Css PersoKdo
*/
.badge-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #f0f0f0;
}

.badge_mc {
    width: 100px;
    height: 100px;
    background: gold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    color: black;
    text-align: center;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.badge_mc::before {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    background: gold;
    top: -20px;
    left: -20px;
    clip-path: polygon(
        50% 0%, 61% 18%, 80% 10%, 90% 25%, 100% 30%, 
        95% 50%, 100% 70%, 90% 75%, 80% 90%, 61% 82%, 
        50% 100%, 39% 82%, 20% 90%, 10% 75%, 0% 70%, 
        5% 50%, 0% 30%, 10% 25%, 20% 10%, 39% 18%
    );
    z-index: -1;
}