| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="utf-8"> |
| <meta name="viewport" content="width=1080, initial-scale=1"> |
| <title>UI Render</title> |
| <style> |
| body { margin: 0; padding: 0; background: transparent; } |
| #render-target { |
| width: 1080px; |
| height: 2400px; |
| position: relative; |
| overflow: hidden; |
| background: #111111; |
| font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; |
| color: #ffffff; |
| } |
| |
| |
| .topbar { |
| position: relative; |
| height: 150px; |
| background: #1d1d1d; |
| display: flex; |
| align-items: center; |
| padding: 0 28px; |
| gap: 30px; |
| } |
| .icon-btn { |
| width: 56px; |
| height: 56px; |
| display: inline-flex; |
| align-items: center; |
| justify-content: center; |
| color: #e6e6e6; |
| opacity: 0.9; |
| } |
| .icon-btn svg { width: 42px; height: 42px; stroke: #e6e6e6; } |
| .spacer { margin-left: auto; } |
| |
| .next-wrap { |
| width: 66px; height: 66px; |
| background: #f2f2f2; |
| border-radius: 33px; |
| display: flex; align-items: center; justify-content: center; |
| margin-right: 8px; |
| } |
| .next-wrap svg { width: 34px; height: 34px; stroke: #111; } |
| |
| |
| .canvas-area { |
| height: 1550px; |
| background: #111111; |
| position: relative; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| } |
| |
| |
| .artboard { |
| width: 920px; |
| height: 920px; |
| background: #E0E0E0; |
| border: 1px solid #BDBDBD; |
| border-radius: 50%; |
| position: relative; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| color: #757575; |
| text-transform: none; |
| font-size: 24px; |
| box-shadow: |
| 0 0 0 0 rgba(0,0,0,0); |
| } |
| |
| |
| .glitter-ring { |
| position: absolute; |
| inset: -50px; |
| border-radius: 50%; |
| pointer-events: none; |
| background: |
| radial-gradient(closest-side, rgba(0,0,0,0) 78%, rgba(0,0,0,0.15) 80%, rgba(0,0,0,0) 81%), |
| radial-gradient(circle, rgba(212,175,55,0.30) 78%, rgba(212,175,55,0.08) 82%, rgba(212,175,55,0) 86%); |
| |
| mask-image: radial-gradient(circle at center, rgba(0,0,0,1) 72%, rgba(0,0,0,0) 88%); |
| } |
| |
| |
| .triangle-svg { |
| position: absolute; |
| width: 720px; |
| height: 720px; |
| } |
| .triangle-svg path { |
| fill: none; |
| stroke: #ff4d58; |
| stroke-width: 20; |
| stroke-linecap: round; |
| stroke-linejoin: round; |
| filter: drop-shadow(0 0 6px rgba(255, 80, 90, 0.8)); |
| } |
| |
| |
| .toolbar { |
| height: 220px; |
| background: #1d1d1d; |
| display: flex; |
| align-items: center; |
| justify-content: space-around; |
| padding: 0 18px; |
| } |
| .tool { |
| width: 150px; |
| height: 160px; |
| display: flex; |
| flex-direction: column; |
| align-items: center; |
| justify-content: flex-start; |
| color: #ffffff; |
| gap: 16px; |
| font-size: 26px; |
| } |
| .tool svg { |
| width: 64px; height: 64px; stroke: #ffffff; fill: none; stroke-width: 2.6; |
| } |
| .tool .label { font-size: 26px; color: #eaeaea; } |
| |
| |
| .ad-area { |
| height: 160px; |
| background: #111; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| position: relative; |
| } |
| .ad-placeholder { |
| width: 940px; |
| height: 120px; |
| background: #E0E0E0; |
| border: 1px solid #BDBDBD; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| color: #757575; |
| font-size: 28px; |
| } |
| .info-dot { |
| position: absolute; |
| left: 18px; |
| bottom: 20px; |
| width: 28px; height: 28px; |
| border-radius: 14px; |
| background: #2b2b2b; |
| border: 1px solid #444; |
| display: flex; align-items: center; justify-content: center; |
| color: #d9d9d9; font-weight: 600; |
| font-size: 18px; |
| } |
| |
| |
| .home-indicator { |
| position: absolute; |
| left: 50%; |
| bottom: 26px; |
| transform: translateX(-50%); |
| width: 390px; |
| height: 8px; |
| background: #ffffff; |
| border-radius: 4px; |
| opacity: 0.85; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="topbar"> |
| |
| <div class="icon-btn" aria-label="Back"> |
| <svg viewBox="0 0 48 48"> |
| <path d="M30 8 L14 24 L30 40" stroke-width="3" fill="none"/> |
| </svg> |
| </div> |
|
|
| |
| <div class="icon-btn" aria-label="Undo"> |
| <svg viewBox="0 0 48 48"> |
| <path d="M18 18 L10 24 L18 30" stroke-width="3" fill="none"/> |
| <path d="M10 24 C14 14, 30 14, 36 24 C42 34, 30 38, 24 36" stroke-width="3" fill="none"/> |
| </svg> |
| </div> |
|
|
| |
| <div class="icon-btn" aria-label="Redo" style="opacity:0.35;"> |
| <svg viewBox="0 0 48 48"> |
| <path d="M30 18 L38 24 L30 30" stroke-width="3" fill="none"/> |
| <path d="M38 24 C34 14, 18 14, 12 24 C6 34, 18 38, 24 36" stroke-width="3" fill="none"/> |
| </svg> |
| </div> |
|
|
| |
| <div class="icon-btn" aria-label="Download"> |
| <svg viewBox="0 0 48 48"> |
| <path d="M24 10 L24 28" stroke-width="3" fill="none"/> |
| <path d="M16 20 L24 28 L32 20" stroke-width="3" fill="none"/> |
| <path d="M10 36 H38" stroke-width="3" fill="none"/> |
| </svg> |
| </div> |
|
|
| |
| <div class="spacer"></div> |
|
|
| |
| <div class="next-wrap" aria-label="Next"> |
| <svg viewBox="0 0 48 48"> |
| <path d="M16 12 L32 24 L16 36" stroke-width="3" fill="none"/> |
| </svg> |
| </div> |
| </div> |
|
|
| |
| <div class="canvas-area"> |
| <div class="artboard"> |
| [IMG: Glitter Circle Artwork] |
| <div class="glitter-ring"></div> |
|
|
| |
| <svg class="triangle-svg" viewBox="0 0 720 720"> |
| <path d="M360 140 L280 600 L620 600 Z" /> |
| </svg> |
| </div> |
| </div> |
|
|
| |
| <div class="toolbar"> |
| <div class="tool"> |
| <svg viewBox="0 0 64 64" aria-hidden="true"> |
| <rect x="8" y="12" width="48" height="36" rx="4"></rect> |
| <path d="M12 42 L26 28 L36 38 L52 22" stroke-linecap="round"></path> |
| </svg> |
| <div class="label">Add Photo</div> |
| </div> |
|
|
| <div class="tool"> |
| <svg viewBox="0 0 64 64" aria-hidden="true"> |
| <path d="M14 44 L30 16 L44 24 L28 52 Z" fill="none"></path> |
| <path d="M48 48 L56 56" stroke-linecap="round"></path> |
| </svg> |
| <div class="label">Remove</div> |
| </div> |
|
|
| <div class="tool"> |
| <svg viewBox="0 0 64 64" aria-hidden="true"> |
| <path d="M20 28 L12 32 L20 36" stroke-linecap="round"></path> |
| <path d="M12 32 C16 20, 40 20, 48 32 C56 44, 38 48, 30 46" stroke-linecap="round"></path> |
| </svg> |
| <div class="label">Replay</div> |
| </div> |
|
|
| <div class="tool"> |
| <svg viewBox="0 0 64 64" aria-hidden="true"> |
| <rect x="10" y="12" width="44" height="28" rx="3"></rect> |
| <path d="M10 48 H54" stroke-linecap="round"></path> |
| <path d="M16 32 L26 22 L34 30 L44 18" stroke-linecap="round"></path> |
| </svg> |
| <div class="label">Fit</div> |
| </div> |
|
|
| <div class="tool"> |
| <svg viewBox="0 0 64 64" aria-hidden="true"> |
| <path d="M20 44 Q28 30 24 20" stroke-linecap="round"></path> |
| <path d="M34 18 L44 14 L40 24" stroke-linecap="round"></path> |
| </svg> |
| <div class="label">Brushes</div> |
| </div> |
|
|
| <div class="tool"> |
| <svg viewBox="0 0 64 64" aria-hidden="true"> |
| <rect x="12" y="12" width="40" height="30" rx="4"></rect> |
| <rect x="10" y="46" width="44" height="6" rx="3"></rect> |
| </svg> |
| <div class="label">Border</div> |
| </div> |
| </div> |
|
|
| |
| <div class="ad-area"> |
| <div class="ad-placeholder">[IMG: Ad - Profit from Crypto]</div> |
| <div class="info-dot">i</div> |
| </div> |
|
|
| |
| <div class="home-indicator"></div> |
|
|
| </div> |
| </body> |
| </html> |