/* ── Main player circles ── */
.sp-player-wrap {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sp-main-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--bg-input);
    border: 2.5px solid var(--border-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, transform 0.15s;
    overflow: hidden;
    position: relative;
    z-index: 10;
    flex-shrink: 0;
    box-shadow: var(--shadow);
}
.sp-main-circle.sp-p1 { border-color: var(--accent); }
.sp-main-circle.sp-p2 { border-color: var(--accent); }
.sp-main-circle:hover {
    transform: scale(1.05);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

/* ── Satellite container ── */
.sp-satellites {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    pointer-events: none;
    z-index: 20;
}

/* ── Individual satellite ── */
.sp-sat {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-input);
    border: 2px solid var(--border-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text-settings-muted);
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: transform 0.25s cubic-bezier(0.34, 1.4, 0.64, 1),
                opacity 0.2s ease,
                border-color 0.15s;
    pointer-events: none;
    box-shadow: var(--shadow);
    overflow: visible;
}
.sp-sat.sp-open {
    opacity: 1;
    pointer-events: all;
}
.sp-sat img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    inset: 0;
}
.sp-sat:hover {
    border-color: var(--accent);
    background: var(--bg-row-hover);
}

/* ── Delete button ── */
.sp-sat-del {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 18px;
    height: 18px;
    background: #e05252;
    border-radius: 50%;
    border: 2px solid var(--bg-modal);
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    z-index: 10;
}
.sp-sat:hover .sp-sat-del {
    display: flex;
}

/* ── Selected satellite ── */
.sp-sat.sp-sel-p1,
.sp-sat.sp-sel-p2 {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px var(--accent-glow);
}

/* ── Floating add form ── */
.sp-add-form {
    display: none;
    position: absolute;
    background: var(--bg-modal);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    z-index: 200;
    width: 210px;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
}
.sp-add-form.sp-visible {
    display: flex;
}