.roulette-wheel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
    perspective: 1000px;
}

.roulette-wheel {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        #ff6b6b 0deg 36deg,
        #000 36deg 72deg,
        #ff6b6b 72deg 108deg,
        #000 108deg 144deg,
        #ff6b6b 144deg 180deg,
        #000 180deg 216deg,
        #ff6b6b 216deg 252deg,
        #000 252deg 288deg,
        #ff6b6b 288deg 324deg,
        #000 324deg 360deg
    );
    border: 8px solid #ffd700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6), inset 0 0 20px rgba(0, 0, 0, 0.5);
    position: relative;
    transition: transform 3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.wheel-segment {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 24px;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.wheel-segment span {
    position: absolute;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    border: 2px solid #ffd700;
}

.wheel-center {
    position: absolute;
    width: 30px;
    height: 30px;
    background: #ffd700;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

.wheel-pointer {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 30px solid #ffd700;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.5));
    z-index: 10;
}

.betting-area {
    background: rgba(255, 215, 0, 0.05);
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}
