body {
    display: flex;
    justify-content: center;
    align-items: center;
}
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    width: 80%;
    background-color: rgba(170, 217, 248, 0.7);
    border-radius: 15px;
    padding: 20px 20px;
    box-shadow: 5px 5px rgba(169, 183, 186, 0.855);
    gap: 10px;
}
#rule {
    font-size: small;
    border-bottom: 1px solid rgba(87, 91, 92, 0.855);
}
#wallet {
    box-sizing: content-box;
    padding: 5px 10px;
    border-radius: 20px;
    background-color: rgb(172, 238, 255);
    border: 2px solid #ffffff;
}
#bet_option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
input {
    border: 0px;
}
button {
    border-radius: 20px;
    border: 2px solid #ffffff;
    background-color: rgb(172, 238, 255);
    font-size: larger;
    padding: 5px 10px;
    cursor: pointer;
}
button:hover {
    background-color: rgba(120, 200, 220, 0.9);
}
.number {
    position: absolute;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    background: white;
    color: black;
    font-size: 14px;
    font-weight: bold;
    transform: rotate(calc(var(--i) * 10deg)) translate(0, -130px) rotate(calc(var(--i) * -10deg));
}
#wheel_all {
    position: relative;
    width: 30%;
}
#wheel {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 3s ease-out;
    border: 5px solid white;
    background: radial-gradient(circle, #91c4ee, #a8dbf5);
}
.pointer {
    position: absolute;
    top: 380px;
    left: 50%;
    width: 10px;
    height: 30px;
    background: red;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    transform: translateX(-50%);
}