.hbox-play-style {
    --hps-accent: var(--stk-theme-color, #e85a8b);
    --hps-border: #e6e8ec;
    --hps-muted: #aeb4bd;
    --hps-bg: #f8f9fb;
    margin: 1.2em 0;
    padding: 16px;
    border: 1px solid var(--hps-border);
    border-radius: 10px;
    background: var(--hps-bg);
    box-sizing: border-box;
}

.hbox-play-style__title {
    margin-bottom: 14px;
    font-size: 1.05em;
    font-weight: 700;
    line-height: 1.4;
}

.hbox-play-style__axes {
    display: grid;
    gap: 14px;
}

.hbox-play-style__axis-title {
    margin-bottom: 4px;
    font-size: .92em;
    font-weight: 700;
}

.hbox-play-style__labels {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 7px;
    color: #555d66;
    font-size: .78em;
    line-height: 1.3;
}

.hbox-play-style__scale {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    min-height: 18px;
}

.hbox-play-style__scale::before {
    content: '';
    position: absolute;
    left: 8%;
    right: 8%;
    top: 50%;
    height: 2px;
    background: #d7dbe1;
    transform: translateY(-50%);
}

.hbox-play-style__dot {
    position: relative;
    z-index: 1;
    justify-self: center;
    width: 10px;
    height: 10px;
    border: 2px solid var(--hps-muted);
    border-radius: 50%;
    background: #fff;
    box-sizing: border-box;
}

.hbox-play-style__dot.is-active {
    width: 16px;
    height: 16px;
    border-color: var(--hps-accent);
    background: var(--hps-accent);
    box-shadow: 0 0 0 3px rgba(232, 90, 139, .15);
}

.hbox-play-style__note {
    margin: 12px 0 0;
    color: #737b86;
    font-size: .75em;
    line-height: 1.5;
}

@media (max-width: 480px) {
    .hbox-play-style {
        padding: 14px;
        border-radius: 8px;
    }

    .hbox-play-style__axes {
        gap: 12px;
    }

    .hbox-play-style__labels {
        font-size: .74em;
    }
}
