.scrdc-wheel {
    position: relative;
    width: min(var(--scrdc-wheel-size), 100%);
    max-width: min(var(--scrdc-wheel-size), 48vw);
    aspect-ratio: 1;
    border-radius: 50%;
    border: 10px solid #fff;
    box-shadow: 0 24px 50px rgba(102, 18, 51, 0.18);
    overflow: hidden;
    background: #fff6fa;
}

.scrdc-wheel__disc,
.scrdc-wheel__labels {
    position: absolute;
    inset: 0;
}

.scrdc-wheel__disc {
    border-radius: 50%;
    will-change: transform;
}

.scrdc-wheel__labels {
    z-index: 1;
}

.scrdc-wheel::after {
    content: "";
    position: absolute;
    inset: 50%;
    width: 84px;
    height: 84px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #fff;
    box-shadow: inset 0 0 0 8px #ffd9e6;
}

.scrdc-wheel-label {
    position: absolute;
    width: 28%;
    transform: translate(-50%, -50%);
    text-align: center;
    line-height: 1.2;
    font-size: clamp(11px, 1vw, 14px);
    font-weight: 700;
    color: #5b1531;
    word-break: break-word;
    overflow-wrap: anywhere;
    pointer-events: none;
}

@media (max-width: 1100px) {
    .scrdc-wheel {
        max-width: min(var(--scrdc-wheel-size), 72vw);
    }
}

@media (max-width: 840px) {
    .scrdc-wheel {
        max-width: min(var(--scrdc-wheel-size), 100%);
    }

    .scrdc-wheel-label {
        width: 30%;
        font-size: 11px;
    }
}
