Kubestronaut — Golden Portable

.star { color: gold; font-size: 20px; } </style> </head> <body> <div style="text-align: center;"> <div class="badge-container"> <svg class="kubestronaut-badge" viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"> <defs> <!-- Gradients --> <linearGradient id="goldGradient" x1="0%" y1="0%" x2="100%" y2="100%"> <stop offset="0%" style="stop-color:#FFD700;stop-opacity:1" /> <stop offset="50%" style="stop-color:#FFA500;stop-opacity:1" /> <stop offset="100%" style="stop-color:#FFD700;stop-opacity:1" /> </linearGradient> <linearGradient id="darkGold" x1="0%" y1="0%" x2="100%" y2="100%"> <stop offset="0%" style="stop-color:#B8860B;stop-opacity:1" /> <stop offset="100%" style="stop-color:#DAA520;stop-opacity:1" /> </linearGradient>

<radialGradient id="centerGlow" cx="50%" cy="50%" r="50%"> <stop offset="0%" style="stop-color:#FFD700;stop-opacity:0.3" /> <stop offset="100%" style="stop-color:#FFA500;stop-opacity:0" /> </radialGradient> kubestronaut golden

<!-- Helm handles --> <g fill="url(#goldGradient)"> <circle cx="100" cy="25" r="5"/> <circle cx="100" cy="175" r="5"/> <circle cx="25" cy="100" r="5"/> <circle cx="175" cy="100" r="5"/> <circle cx="47" cy="47" r="4"/> <circle cx="153" cy="153" r="4"/> <circle cx="47" cy="153" r="4"/> <circle cx="153" cy="47" r="4"/> </g> .star { color: gold

<!-- Stars decoration --> <g fill="#FFD700"> <polygon points="70,70 72,66 74,70 78,70 75,73 76,77 72,75 68,77 69,73 66,70" /> <polygon points="130,70 132,66 134,70 138,70 135,73 136,77 132,75 128,77 129,73 126,70" /> <polygon points="70,130 72,126 74,130 78,130 75,133 76,137 72,135 68,137 69,133 66,130" /> <polygon points="130,130 132,126 134,130 138,130 135,133 136,137 132,135 128,137 129,133 126,130" /> </g> div style="text-align: center

<!-- Outer ring --> <circle cx="100" cy="100" r="92" fill="none" stroke="url(#goldGradient)" stroke-width="6" filter="url(#glow)"/> <circle cx="100" cy="100" r="84" fill="none" stroke="url(#darkGold)" stroke-width="2"/> <!-- Decorative dots on outer ring --> <g fill="#FFD700"> <circle cx="100" cy="12" r="2.5"/> <circle cx="100" cy="188" r="2.5"/> <circle cx="12" cy="100" r="2.5"/> <circle cx="188" cy="100" r="2.5"/> <circle cx="38" cy="38" r="2"/> <circle cx="162" cy="38" r="2"/> <circle cx="38" cy="162" r="2"/> <circle cx="162" cy="162" r="2"/> </g>