/* ============ Wheel style ========== */
:root {
    --wheel-size: 400px;
}

#wheelWrap {
    color: #686868;
    margin: 0 auto;
}

.controls {
    width: 260px;
}

.wheel-wrap {
    width: var(--wheel-size);
    height: var(--wheel-size);
    position: relative;
    display: inline-block;
}

.wheel {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    overflow: visible;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wheel .center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 22%;
    height: 22%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.sector-label {
    position: absolute;
    left: 50%;
    top: 50%;
    transform-origin: center center;
    white-space: nowrap;
    pointer-events: none;
}

.sector-label .text {
    display: inline-block;
    transform-origin: center center;
    font-weight: 600;
    text-align: center;
}

#spin-btn{
    width: 300px;
    margin: 0 auto;
}

@media (max-width: 520px) {
    :root {
        --wheel-size: 300px;
    }
}