#captcha-canvas { border:2px solid #0066cc; border-radius:8px; touch-action:none; display:block; margin:15px 0; background:#f8cb9f9; }
#slide-captcha { text-align:center; margin:20px 0; }
/* Hide content until unlocked */
.content-locked {
    filter: blur(12px);
    pointer-events: none;
    user-select: none;
}
.content-locked::after {
    content: "Complete the puzzle to unlock this article";
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 20px 40px;
    border-radius: 12px;
    font-size: 1.4em;
    z-index: 999;
}

#captcha-canvas,
#slide-captcha {
    touch-action: none !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    cursor: pointer;
}

/* === COMMENTS LOCK - REPLACE ALL COMMENTS CSS WITH THIS === */

/* HIDE comments list + title until unlocked */
body:not(.captcha-unlocked) .comment-list,
body:not(.captcha-unlocked) .comments-title {
    display: none !important;
}

/* Shrink comment textarea to 1 line */
body:not(.captcha-unlocked) .comment-form-comment textarea {
    height: 2em !important;
    resize: none !important;
    overflow: hidden !important;
	pointer-events: none !important;
	border-style:dashed !important;
}

/* Disable ALL form inputs except slider */
body:not(.captcha-unlocked) #respond input:not([type=hidden]),
body:not(.captcha-unlocked) #respond textarea:not(#comment),
body:not(.captcha-unlocked) #respond input[type=submit] {
    pointer-events: none !important;
    opacity: 0.3 !important;
}

/* === RESTORE WHEN UNLOCKED === */
body.captcha-unlocked .comment-list,
body.captcha-unlocked .comments-title {
    display: block !important;
}

body.captcha-unlocked .comment-form-comment textarea {
    height: 120px !important;
    resize: vertical !important;
	border-style:default !important;
}

body.captcha-unlocked #respond input,
body.captcha-unlocked #respond textarea,
body.captcha-unlocked #respond input[type=submit] {
    pointer-events: auto !important;
    opacity: 1 !important;
}