/* slider-captcha.css */
.sc-modal { position:fixed; inset:0; background:rgba(0,0,0,.35); display:flex; align-items:center; justify-content:center; z-index:10000; }
.sc-dialog { width:min(420px, 92vw); background:#fff; border-radius:14px; box-shadow:0 10px 30px rgba(0,0,0,.15); overflow:hidden; font-family:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial; }
.sc-header { display:flex; align-items:center; justify-content:space-between; padding:12px 14px; border-bottom:1px solid #f0f0f0; }
.sc-title { font-weight:600; color:#111; }
.sc-close { border:none; background:transparent; font-size:20px; line-height:1; cursor:pointer; color:#888; }
.sc-body { padding:16px; }
.sc-instruction { font-size:14px; color:#444; margin-bottom:10px; }
.sc-track { position:relative; height:44px; background:#f3f4f6; border-radius:10px; border:1px solid #e5e7eb; overflow:hidden; }
.sc-fill { position:absolute; left:0; top:0; bottom:0; width:0; background:#d1fae5; transition:width .12s linear; }
.sc-handle { position:absolute; top:2px; left:2px; width:40px; height:40px; background:#fff; border:1px solid #e5e7eb; border-radius:8px; display:flex; align-items:center; justify-content:center; cursor:grab; user-select:none; font-size:16px; }
.sc-handle:active { cursor:grabbing; }
.sc-check { position:absolute; inset:0; display:none; align-items:center; justify-content:center; font-weight:600; color:#059669; }
.sc-actions { display:flex; gap:8px; justify-content:flex-end; margin-top:12px; }
.sc-btn { padding:8px 12px; border-radius:8px; border:1px solid #e5e7eb; background:#111; color:#fff; cursor:pointer; }
.sc-btn.ghost { background:#fff; color:#111; }
