body {
    background: #111;
    color: #fff;
    font-family: Arial, sans-serif;
    margin: 0;
}
.container {
    display: flex;
    gap: 40px;
    padding: 40px;
    justify-content: center;
}
.left {
    width: 400px;
    height: 400px;
    position: relative;
}
.right {
    max-width: 400px;
}
.saldo {
    font-size: 18px;
    margin-bottom: 10px;
}
.btn {
    padding: 10px 20px;
    background: orange;
    color: black;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}
.angka-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}
.angka-btn {
    width: 70px;
    height: 60px;
    font-size: 14px;
    font-weight: bold;
    background: #333;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}
.angka-btn.clicked {
    background: limegreen;
    color: black;
}
.result {
    margin-top: 20px;
    font-size: 16px;
    color: rgb(255, 0, 0);
}
.pointer {
    position: absolute;
    top: -30px;
    left: 60%;
    transform: translateX(-50%);
    font-size: 30px;
    color: yellow;
}
.wheel {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 8px solid white;
    background: conic-gradient(
        red 0% 5%, blue 5% 10%, green 10% 15%, yellow 15% 20%,
        orange 20% 25%, purple 25% 30%, cyan 30% 35%, pink 35% 40%,
        teal 40% 45%, lime 45% 50%, salmon 50% 55%, navy 55% 60%,
        brown 60% 65%, gold 65% 70%, indigo 70% 75%, khaki 75% 80%,
        tomato 80% 85%, silver 85% 90%, violet 90% 95%, coral 95% 100%
    );
    position: relative;
    transition: transform 10s cubic-bezier(0.05, 0.1, 0.05, 1);
}
.number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: center;
    transform: rotate(calc((var(--i) + 0.5) * 360deg / var(--segments))) translate(-50%, -180px);
    font-size: 14px;
    font-weight: bold;
    color: white;
    text-shadow: 1px 1px 2px black;
}

.total-taruhan {
    font-size: 16px;
    margin-bottom: 10px;
    color: lightgreen;
}

.histtori{
    font-size: 20px;
    background-color: darkgoldenrod;
}