.user-profile-modern-card {
    background: linear-gradient(135deg, #fafdff 60%, #f1f6fa 100%);
    box-shadow: 0 2px 10px rgba(13,110,253,0.07);
    border-radius: 18px;
    border: 1px solid #e3e6ee;
    margin-bottom: 2.5rem;
    overflow: hidden;
    padding: 0;
    position: relative;
    color: #212529;
}
.user-profile-modern-card .profile-header {
    background: linear-gradient(90deg, #0d6efd 60%, #6ea8fe 100%);
    color: #fff;
    padding: 1.2rem 2rem 1rem 2rem;
    border-radius: 18px 18px 0 0;
    text-align: center;
    position: relative;
    z-index: 2;
}
.user-profile-modern-card .profile-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 1;
    border-radius: 18px;
}
.user-profile-modern-card .profile-body {
    padding: 2.2rem 2.2rem 2rem 2.2rem;
    position: relative;
    z-index: 2;
}
.user-profile-modern-card .profile-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #b6d4fe;
    margin-bottom: 1rem;
    background: #e9f0fa;
}
.user-profile-modern-card .profile-placeholder {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: #e9f0fa;
    color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.2rem;
    margin-bottom: 1rem;
    border: 3px solid #b6d4fe;
}
.user-profile-modern-card .profile-label {
    font-weight: 500;
    color: #0d6efd;
}
.user-profile-modern-card .profile-value {
    font-weight: 500;
    color: #495057;
}
.user-profile-modern-card .badge {
    font-size: 0.95rem;
    margin-left: 0.5rem;
}
.achievements-preview {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.achievement-item {
    transition: transform 0.2s ease;
    cursor: pointer;
}
.achievement-item:hover {
    transform: scale(1.2);
}
.progress {
    background-color: #e9ecef;
    border-radius: 4px;
}
.progress-bar {
    transition: width 0.6s ease;
} 