#floating-profile-bar {
    position: fixed;
    bottom: 45px;
    right: 20px;
    background: #0056b3;
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    font-family: Arial, sans-serif;
    font-size: 16px;
    animation: slideIn 1s ease-out;
}

.download-link {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

#profile-text {
    display: inline-block;
    animation: fadeWords 4s infinite;
}

@keyframes fadeWords {
    0%,
    100% {
        opacity: 0;
    }
    25%,
    75% {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 600px) {
    #floating-profile-bar {
        font-size: 14px;
        padding: 10px 16px;
    }
}