@import "https://fonts.googleapis.com/css2?family=SF+Pro+Display:wght@400;500;600;700&family=SF+Pro+Text:wght@400;500;600&family=JetBrains+Mono:wght@400;500&display=swap";:root{--bg:#fbfbfd;--surface:#fff;--border:#0000001a;--border-active:#0003;--text:#1d1d1f;--text-secondary:#86868b;--text-tertiary:#a1a1a6;--accent:#0071e3;--accent-hover:#0077ed;--accent-light:#0071e31a;--green:#34c759;--shadow-sm:0 1px 3px #0000000d;--shadow-md:0 4px 12px #00000014;--radius-sm:8px;--radius-md:12px;--radius-lg:16px;--font-display:"SF Pro Display", -apple-system, BlinkMacSystemFont, sans-serif;--font-text:"SF Pro Text", -apple-system, BlinkMacSystemFont, sans-serif;--font-mono:"JetBrains Mono", "SF Mono", Menlo, monospace}[data-theme=mocha]{--bg:#000;--surface:#1d1d1f;--border:#ffffff26;--border-active:#ffffff40;--text:#f5f5f7;--text-secondary:#98989d;--text-tertiary:#6e6e73;--accent:#2997ff;--accent-hover:#409cff;--accent-light:#2997ff26;--shadow-sm:0 1px 3px #0000004d;--shadow-md:0 4px 12px #0006}*,:before,:after{box-sizing:border-box;margin:0;padding:0}html{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:16px}body{font-family:var(--font-text);background:var(--bg);color:var(--text);min-height:100vh;line-height:1.5;transition:background-color .3s,color .3s}#app{background:var(--bg);min-height:100vh}.app-container{max-width:800px;min-height:100vh;margin:0 auto;padding:3rem 2rem 4rem}.app-header{justify-content:space-between;align-items:center;margin-bottom:2.5rem;display:flex}.logo{align-items:center;gap:.75rem;display:flex}.logo-icon{background:var(--accent);border-radius:var(--radius-sm);justify-content:center;align-items:center;width:36px;height:36px;display:flex}.logo-icon svg{fill:#fff;width:20px;height:20px}.app-header h1{font-family:var(--font-display);letter-spacing:-.02em;font-size:1.5rem;font-weight:600}.theme-toggle{width:36px;height:36px;color:var(--text-secondary);cursor:pointer;background:0 0;border:none;border-radius:50%;justify-content:center;align-items:center;transition:background .2s;display:flex}.theme-toggle:hover{background:var(--accent-light)}.theme-toggle svg{transition:transform .3s}.theme-toggle:hover svg{transform:rotate(15deg)}.tab-nav{flex-wrap:wrap;gap:.5rem;margin-bottom:2rem;display:flex}.tab-btn{font-family:var(--font-text);color:var(--text-secondary);background:var(--surface);border:1px solid var(--border);border-radius:var(--radius-sm);cursor:pointer;align-items:center;gap:.5rem;padding:.625rem 1rem;font-size:.875rem;font-weight:500;transition:all .2s;display:flex}.tab-btn svg{opacity:.7;width:16px;height:16px}.tab-btn:hover{color:var(--text);border-color:var(--border-active)}.tab-btn.active{color:var(--accent);background:var(--accent-light);border-color:var(--accent)}.tab-btn.active svg{opacity:1}.app-main{flex-direction:column;gap:1.5rem;display:flex}.form-section{background:var(--surface);border-radius:var(--radius-lg);border:1px solid var(--border);box-shadow:var(--shadow-sm);padding:1.75rem}.form-header{border-bottom:1px solid var(--border);align-items:center;gap:.75rem;margin-bottom:1.5rem;padding-bottom:1rem;display:flex}.form-header svg{color:var(--accent)}.form-header h2{font-family:var(--font-display);font-size:1.25rem;font-weight:600}.form-header p{color:var(--text-secondary);margin-top:.125rem;font-size:.875rem}.form-header .title-group{flex:1}.form-fields{grid-template-columns:repeat(auto-fill,minmax(200px,1fr));gap:1rem;display:grid}.field{flex-direction:column;gap:.375rem;display:flex}.field.checkbox-field{grid-column:1/-1}.field label{color:var(--text-secondary);text-transform:uppercase;letter-spacing:.04em;font-size:.75rem;font-weight:600}.field input[type=text],.field input[type=password],.field input[type=number],.field select,.field textarea{font-family:var(--font-text);background:var(--bg);border:1px solid var(--border);border-radius:var(--radius-sm);color:var(--text);padding:.625rem .875rem;font-size:.875rem;transition:border-color .2s}.field input:focus,.field select:focus,.field textarea:focus{border-color:var(--accent);outline:none}.field input::placeholder,.field textarea::placeholder{color:var(--text-tertiary)}.field select{cursor:pointer;appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2386868b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");background-position:right .75rem center;background-repeat:no-repeat;padding-right:2.25rem}.field select option{background:var(--surface);color:var(--text)}.field textarea{resize:vertical;min-height:80px;font-family:var(--font-mono);font-size:.8125rem;line-height:1.5}.field.checkbox-field label{cursor:pointer;color:var(--text);text-transform:none;align-items:center;gap:.625rem;font-size:.875rem;font-weight:500;display:inline-flex}.field.checkbox-field input[type=checkbox]{display:none}.checkbox-custom{border:1.5px solid var(--border-active);border-radius:5px;flex-shrink:0;justify-content:center;align-items:center;width:18px;height:18px;transition:all .2s;display:flex}.field.checkbox-field input[type=checkbox]:checked+.checkbox-custom{background:var(--accent);border-color:var(--accent)}.field.checkbox-field input[type=checkbox]:checked+.checkbox-custom:after{content:"";border:2px solid #fff;border-top:none;border-left:none;width:5px;height:9px;transform:rotate(45deg)}.command-section{background:var(--surface);border-radius:var(--radius-lg);border:1px solid var(--border);box-shadow:var(--shadow-sm);padding:1.5rem}.command-header{justify-content:space-between;align-items:center;margin-bottom:1rem;display:flex}.command-header h3{font-family:var(--font-text);color:var(--text-secondary);text-transform:uppercase;letter-spacing:.04em;align-items:center;gap:.5rem;font-size:.8125rem;font-weight:600;display:flex}.command-header h3 svg{color:var(--accent)}.copy-btn{font-family:var(--font-text);background:var(--accent);color:#fff;border-radius:var(--radius-sm);cursor:pointer;border:none;align-items:center;gap:.375rem;padding:.5rem 1rem;font-size:.8125rem;font-weight:500;transition:background .2s;display:flex}.copy-btn:hover{background:var(--accent-hover)}.copy-btn:active{transform:scale(.98)}.copy-btn.copied{background:var(--green)}.terminal{border-radius:var(--radius-md);background:#1e1e1e;overflow:hidden}.terminal-header{background:#2d2d2d;justify-content:space-between;align-items:center;padding:.625rem 1rem;display:flex}.terminal-buttons{gap:8px;display:flex}.terminal-btn{cursor:pointer;border:none;border-radius:50%;width:12px;height:12px}.terminal-btn.close{background:#ff5f57}.terminal-btn.minimize{background:#febc2e}.terminal-btn.maximize{background:#28c840}.terminal-title{color:#888;font-family:-apple-system,BlinkMacSystemFont,sans-serif;font-size:.75rem}.terminal-body{background:#1e1e1e;padding:1rem 1.25rem 1.25rem}.command-preview code{font-family:var(--font-mono);color:#e0e0e0;white-space:pre;font-size:.8125rem;line-height:1.7;display:block}.cursor{color:var(--accent);margin-left:2px;animation:1s step-end infinite blink;display:inline-block}@keyframes blink{0%,to{opacity:1}50%{opacity:0}}.usage-section{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius-md);overflow:hidden}.usage-section summary{cursor:pointer;color:var(--text-secondary);align-items:center;gap:.5rem;padding:.875rem 1rem;font-weight:500;list-style:none;transition:color .2s,background .2s;display:flex}.usage-section summary::-webkit-details-marker{display:none}.usage-section summary svg{color:var(--accent)}.usage-section summary:hover,.usage-section details[open] summary{color:var(--text);background:var(--accent-light)}.usage-section p{color:var(--text-secondary);margin:0;padding:0 1rem 1rem;font-size:.875rem;line-height:1.6}.app-footer{text-align:center;padding:3rem 0 0}.app-footer p{color:var(--text-tertiary);font-size:.8125rem}.app-footer a{color:var(--accent);text-decoration:none}.app-footer a:hover{text-decoration:underline}@keyframes fadeIn{0%{opacity:0;transform:translateY(8px)}to{opacity:1;transform:translateY(0)}}.form-section,.command-section,.usage-section{animation:.3s fadeIn}@media (width<=768px){.app-container{padding:1.5rem 1rem 2rem}.app-header{margin-bottom:1.5rem}.logo-icon{width:32px;height:32px}.logo-icon svg{width:18px;height:18px}.app-header h1{font-size:1.25rem}.tab-nav{gap:.375rem;margin-bottom:1.5rem}.tab-btn{padding:.5rem .75rem;font-size:.8125rem}.tab-btn span{display:none}.tab-btn svg{width:18px;height:18px}.form-section{padding:1.25rem}.form-fields{grid-template-columns:1fr}.command-section{padding:1.25rem}.command-preview code{font-size:.75rem}}
