      
.ps-grad-text {
    background-image: linear-gradient(to right, #ff974f 0, #E91E63 36%, #E91E63 65%, #ff5752 100%);
    font-weight: 600;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ps-pulse-heart {
    color: #E91E63;
    animation: pulse 1s infinite;
    font-size: 1rem;
}

h1 span, h2 span, h3 span, h1 strong, h2 strong, h3 strong {
    color: #864ffe !important;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.5);
    }
    100% {
        transform: scale(1);
    }
}