.chat-poll-card {
    background: var(--card2); border: 1.5px solid var(--border);
    border-radius: 16px; padding: 14px 16px; margin: 6px 0;
    max-width: 340px;
}
.cp-question { font-size: 14px; font-weight: 700; margin-bottom: 12px; }
.cp-option { margin-bottom: 8px; cursor: pointer; }
.cp-opt-bar-wrap {
    background: var(--bg); border-radius: 10px; height: 34px;
    border: 1.5px solid var(--border); overflow: hidden;
    position: relative; display: flex; align-items: center;
}
.cp-opt-bar { position: absolute; top:0; right:0; height:100%; border-radius: 10px;
    background: linear-gradient(90deg, var(--blue), #60a5fa); opacity: .25;
    transition: width .5s ease;
}
.cp-opt-label { position: relative; z-index:1; padding: 0 12px; font-size: 13px; flex:1; }
.cp-opt-pct   { position: relative; z-index:1; padding: 0 10px; font-size: 12px; color: var(--muted); font-weight:700; }
.cp-opt-voted .cp-opt-bar { opacity: .45; background: linear-gradient(90deg,#059669,#34d399); }
.cp-footer { display:flex; justify-content:space-between; font-size:11px; color:var(--muted); margin-top:10px; }
.cp-timer { color: var(--blue); font-weight:700; }
