#wheelWrap {
    width: 560px;
    height: 560px;
    border-radius: 50%;
    position: relative;
    margin-top: 40px;
}

#wheel {
    position: absolute;
    inset: 0;
    border-radius: 50%;

    /* 🔥 DARK YELLOW BASE UNDER ALL ROWS */
    background-color: #d4a017;   /* dark golden yellow */
    border: 10px solid #fff;

    box-shadow:
        inset 0 0 0 6px rgba(255,255,255,0.2),
        0 20px 45px rgba(0,0,0,0.35);
}

.pointer {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
}
.pointer::after{
    content: "";
    border-left:20px solid transparent;
    border-right:20px solid transparent;
    border-bottom:35px solid #b91c1c;
}

#centerCircle {
    position: absolute;
    width: 180px;
    height: 180px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    border-radius: 50%;
    background: #ffffff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
    font-weight:bold;
    z-index:10;
    box-shadow: inset 0 0 15px rgba(0,0,0,0.25);
}

.wheelItem{
    width:140px;
    height:140px;
    position:absolute;
    text-align:center;
    z-index:20;
}

.wi-img{
    width:80px;
    height:80px;
    object-fit:contain;
    margin:auto;
}

.wi-name{
    font-weight:600;
    margin-top:10px;
    font-size:9px;
}

.winner{
    outline:4px solid gold;
    border-radius:10px;
}
