.poor-captcha-wrapper-fc13b374 {
    width: 320px;
    background: #fff;
    border: 1px solid #d3d3d3;
    border-radius: 3px;
    padding: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    font-family: sans-serif;
    margin: 0 auto;
}
.poor-captcha-header {
    background: #1a73e8;
    color: #fff;
    padding: 20px 15px;
    margin: -10px -10px 10px -10px;
}
.poor-captcha-instruction {
    font-size: 16px;
    font-weight: bold;
}
.poor-captcha-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 5px;
    margin-bottom: 15px;
    background-size: cover;
    background-position: center;
    aspect-ratio: 1;
}
.poor-captcha-cell {
    background-image: inherit;
    background-size: 300% 300%;
    aspect-ratio: 1;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.8);
}
.poor-captcha-cell:hover {
    filter: brightness(0.9);
}
.poor-captcha-cell.selected {
    transform: scale(0.92);
    box-shadow: inset 0 0 0 3px #1a73e8;
}
.poor-captcha-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e0e0e0;
    padding-top: 10px;
}
.poor-captcha-verify {
    background: #1a73e8;
    color: #fff;
    border: none;
    padding: 10px 24px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.2s;
}
.poor-captcha-verify:hover {
    background: #1557b0;
}
.poor-captcha-error {
    color: #d93025;
    font-size: 13px;
    font-weight: bold;
}