/* Premium Text Link Style */
.text-link {
    background: linear-gradient(135deg, #A78BFA 0%, #3B82F6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: underline;
    text-decoration-color: rgba(59, 130, 246, 0.4);
    text-underline-offset: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    /* Helps with transform */
}

.text-link:hover {
    text-decoration-color: #A78BFA;
    text-shadow: 0 0 15px rgba(167, 139, 250, 0.3);
    transform: translateY(-1px);
}