.post-poll {
    margin: 0 12px 12px;
    padding: 14px;
    background: rgba(251, 191, 36, 0.03);
    border: 1px solid rgba(251, 191, 36, 0.1);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.poll-option {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 11px 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.2s ease;
}

.poll-option:hover:not(:disabled) {
    background: rgba(251, 191, 36, 0.08);
    border-color: rgba(251, 191, 36, 0.3);
    transform: translateX(2px);
}

.poll-option:active:not(:disabled) {
    transform: scale(0.99);
}

.poll-option:disabled {
    cursor: default;
}

.poll-option-text {
    position: relative;
    z-index: 2;
}

.poll-option-percent {
    position: relative;
    z-index: 2;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.post-poll.voted .poll-option-percent {
    opacity: 1;
}

.poll-option-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: rgba(251, 191, 36, 0.12);
    border-radius: 9px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 0;
}

.poll-option.selected {
    border-color: rgba(251, 191, 36, 0.4);
    background: rgba(251, 191, 36, 0.06);
}

.poll-option.selected .poll-option-text {
    color: #fbbf24;
}

.poll-option.selected .poll-option-percent {
    color: #fbbf24;
}

.poll-option.selected .poll-option-bar {
    background: rgba(251, 191, 36, 0.18);
}

.poll-info {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 6px;
    padding: 0 2px;
}

.poll-info .vote-count {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.poll-info .vote-count svg {
    width: 13px;
    height: 13px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.poll-info .time-left {
    color: rgba(251, 191, 36, 0.7);
}

.poll-change-hint {
    color: rgba(96, 165, 250, 0.7);
    font-size: 11px;
}

.poll-ended-badge {
    color: rgba(248, 113, 113, 0.8);
    font-size: 11px;
    font-weight: 600;
}
