/* Celebrity Radar — опрос. Наследует токены темы, но имеет fallback. */
.cr-poll { --cr-gold: var( --crt-gold, #f0b429 ); --cr-surface: var( --crt-surface-2, #202027 ); color: var( --crt-text, #f4f3f1 ); }
.cr-poll__title { font-weight: 700; font-size: 1rem; margin-bottom: 14px; }
.cr-poll__options { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.cr-poll__btn {
	position: relative; display: flex; align-items: center; justify-content: space-between;
	width: 100%; padding: 11px 14px; border: 1px solid rgba( 255, 255, 255, .12 );
	background: var( --cr-surface ); color: inherit; border-radius: 8px; cursor: pointer;
	font-size: .92rem; overflow: hidden; text-align: left; transition: border-color .2s ease;
}
.cr-poll__btn:hover:not( [disabled] ) { border-color: var( --cr-gold ); }
.cr-poll__btn[disabled] { cursor: default; }
.cr-poll__label, .cr-poll__percent { position: relative; z-index: 2; }
.cr-poll__percent { font-weight: 700; color: var( --cr-gold ); }
.cr-poll__bar {
	position: absolute; inset: 0 auto 0 0; z-index: 1; height: 100%; width: 0;
	background: linear-gradient( 90deg, rgba( 240, 180, 41, .28 ), rgba( 240, 180, 41, .12 ) );
	transition: width .6s cubic-bezier( .2, .8, .2, 1 );
}
.cr-poll__total { margin-top: 12px; font-size: .8rem; color: rgba( 244, 243, 241, .55 ); }
