<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200" width="200" height="200">
<defs>
<!-- Gradient for the table -->
<linearGradient id="tableGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#dc2626;stop-opacity:1" />
<stop offset="100%" style="stop-color:#991b1b;stop-opacity:1" />
</linearGradient>
<!-- Person gradient -->
<linearGradient id="personGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#fecaca;stop-opacity:1" />
<stop offset="100%" style="stop-color:#f87171;stop-opacity:1" />
</linearGradient>
<!-- Shadow -->
<filter id="shadow" x="-10%" y="-10%" width="120%" height="120%">
<feDropShadow dx="2" dy="3" stdDeviation="2" flood-color="#000" flood-opacity="0.3"/>
</filter>
<!-- Glow -->
<filter id="glow" x="-20%" y="-20%" width="140%" height="140%">
<feGaussianBlur stdDeviation="2" result="coloredBlur"/>
<feMerge>
<feMergeNode in="coloredBlur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<!-- Background circle -->
<circle cx="100" cy="100" r="95" fill="#1a1a2e" stroke="#2d2d44" stroke-width="2"/>
<!-- Round table -->
<ellipse cx="100" cy="115" rx="55" ry="25" fill="url(#tableGradient)" filter="url(#shadow)" stroke="#b91c1c" stroke-width="2"/>
<!-- Table surface highlight -->
<ellipse cx="100" cy="112" rx="45" ry="18" fill="none" stroke="rgba(255,255,255,0.2)" stroke-width="1"/>
<!-- Person 1 - Top -->
<g filter="url(#shadow)">
<circle cx="100" cy="55" r="12" fill="url(#personGradient)" stroke="#dc2626" stroke-width="1.5"/>
<ellipse cx="100" cy="78" rx="10" ry="7" fill="url(#personGradient)" stroke="#dc2626" stroke-width="1.5"/>
</g>
<!-- Person 2 - Left -->
<g filter="url(#shadow)">
<circle cx="45" cy="95" r="12" fill="url(#personGradient)" stroke="#dc2626" stroke-width="1.5"/>
<ellipse cx="45" cy="118" rx="10" ry="7" fill="url(#personGradient)" stroke="#dc2626" stroke-width="1.5"/>
</g>
<!-- Person 3 - Right -->
<g filter="url(#shadow)">
<circle cx="155" cy="95" r="12" fill="url(#personGradient)" stroke="#dc2626" stroke-width="1.5"/>
<ellipse cx="155" cy="118" rx="10" ry="7" fill="url(#personGradient)" stroke="#dc2626" stroke-width="1.5"/>
</g>
<!-- Person 4 - Bottom Left -->
<g filter="url(#shadow)">
<circle cx="60" cy="145" r="12" fill="url(#personGradient)" stroke="#dc2626" stroke-width="1.5"/>
<ellipse cx="60" cy="168" rx="10" ry="7" fill="url(#personGradient)" stroke="#dc2626" stroke-width="1.5"/>
</g>
<!-- Person 5 - Bottom Right -->
<g filter="url(#shadow)">
<circle cx="140" cy="145" r="12" fill="url(#personGradient)" stroke="#dc2626" stroke-width="1.5"/>
<ellipse cx="140" cy="168" rx="10" ry="7" fill="url(#personGradient)" stroke="#dc2626" stroke-width="1.5"/>
</g>
<!-- Connection lines (collaboration) -->
<g stroke="#ef4444" stroke-width="1.5" opacity="0.6" stroke-dasharray="3,2">
<line x1="100" y1="78" x2="100" y2="90"/>
<line x1="55" y1="118" x2="70" y2="110"/>
<line x1="145" y1="118" x2="130" y2="110"/>
<line x1="70" y1="145" x2="80" y2="130"/>
<line x1="130" y1="145" x2="120" y2="130"/>
</g>
<!-- Center glow point (shared focus) -->
<circle cx="100" cy="115" r="8" fill="#fff" opacity="0.3" filter="url(#glow)"/>
<circle cx="100" cy="115" r="4" fill="#fff" opacity="0.6"/>
<!-- "MCP" text at bottom -->
<text x="100" y="192"
font-family="Arial, sans-serif"
font-size="12"
font-weight="bold"
fill="#e5e5e5"
text-anchor="middle"
letter-spacing="3">MCP</text>
</svg>