<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256" viewBox="0 0 256 256" role="img" aria-label="Terminal icon">
<defs>
<linearGradient id="termGrad" x1="0" y1="0" x2="1" y2="1">
<stop offset="0" stop-color="#6EE7FF"/>
<stop offset="0.5" stop-color="#8B5CFF"/>
<stop offset="1" stop-color="#FF6EC7"/>
</linearGradient>
<filter id="termGlow" x="-30%" y="-30%" width="160%" height="160%">
<feGaussianBlur stdDeviation="2.8" result="blur"/>
<feMerge>
<feMergeNode in="blur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
<style>
.frame { fill:#0b1220; stroke:url(#termGrad); stroke-width:10; }
.ui { stroke:url(#termGrad); stroke-width:8; stroke-linecap:round; stroke-linejoin:round; fill:none; }
.dot { fill:url(#termGrad); }
</style>
</defs>
<g filter="url(#termGlow)">
<!-- Terminal window -->
<rect class="frame" x="28" y="40" width="200" height="160" rx="22"/>
<!-- Title bar line -->
<path class="ui" d="M40 78 H216" opacity="0.75"/>
<!-- Window controls -->
<circle class="dot" cx="54" cy="62" r="6"/>
<circle class="dot" cx="74" cy="62" r="6" opacity="0.85"/>
<circle class="dot" cx="94" cy="62" r="6" opacity="0.7"/>
<!-- Prompt chevron -->
<path class="ui" d="M62 112 L84 128 L62 144"/>
<!-- Command line -->
<path class="ui" d="M104 144 H164" opacity="0.9"/>
<!-- Cursor -->
<rect x="168" y="134" width="16" height="20" rx="3" fill="url(#termGrad)" opacity="0.9"/>
</g>
</svg>
|