this should fit what you're looking for. I don't know which interests you wanted to replace so I've put them all in. feel free to remove any of them you don't want to change, or just leave them there and don't change what they say. up to you
the list of interests is counted in descending order from 1 to 6. so "general" is 1, "heroes" is 6, etc etc. i've also included comments explaining which is which down where the actual text replacement happens.
.profile .blurbs .section:last-child h4,
table.details-table tbody tr:nth-child(1) td:first-child,
table.details-table tbody tr:nth-child(2) td:first-child,
table.details-table tbody tr:nth-child(3) td:first-child,
table.details-table tbody tr:nth-child(4) td:first-child,
table.details-table tbody tr:nth-child(5) td:first-child,
table.details-table tbody tr:nth-child(6) td:first-child {
visibility: hidden;
line-height: 0;
}
.profile .blurbs .section:last-child h4:after,
table.details-table tbody tr:nth-child(1) td:first-child:after,
table.details-table tbody tr:nth-child(2) td:first-child:after,
table.details-table tbody tr:nth-child(3) td:first-child:after,
table.details-table tbody tr:nth-child(4) td:first-child:after,
table.details-table tbody tr:nth-child(5) td:first-child:after,
table.details-table tbody tr:nth-child(6) td:first-child:after {
visibility: visible;
display: block;
line-height: initial;
}
/* who I'd like to meet */
.profile .blurbs .section:last-child h4:after {
content: "who i'd like to meet:";
}
/* general */
table.details-table tbody tr:nth-child(1) td:first-child:after {
content: "general";
}
/* music */
table.details-table tbody tr:nth-child(2) td:first-child:after {
content: "music";
}
/* movies */
table.details-table tbody tr:nth-child(3) td:first-child:after {
content: "movies";
}
/* TV */
table.details-table tbody tr:nth-child(4) td:first-child:after {
content: "television";
}
/* books */
table.details-table tbody tr:nth-child(5) td:first-child:after {
content: "books";
}
/* heroes */
table.details-table tbody tr:nth-child(6) td:first-child:after {
content: "heroes";
}
hope this helps!