body { background: #0c0c0f; color: #f1f1f4; font-family: 'Inter', -apple-system, system-ui, sans-serif; margin: 0; min-height: 100vh; display: flex; align-items: center; justify-content: center; }
.wizard { max-width: 560px; width: 100%; margin: 40px 20px; }
.wizard-card { background: #12111a; border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 40px; }
.wizard-logo { text-align: center; margin-bottom: 24px; }
.wizard-logo svg { width: 48px; height: 48px; }
.wizard-steps { display: flex; justify-content: center; gap: 8px; margin-bottom: 32px; }
.wizard-steps .dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.1); transition: all 0.3s; }
.wizard-steps .dot.active { background: #7c3aed; width: 28px; border-radius: 5px; }
.wizard-steps .dot.done { background: #22c55e; }
h1 { font-size: 24px; text-align: center; margin: 0 0 8px; font-weight: 700; }
.subtitle { text-align: center; color: #9ca3af; font-size: 14px; margin-bottom: 28px; }
label { display: block; font-size: 13px; font-weight: 600; color: #c4c4cc; margin-bottom: 6px; }
input[type="text"], input[type="url"] { width: 100%; padding: 12px 14px; background: #0c0c0f; border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; color: #f1f1f4; font-size: 14px; margin-bottom: 16px; box-sizing: border-box; }
input:focus { border-color: #7c3aed; outline: none; box-shadow: 0 0 0 3px rgba(124,58,237,0.15); }
.btn-row { display: flex; justify-content: space-between; align-items: center; margin-top: 24px; gap: 12px; }
.btn { padding: 12px 24px; border-radius: 10px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: all 0.2s; }
.btn-primary { background: linear-gradient(135deg, #7c3aed, #f472b6); color: #fff; }
.btn-primary:hover { filter: brightness(1.1); }
.btn-secondary { background: rgba(255,255,255,0.06); color: #c4c4cc; border: 1px solid rgba(255,255,255,0.08); }
.btn-secondary:hover { background: rgba(255,255,255,0.1); }
.btn-skip { background: none; border: none; color: #9ca3af; font-size: 13px; cursor: pointer; padding: 8px; }
.btn-skip:hover { color: #f1f1f4; }
.step { display: none; } .step.active { display: block; }
.toggle-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; margin-bottom: 12px; }
.toggle-row label { margin: 0; }
.toggle-row .desc { font-size: 12px; color: #9ca3af; margin-top: 2px; font-weight: 400; }
.toggle { position: relative; width: 44px; height: 24px; flex-shrink: 0; }
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle .slider { position: absolute; inset: 0; background: rgba(255,255,255,0.1); border-radius: 12px; cursor: pointer; transition: 0.3s; }
.toggle .slider::before { content: ''; position: absolute; width: 18px; height: 18px; left: 3px; top: 3px; background: #fff; border-radius: 50%; transition: 0.3s; }
.toggle input:checked + .slider { background: #7c3aed; }
.toggle input:checked + .slider::before { transform: translateX(20px); }
.progress { height: 4px; background: rgba(255,255,255,0.08); border-radius: 2px; margin: 16px 0; overflow: hidden; display: none; }
.progress .bar { height: 100%; background: linear-gradient(90deg, #7c3aed, #f472b6); border-radius: 2px; width: 0; transition: width 1.5s ease; }
.status-msg { text-align: center; font-size: 13px; color: #9ca3af; margin-top: 8px; min-height: 20px; }
.success-icon { font-size: 48px; text-align: center; margin-bottom: 16px; }
.links-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 20px; }
.link-card { display: block; padding: 14px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; text-decoration: none; color: #c4c4cc; font-size: 13px; font-weight: 500; transition: all 0.2s; text-align: center; }
.link-card:hover { background: rgba(255,255,255,0.06); color: #f1f1f4; border-color: rgba(124,58,237,0.3); }
.link-card .icon { font-size: 20px; display: block; margin-bottom: 6px; }
