.score-pill {
    position: fixed;
    right: 14px;
    bottom: 14px;
    z-index: 1500;
    padding: 8px 12px;
    border-radius: 999px;
    color: #111;
    background: #fff8da;
    font-weight: 800;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}

.score-pop {
    animation: scorePop 420ms ease-out;
}

@keyframes scorePop {
    0% {
        transform: scale(1);
    }

    45% {
        transform: scale(1.16);
    }

    100% {
        transform: scale(1);
    }
}
