.fortune-widget {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.fortune-widget select {
    width: 33.33% !important;
    font-size: 16px;
    text-align: center;
    border: 1px solid #EAEAEA
}

.select-block {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fortune-widget_desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 2%;
    color: #000;
    text-align: left;
    margin: 0 0 20px;
}

.fortune-button {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    margin: 20px 0;
    cursor: pointer;
    font-weight: bold;
}

.fortune-button:hover {
    color: #fff;
}

.dice-result {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.dice {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #fff;
    border: 2px solid #00000080;
    color: #000;
    border-radius: 8px;
    font-size: 18px;
    line-height: 40px;
    font-weight: bold;
}

.dice.win {
    border: 2px solid #2CD33780;
    color: #34C200;
}

.fortune-message {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    background: transparent;
    margin: 20px 0 0 !important;
    border-radius: 3px;
    padding: 7px 0;
}

.fortune-message.lose {
    background: #F5F5F5;
    color: #983C3C;
}

.fortune-message.win {
    background: #F5F5F5;
    color: #34C200;
}

.dice.rolling {
    animation: roll 1s ease-in-out;
    background: #e0e0e0;
    color: transparent;
}

@keyframes roll {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(180deg);
    }

    50% {
        transform: rotate(360deg);
    }

    75% {
        transform: rotate(540deg);
    }

    100% {
        transform: rotate(720deg);
    }
}