.software-rating-box {
    margin: 20px 0;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.rating-stars {
    font-size: 24px;
    line-height: 1;
}

.rating-stars .star {
    color: #ddd;
    cursor: pointer;
    transition: all 0.2s;
}

.rating-stars .star.active {
    color: #ffb400;
}

.rating-stars .star:hover,
.rating-stars .star:hover ~ .star {
    color: #ffb400 !important;
}

.rating-info {
    display: flex;
    gap: 5px;
    align-items: baseline;
}

.rating-value {
    font-weight: bold;
    font-size: 18px;
    color: #333;
}

.review-count {
    color: #666;
    font-size: 14px;
}