:root { --primary: #7c3aed; --primary-dark: #5b21b6; --bg: #0f0f23; --card: rgba(255,255,255,0.05); --text: #e2e8f0; --text-muted: #94a3b8; --green: #22c55e; --border: rgba(255,255,255,0.1); }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }
    .container { max-width: 800px; margin: 0 auto; padding: 2rem 1.5rem; }
    h1 { font-size: 2rem; margin-bottom: 0.5rem; }
    h1 span { color: var(--primary); }
    .subtitle { color: var(--text-muted); margin-bottom: 2rem; font-size: 1.1rem; }
    .cta-bar { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border-radius: 12px; padding: 1.5rem; margin-bottom: 2rem; text-align: center; }
    .cta-bar p { font-size: 1.1rem; margin-bottom: 0.75rem; }
    .cta-btn { display: inline-block; background: #fff; color: var(--primary-dark); padding: 0.75rem 2rem; border-radius: 8px; text-decoration: none; font-weight: 700; font-size: 1rem; transition: transform 0.2s; }
    .cta-btn:hover { transform: translateY(-2px); }
    .code-card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 1.25rem; margin-bottom: 1rem; display: flex; justify-content: space-between; align-items: center; }
    .code-info h3 { font-size: 1rem; margin-bottom: 0.25rem; }
    .code-info .meta { color: var(--text-muted); font-size: 0.85rem; }
    .badge { display: inline-block; padding: 0.2rem 0.6rem; border-radius: 6px; font-size: 0.75rem; font-weight: 600; }
    .badge-verified { background: rgba(34,197,94,0.15); color: var(--green); }
    .badge-popular { background: rgba(124,58,237,0.15); color: var(--primary); }
    .code-box { background: rgba(124,58,237,0.1); border: 1px dashed var(--primary); border-radius: 8px; padding: 0.5rem 1rem; font-family: monospace; font-size: 1.1rem; color: var(--primary); white-space: nowrap; }
    .how-it-works { margin-top: 3rem; }
    .how-it-works h2 { font-size: 1.4rem; margin-bottom: 1rem; }
    .steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
    .step { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 1.25rem; text-align: center; }
    .step .num { font-size: 2rem; margin-bottom: 0.5rem; }
    .step h3 { font-size: 0.95rem; margin-bottom: 0.25rem; }
    .step p { color: var(--text-muted); font-size: 0.85rem; }
    .faq { margin-top: 3rem; }
    .faq h2 { font-size: 1.4rem; margin-bottom: 1rem; }
    .faq-item { margin-bottom: 1.5rem; }
    .faq-item h3 { font-size: 1rem; margin-bottom: 0.25rem; }
    .faq-item p { color: var(--text-muted); font-size: 0.9rem; }
    footer { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--border); text-align: center; color: var(--text-muted); font-size: 0.85rem; }
    footer a { color: var(--primary); text-decoration: none; }
    @media (max-width: 600px) { h1 { font-size: 1.5rem; } .code-card { flex-direction: column; gap: 0.75rem; align-items: flex-start; } }