.pkp_site_name a {
    display: inline-block;
    font-weight: 700;
    color: #ff6b00 !important;
    animation: floatText 3s ease-in-out infinite;
    text-shadow:
        0 0 5px rgba(255,107,0,.4),
        0 0 15px rgba(255,107,0,.3);
}

@keyframes floatText {
    0%,100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}