body{
    margin: 0;
    padding: 50px;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #ffbf48 25%, #cd841d 100%);
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, #cd841d 50%, #ffbf48 100%);
    border-radius: 50%;
    z-index: -1;
}

.stick {
    position: relative;
    width: 300px;
    height: 300px;
}

.shape {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 160px;
    background-color: transparent;
}

.shape::before{
    content: '★';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 225px;
    color: transparent;
    -webkit-text-stroke: 12px #8b4513;
    -webkit-text-stroke-linejoin: round;
    -webkit-text-stroke-linecap: round;
}

.handle{
    position: absolute;
    bottom: -10px; 
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 145px;
    background-color: #8b4513;
    border-radius: 7px;
}