.top-prediction-star {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.15em;
    height: 1.15em;
    margin-right: .28rem;
    color: #ffd84d;
    font-size: 1.05em;
    line-height: 1;
    vertical-align: -0.04em;
    text-shadow: 0 0 5px rgba(255, 216, 77, .72), 0 0 11px rgba(255, 190, 38, .38);
    animation: top-prediction-star-blink 1.15s ease-in-out infinite alternate;
}

.top-prediction-star::before {
    content: "★";
}

.top-prediction-star[data-top-pick-rank="1"] {
    font-size: 1.14em;
}

@keyframes top-prediction-star-blink {
    from {
        opacity: .48;
        transform: scale(.9);
        filter: brightness(.9);
    }
    to {
        opacity: 1;
        transform: scale(1.08);
        filter: brightness(1.28);
    }
}

@media (prefers-reduced-motion: reduce) {
    .top-prediction-star {
        animation: none;
        opacity: 1;
        transform: none;
    }
}
